mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
This commit is contained in:
parent
4a451b10d8
commit
8981d32caf
|
@ -55,6 +55,9 @@ public:
|
|||
bool operator==(B const& other) const {
|
||||
return m_vec.m_vector[m_i] == other;
|
||||
}
|
||||
bool operator!=(B const& other) const {
|
||||
return m_vec.m_vector[m_i] != other;
|
||||
}
|
||||
B& operator+=(B const &delta) {
|
||||
// not tracking the change here!
|
||||
return m_vec.m_vector[m_i] += delta;
|
||||
|
|
Loading…
Reference in a new issue