We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3164833 commit 8efdb67Copy full SHA for 8efdb67
1 file changed
algorithms/active/nlstar/src/main/java/de/learnlib/algorithms/nlstar/Row.java
@@ -129,7 +129,9 @@ public List<Row<I>> getCoveredRows() {
129
}
130
131
boolean checkPrime() {
132
- if (coveredRows.isEmpty()) {
+ if (contents.isEmpty()) {
133
+ prime = false;
134
+ } else if (coveredRows.isEmpty()) {
135
prime = true;
136
} else {
137
BitSet aggContents = new BitSet();
0 commit comments