(concept, depth=2)
| 53 | return self._properties |
| 54 | |
| 55 | def halo(concept, depth=2): |
| 56 | return concept.flatten(depth=depth) |
| 57 | |
| 58 | def properties(concept, depth=2, centrality=BETWEENNESS): |
| 59 | g = concept.graph.copy(nodes=halo(concept, depth)) |
no test coverage detected
searching dependent graphs…