patch general case
This commit is contained in:
parent
542c4c1412
commit
1eb0cc8e52
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ impl<'ast, T: Field> Folder<'ast, T> for Propagator<'ast, T> {
|
|||
let e = self.fold_boolean_expression(e);
|
||||
match e {
|
||||
BooleanExpression::Value(v) => BooleanExpression::Value(!v),
|
||||
e => e,
|
||||
e => BooleanExpression::Not(box e),
|
||||
}
|
||||
}
|
||||
BooleanExpression::IfElse(box condition, box consequence, box alternative) => {
|
||||
|
|
Loading…
Reference in a new issue