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

improve output of disprover

parent 69dbb1a2
No related branches found
No related tags found
No related merge requests found
...@@ -119,17 +119,17 @@ public class DisproverReasoner implements IReasoner { ...@@ -119,17 +119,17 @@ public class DisproverReasoner implements IReasoner {
if (counterExample.timeoutOccured()) if (counterExample.timeoutOccured())
return ProverFactory.reasonerFailure(this, input, return ProverFactory.reasonerFailure(this, input,
"Timeout occurred (ProB)"); "ProB: Timeout occurred.");
if (!counterExample.counterExampleFound() && counterExample.isProof()) if (!counterExample.counterExampleFound() && counterExample.isProof())
return ProverFactory.makeProofRule(this, input, sequent.goal(), return ProverFactory.makeProofRule(this, input, sequent.goal(),
null, IConfidence.DISCHARGED_MAX, null, IConfidence.DISCHARGED_MAX,
"ProB (all cases checked)"); "ProB (no enumeration / all cases checked)");
if (!counterExample.counterExampleFound()) if (!counterExample.counterExampleFound())
return ProverFactory return ProverFactory
.reasonerFailure(this, input, .reasonerFailure(this, input,
"No Counter-Example found (ProB), but there might exist one"); "ProB: No Counter-Example found, but there might exist one.");
return ProverFactory.makeProofRule(this, input, null, null, return ProverFactory.makeProofRule(this, input, null, null,
IConfidence.PENDING, IConfidence.PENDING,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment