Skip to content

Commit 3d7a0e8

Browse files
committed
bugfix
1 parent 73dd92e commit 3d7a0e8

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

org-tweetyproject-arg-dung/src/main/java/org/tweetyproject/arg/dung/equivalence/NormalDeletionEquivalence.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ public static boolean isNormalDeletionEquivalent(DungTheory theory1, DungTheory
103103
DungTheory th2 = theory2.clone();
104104
th2.removeAll(subset);
105105
if (!reasoner.getModels(th1).equals(reasoner.getModels(th2))) {
106-
//System.out.println(subset);
107-
//System.out.println(th1);
108-
//System.out.println(th2);
109106
return false;
110107
}
111108
}

org-tweetyproject-arg-dung/src/main/java/org/tweetyproject/arg/dung/equivalence/WeakExpansionEquivalence.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ public boolean isEquivalent(DungTheory theory1, DungTheory theory2) {
7878
if (!new HashSet<>(theory1).equals(new HashSet<>(theory2))) return false;
7979
return exts1.equals(exts2);
8080
}
81-
default -> {
82-
throw new IllegalArgumentException("Unsupported Semantics");
83-
}
81+
default -> throw new IllegalArgumentException("Unsupported Semantics");
8482
}
8583
}
8684

org-tweetyproject-arg-dung/src/main/java/org/tweetyproject/arg/dung/writer/TikzWriter.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import org.tweetyproject.arg.dung.syntax.Argument;
2323
import org.tweetyproject.arg.dung.syntax.Attack;
2424
import org.tweetyproject.arg.dung.syntax.DungTheory;
25-
import org.tweetyproject.commons.util.SetTools;
2625

2726
import java.io.File;
2827
import java.io.IOException;

0 commit comments

Comments
 (0)