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 {
IAntecedent ante = ProverFactory.makeAntecedent(goal);
if (counterExample.timeoutOccured()) {
return ProverFactory
.makeProofRule(this, input, null, null,
IConfidence.DISCHARGED_MAX,
"Timeout occurred (ProB)", ante);
return ProverFactory.reasonerFailure(this, input,
"Timeout occurred (ProB)");
}
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