summaryrefslogtreecommitdiff
path: root/test/unit/theory
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/theory')
-rw-r--r--test/unit/theory/theory_black.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/theory/theory_black.h b/test/unit/theory/theory_black.h
index c6da48291..905294c27 100644
--- a/test/unit/theory/theory_black.h
+++ b/test/unit/theory/theory_black.h
@@ -214,8 +214,8 @@ public:
Type* typeX = d_nm->booleanType();
Type* typeF = d_nm->mkFunctionType(typeX, typeX);
- Node x = d_nm->mkVar(typeX, "x");
- Node f = d_nm->mkVar(typeF, "f");
+ Node x = d_nm->mkVar("x",typeX);
+ Node f = d_nm->mkVar("f",typeF);
Node f_x = d_nm->mkNode(kind::APPLY_UF, f, x);
Node f_f_x = d_nm->mkNode(kind::APPLY_UF, f, f_x);
Node f_x_eq_x = f_x.eqNode(x);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback