Skip to content
Snippets Groups Projects
Commit daf7431b authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Include the precondition of the outer function in the path to chooses

parent f48ff213
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,9 @@ object ChooseInfo {
// Look for choose()
for (f <- prog.definedFunctions.sortBy(_.id.toString) if f.body.isDefined) {
for ((ch, path) <- new ChooseCollectorWithPaths().traverse(f.body.get)) {
val actualBody = And(f.precondition.getOrElse(BooleanLiteral(true)), f.body.get)
for ((ch, path) <- new ChooseCollectorWithPaths().traverse(actualBody)) {
results = ChooseInfo(ctx, prog, f, path, ch, options) :: results
}
}
......
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