3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

init of m_active_vars_weights and fixes in is_simplified

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-07 16:19:28 -07:00
parent b2d1bcc8cd
commit 0c126031b0
12 changed files with 129 additions and 92 deletions

View file

@ -57,11 +57,11 @@ class nex_creator {
svector<unsigned> m_active_vars_weights;
public:
static char ch(unsigned j) {
// std::stringstream s;
// s << "v" << j;
// return s.str();
return (char)('a'+j);
static std::string ch(unsigned j) {
std::stringstream s;
s << "v" << j;
return s.str();
// return (char)('a'+j);
}
// assuming that every lpvar is less than this number