3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fixup unit tests

This commit is contained in:
Nikolaj Bjorner 2025-02-27 17:18:53 -08:00
parent b784b748d4
commit ec93972356
2 changed files with 3 additions and 3 deletions

View file

@ -82,9 +82,8 @@ public:
void backup_x() { m_backup_x = m_r_x; }
void restore_x() {
m_r_x = m_backup_x;
m_r_x.reserve(m_m());
for (unsigned i = 0; i < std::min(m_m(), m_backup_x.size()); ++i)
m_r_x[i] = m_backup_x[i];
}
vector<impq> const& r_x() const { return m_r_x; }