Skip to content

Commit

Permalink
TermPrinter: test for correct let var naming
Browse files Browse the repository at this point in the history
  • Loading branch information
aehyvari committed Mar 31, 2022
1 parent 98684b9 commit 06ce55c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/test_TermPrinter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class TermPrinterTest : public ::testing::Test {

PTRef buildExampleFormula1() {
SRef sort = logic.declareUninterpretedSort("U");
PTRef x = logic.mkVar(sort, "x");
PTRef y = logic.mkVar(sort, "y");
PTRef x = logic.mkVar(sort, "?20");
PTRef y = logic.mkVar(sort, "????");
SymRef g_s = logic.declareFun("g", sort, {sort, sort});
SymRef h_s = logic.declareFun("h", sort, {sort});
SymRef f_s = logic.declareFun("f", sort, {sort, sort, sort});
Expand Down

0 comments on commit 06ce55c

Please sign in to comment.