Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
yoni206 committed Nov 21, 2024
1 parent 7aace66 commit f50f326
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/term_translator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,9 @@ std::string TermTranslator::infixize_rational(const std::string smtlib) const {
int ind_of_up_end;
if (smtlib.substr(ind_of_up_start, 2) == "(-")
{
//std::cout<<"1 "<<std::endl;
ind_of_up_end = smtlib.find_first_of(')', ind_of_up_start);
new_up = "- "+smtlib.substr(ind_of_up_start+3, ind_of_up_end-ind_of_up_start-3);
} else {
//std::cout<<"2 "<<std::endl;
ind_of_up_end = smtlib.find_first_of(' ', ind_of_up_start);
assert(ind_of_up_end != std::string::npos);
ind_of_up_end -= 1;
Expand Down

0 comments on commit f50f326

Please sign in to comment.