Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class TopKantePath extends AbstractDirectedEdgePath<TOP_Kante, TOP_Knoten, Punkt
this(bereich.topKanten, start, end)
// test if all edges are consumed
val mySet = edgeIterator.map[element].toSet

if (!bereich.topKanten.equals(mySet)) {
throw new IllegalArgumentException('''sort top edges failed, bereich=«bereich.debugString»''')
}
Expand Down Expand Up @@ -176,7 +176,7 @@ class TopKantePath extends AbstractDirectedEdgePath<TOP_Kante, TOP_Knoten, Punkt
) {
// Is the point directly located on a TOP_Kante?
for (topKante : topKanten) {
if (connection.IDTOPKante === topKante) {
if (connection.IDTOPKante.value === topKante) {
return topKante
}
}
Expand Down
Loading