| 1 | <?php |
||
| 17 | trait LoopTrait |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Gets the edges set. |
||
| 21 | * |
||
| 22 | * @return Set |
||
| 23 | */ |
||
| 24 | abstract public function getEdgeSet(): Set; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Checks if the graph has an edge that is a loop. |
||
| 28 | * |
||
| 29 | * @return bool |
||
| 30 | */ |
||
| 31 | public function hasLoop(): bool |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Checks if the graph has an edge that is a loop and with a vertex $vertex. |
||
| 44 | * |
||
| 45 | * @param VertexInterface $vertex |
||
| 46 | * |
||
| 47 | * @return bool |
||
| 48 | */ |
||
| 49 | public function hasLoopOn(VertexInterface $vertex): bool |
||
| 62 | } |
||
| 63 |