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:
parent
a74ef394ec
commit
4039352837
4 changed files with 26 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue