summaryrefslogtreecommitdiff
path: root/src/parser/cvc/cvc_parser.g
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/cvc/cvc_parser.g')
-rw-r--r--src/parser/cvc/cvc_parser.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/cvc/cvc_parser.g b/src/parser/cvc/cvc_parser.g
index 7f4ce3c26..794f4706a 100644
--- a/src/parser/cvc/cvc_parser.g
+++ b/src/parser/cvc/cvc_parser.g
@@ -237,7 +237,7 @@ impliesFormula returns [CVC4::Expr f]
}
: f = orFormula
( IMPLIES e = impliesFormula
- { f = mkExpr(CVC4::IFF, f, e); }
+ { f = mkExpr(CVC4::IMPLIES, f, e); }
)?
;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback