Skip to content

Commit 6eb0496

Browse files
committed
Update CHANGELOG.md
1 parent 4d413c7 commit 6eb0496

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ you spot any mistakes.
1717
|---|---|
1818
| `Edge\Base::getFirst()` | `Set\Edges::getEdgeOrder()` |
1919
| `Edge\Base::getAll()` | `Set\Edges::getEdgesOrder()` |
20-
| `Edge\Base::ORDER_*` | `Set\Edges::ORDER_* |
20+
| `Edge\Base::ORDER_*` | `Set\Edges::ORDER_*` |
2121
|---|---|
2222
| `Vertex::getFirst()` | `Set\Vertices::getVertexOrder()` |
2323
| `Vertex::getAll()` | `Set\Vertices::getVerticesOrder()` |
@@ -53,9 +53,9 @@ you spot any mistakes.
5353
* BC break: Remove `Graph::isEmpty()` because it's not well-defined and might
5454
be confusing. Most literature suggests it should check for existing edges,
5555
whereas the old behavior was to check for existing vertices instead. Use either
56-
of the more transparent methods
56+
of the new and more transparent methods
5757
`Algorithm\Property\GraphProperty::isNull()` (old behavior) or (where applicable)
58-
`Algorithm\Property\GraphProperty::isEmpty()` ([#59](https://github.com/clue/graph/issues/59)).
58+
`Algorithm\Property\GraphProperty::isEdgeless()` ([#63](https://github.com/clue/graph/issues/63)).
5959

6060
* BC break: Each of the above methods (`Walk::factoryCycleFromPredecessorMap()`,
6161
`Walk::factoryCycleFromVertices()`, `Walk::factoryCycleFromEdges()`) now
@@ -75,7 +75,7 @@ you spot any mistakes.
7575
accordingly.
7676
([#72](https://github.com/clue/graph/issues/72))
7777

78-
* Feature: Add `Algorithm\ShortestPath::hasVertex(Vertex $vertex)` to check whether
78+
* Feature: Add `Algorithm\ShortestPath\Base::hasVertex(Vertex $vertex)` to check whether
7979
a path to the given Vertex exists ([#62](https://github.com/clue/graph/issues/62)).
8080

8181
* Feature: Support opening GraphViz images on Mac OS X in default image viewer
@@ -89,7 +89,7 @@ you spot any mistakes.
8989

9090
* Fix: Missing import prevented
9191
`Algorithm\ShortestPath\MooreBellmanFord::getCycleNegative()` from actually
92-
throwing the right `UnderflowException` if no cycle was actually found
92+
throwing the right `UnderflowException` if no cycle was found
9393
([#62](https://github.com/clue/graph/issues/62))
9494

9595
* Fix: Calling `Exporter\Image::setFormat()` had no effect due to misassignment

0 commit comments

Comments
 (0)