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

if a timeout occurs, no counterexample is found

parent 2c9428a1
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ public class DisproverCommand implements IComposableCommand { ...@@ -118,7 +118,7 @@ public class DisproverCommand implements IComposableCommand {
counterExample = null; counterExample = null;
if ("time_out".equals(term.getFunctor())) { if ("time_out".equals(term.getFunctor())) {
counterExample = new CounterExample(true, true); counterExample = new CounterExample(false, true);
} }
if ("interrupted".equals(term.getFunctor())) { if ("interrupted".equals(term.getFunctor())) {
throw new CommandException("Interrupted"); throw new CommandException("Interrupted");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment