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

return a reasoner failure instead of modifying the proof tree if a timeout occurs

parent ca368746
No related branches found
No related tags found
No related merge requests found
...@@ -115,11 +115,8 @@ public class DisproverReasoner implements IReasoner { ...@@ -115,11 +115,8 @@ public class DisproverReasoner implements IReasoner {
IAntecedent ante = ProverFactory.makeAntecedent(goal); IAntecedent ante = ProverFactory.makeAntecedent(goal);
if (counterExample.timeoutOccured()) { if (counterExample.timeoutOccured()) {
return ProverFactory return ProverFactory.reasonerFailure(this, input,
.makeProofRule(this, input, null, null, "Timeout occurred (ProB)");
IConfidence.DISCHARGED_MAX,
"Timeout occurred (ProB)", ante);
} }
if (!counterExample.counterExampleFound() && counterExample.isProof()) if (!counterExample.counterExampleFound() && counterExample.isProof())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment