3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-31 11:42:28 +00:00

align the univariate helper manager with the main polynomial manager

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-10-25 12:02:54 -07:00
parent 53e4d9562a
commit c72da53d19

View file

@ -7203,15 +7203,18 @@ namespace polynomial {
}
void manager::set_z() {
return m_imp->m().set_z();
m_imp->m().set_z();
m_imp->upm().set_z();
}
void manager::set_zp(numeral const & p) {
return m_imp->m().set_zp(p);
m_imp->m().set_zp(p);
m_imp->upm().set_zp(p);
}
void manager::set_zp(uint64_t p) {
return m_imp->m().set_zp(p);
m_imp->m().set_zp(p);
m_imp->upm().set_zp(p);
}
bool manager::is_var(polynomial const* p, var& v) {