Skip to content
Snippets Groups Projects
Commit 72aaba51 authored by Sebastian Krings's avatar Sebastian Krings
Browse files

use toStringFullyParenthesized in disprover output of hypotheses and goal

parent d6c7324a
Branches
Tags
No related merge requests found
......@@ -74,7 +74,7 @@ public class DisproverReasoner implements IReasoner {
StringBuilder hypothesesString = new StringBuilder();
for (Predicate predicate : sequent.hypIterable()) {
hypotheses.add(predicate);
hypothesesString.append(predicate.toString());
hypothesesString.append(predicate.toStringFullyParenthesized());
hypothesesString.append(" & ");
}
hypothesesString.delete(hypothesesString.length() - 2,
......@@ -84,7 +84,7 @@ public class DisproverReasoner implements IReasoner {
Predicate goal = sequent.goal();
Logger.info("Disprover: Sending Goal: "
+ UnicodeTranslator.toAscii(goal.toString()));
+ UnicodeTranslator.toAscii(goal.toStringFullyParenthesized()));
IEventBRoot root = getRoot(sequent);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment