Skip to content
Snippets Groups Projects
Commit 0585315b authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Cant reset

parent 20301b48
No related branches found
No related tags found
No related merge requests found
/* Copyright 2009-2016 EPFL, Lausanne */ /* Copyright 2009-2016 EPFL, Lausanne */
package leon.solvers package inox.solvers
class CantResetException(s: Solver) extends Exception(s"Unable to reset solver $s") class CantResetException(s: Solver) extends Exception(s"Unable to reset solver $s")
...@@ -46,7 +46,7 @@ trait SMTLIBSolver extends Solver with SMTLIBTarget { ...@@ -46,7 +46,7 @@ trait SMTLIBSolver extends Solver with SMTLIBTarget {
emit(Reset(), rawOut = true) match { emit(Reset(), rawOut = true) match {
case ErrorResponse(msg) => case ErrorResponse(msg) =>
reporter.warning(s"Failed to reset $name: $msg") reporter.warning(s"Failed to reset $name: $msg")
throw new Exception() //CantResetException(this) FIXME throw new CantResetException(this)
case _ => case _ =>
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment