mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fixes to mostly solver arith/euf and backtracking scopes
This commit is contained in:
parent
1ee2ba2a9b
commit
8d76470a8a
25 changed files with 189 additions and 93 deletions
|
@ -590,11 +590,16 @@ public:
|
|||
return out;
|
||||
}
|
||||
|
||||
out << "[" << j << "] " << std::setw(6) << " := " << m_x[j];
|
||||
std::stringstream strm;
|
||||
strm << m_x[j];
|
||||
std::string j_val = strm.str();
|
||||
out << "[" << j << "] " << std::setw(6) << " := " << j_val;
|
||||
if (m_basis_heading[j] >= 0)
|
||||
out << " base\t";
|
||||
out << " base ";
|
||||
else
|
||||
out << " \t";
|
||||
out << " ";
|
||||
for (auto k = j_val.size(); k < 15; ++k)
|
||||
out << " ";
|
||||
switch (m_column_types[j]) {
|
||||
case column_type::fixed:
|
||||
case column_type::boxed:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue