3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 14:55:25 +00:00

add ability to touch variables for bound propagation

This commit is contained in:
Nikolaj Bjorner 2020-07-30 10:20:17 -07:00
parent a74ef394ec
commit 4039352837
4 changed files with 26 additions and 1 deletions

View file

@ -46,6 +46,12 @@ typedef vector<column_cell> column_strip;
template <typename T>
using row_strip = vector<row_cell<T>>;
template <typename T>
std::ostream& operator<<(std::ostream& out, const row_strip<T>& r) {
for (auto const& c : r)
out << c << " ";
return out << "\n";
}
// each assignment for this matrix should be issued only once!!!
template <typename T, typename X>