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

Correction in forwardMap

parent dcb542c4
Branches
Tags
No related merge requests found
......@@ -146,7 +146,7 @@ trait RuleDSL {
def forwardMap(f : Expr => Expr) : List[Solution] => Option[Solution] = {
_.headOption map { s =>
Solution(f(s.pre), s.defs, f(s.term))
Solution(f(s.pre), s.defs, f(s.term), s.isTrusted)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment