Skip to content
Snippets Groups Projects
Commit a4cccd2a authored by Mikaël Mayer's avatar Mikaël Mayer
Browse files

Fixed a silly error. This commit should be squashed with the previous...

Fixed a silly error. This commit should be squashed with the previous introducing mistake if possible.
parent 798317b0
No related branches found
No related tags found
No related merge requests found
......@@ -548,7 +548,7 @@ trait AbstractZ3Solver extends Solver {
protected[leon] def fromZ3Formula(model: Z3Model, tree: Z3AST, tpe: TypeTree): Expr = {
def rec(t: Z3AST, tpe: TypeTree): Expr = {
val kind = z3.getASTKind(t))
val kind = z3.getASTKind(t)
kind match {
case Z3NumeralIntAST(Some(v)) => {
val leading = t.toString.substring(0, 2 min t.toString.length)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment