Skip to content

Commit

Permalink
Fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
whaaswijk committed May 7, 2018
1 parent ca15274 commit 39991bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cms_equivalence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ using kitty::static_truth_table;
template<int NrIn>
void check_std_equivalence(bool full_coverage)
{
#ifdef USE_CMS
synth_spec<static_truth_table<NrIn>> spec(NrIn, 1);

auto synth1 = new_std_synth();
Expand Down Expand Up @@ -65,6 +66,7 @@ void check_std_equivalence(bool full_coverage)
fflush(stdout);
}
printf("\n");
#endif
}

/*******************************************************************************
Expand All @@ -74,7 +76,6 @@ void check_std_equivalence(bool full_coverage)
*******************************************************************************/
int main(int argc, char **argv)
{
#ifdef USE_CMS
bool full_coverage = false;
if (argc > 1) {
full_coverage = true;
Expand All @@ -88,7 +89,6 @@ int main(int argc, char **argv)
check_std_equivalence<2>(full_coverage);
check_std_equivalence<3>(full_coverage);
check_std_equivalence<4>(full_coverage);
#endif

return 0;
}
Expand Down

0 comments on commit 39991bb

Please sign in to comment.