3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 04:26:00 +00:00

add stubs to the nla_grobner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-09-04 12:27:05 -07:00
parent d08d381115
commit bfcfc517fe
7 changed files with 53 additions and 21 deletions

View file

@ -452,7 +452,9 @@ class theory_lra::imp {
m_nla->get_core()->m_settings.run_tangents() = nla.tangents();
m_nla->get_core()->m_settings.run_horner() = nla.horner();
m_nla->get_core()->m_settings.horner_frequency() = nla.horner_frequency();
m_nla->get_core()->m_settings.horner_row_length_limit() = nla.horner_row_length_limit();
m_nla->get_core()->m_settings.horner_row_length_limit() = nla.horner_row_length_limit();
m_nla->get_core()->m_settings.grobner_frequency() = nla.grobner_frequency();
m_nla->get_core()->m_settings.run_grobner() = nla.grobner();
}
}