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