Skip to content
Snippets Groups Projects
Commit c63c1ecb authored by Emmanouil (Manos) Koukoutos's avatar Emmanouil (Manos) Koukoutos Committed by Etienne Kneuss
Browse files

Don't exit synthesis on wrong index

parent 976756c2
No related branches found
No related tags found
No related merge requests found
...@@ -274,9 +274,9 @@ class ManualSearch(ctx: LeonContext, problem: Problem, costModel: CostModel) ext ...@@ -274,9 +274,9 @@ class ManualSearch(ctx: LeonContext, problem: Problem, costModel: CostModel) ext
currentPath = currentPath.tail currentPath = currentPath.tail
case None => case None =>
error("Unknown path: "+path) warning("Unknown path: "+ (path mkString "/"))
res = Some(None) //res = Some(None)
return None return findNodeToExpandFrom(from)
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment