mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
This commit is contained in:
parent
4a451b10d8
commit
8981d32caf
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue