Returns the list of unconnected subgraphs.
(self)
| 513 | return self.density < 0.35 |
| 514 | |
| 515 | def split(self): |
| 516 | """ Returns the list of unconnected subgraphs. |
| 517 | """ |
| 518 | return partition(self) |
| 519 | |
| 520 | def update(self, iterations=10, **kwargs): |
| 521 | """ Graph.layout.update() is called the given number of iterations. |