Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
alzeha committed Sep 24, 2024
1 parent 3e74abe commit 6d9192e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit-tests/test-virtual_constraint.hh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ TEST_CASE ("Extract virtual constraint", "[evc]") {
info << "vc dbm is " << std::endl;
tchecker::dbm::output_matrix(info, vc_comp->dbm(), vc_comp->dim());
info << "clock_val_w_toosmall is " << std::endl;
tchecker::output(info, clock_val_w_toosmall, [](tchecker::clock_id_t clk) {std::to_string(clk);});
std::function<std::string(tchecker::clock_id_t)> clk_name {[](tchecker::clock_id_t clk) {return std::to_string(clk);}};
tchecker::output(info, *clockval_w_toosmall, clk_name );
INFO(info.str());
REQUIRE(zone_comp->belongs(*clockval_fitting));
REQUIRE_FALSE(zone_comp->belongs(*clockval_x_toobig));
Expand Down

0 comments on commit 6d9192e

Please sign in to comment.