Skip to content

Commit

Permalink
Change TS test to exhibit bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoKobalamyne committed Sep 10, 2024
1 parent 4988708 commit 8e4c477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ TEST_P(TSUnitTests, FTS_IsFunc)
EXPECT_FALSE(fts.is_deterministic());
EXPECT_EQ(fts.statevars_with_no_update().size(), 0);

Term z = fts.make_statevar("z", bvsort);
EXPECT_EQ(fts.statevars_with_no_update(), UnorderedTermSet({z}));
Term ynext = fts.make_statevar("y.next", bvsort);
EXPECT_EQ(fts.statevars_with_no_update(), UnorderedTermSet({ynext}));

TransitionSystem ts_copy = fts;
EXPECT_EQ(fts.is_functional(), ts_copy.is_functional());
Expand Down

0 comments on commit 8e4c477

Please sign in to comment.