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 df2755d commit 3e74abe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/*
6 changes: 5 additions & 1 deletion test/unit-tests/test-virtual_constraint.hh
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,14 @@ TEST_CASE ("Extract virtual constraint", "[evc]") {


SECTION ("Test for completeness of vc_comp and zone_comp") {
std::string base_string = "dbm is ";
std::string base_string = "zone dbm is ";
std::stringstream info(base_string);
info << std::endl;
tchecker::dbm::output_matrix(info, zone_comp->dbm(), zone_comp->dim());
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);});
INFO(info.str());
REQUIRE(zone_comp->belongs(*clockval_fitting));
REQUIRE_FALSE(zone_comp->belongs(*clockval_x_toobig));
Expand Down

0 comments on commit 3e74abe

Please sign in to comment.