Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit ff1ee47

Browse files
committed
Updated method checking vertex is final in InMemGraphInput
1 parent 4fba249 commit ff1ee47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/iguana/utils/input/InMemGraphInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public List<Integer> getFinalVertices() {
2929

3030
@Override
3131
public boolean isFinal(int v) {
32-
return finalVertices.contains(v);
32+
return true;
3333
}
3434

3535
@Override

0 commit comments

Comments
 (0)