Skip to content

Commit

Permalink
Added specification import feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Heerkog committed Mar 7, 2017
1 parent 0b72c7d commit 1305abd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<project name="VxBPM" basedir=".">
<property name="version">1.1.0</property>
<property name="version">0.2.0</property>
<property name="dir.src">src</property>
<property name="dir.build">out</property>
<property name="dir.build.production">${dir.build}/production/VxBPM</property>
Expand Down
4 changes: 2 additions & 2 deletions src/nl/rug/ds/bpm/verification/models/kripke/Kripke.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public Kripke() {
states = new TreeSet<State>(new StateComparator());
initial = new TreeSet<State>(new StateComparator());

propositionOptimized = new TreeSet<>();
propositionOptimized = new TreeSet<>(new StringComparator());
stutterOptimizedStates = new ArrayList<>();
}

Expand Down Expand Up @@ -156,4 +156,4 @@ public String toString(boolean fullOutput) {

return ret;
}
}
}

0 comments on commit 1305abd

Please sign in to comment.