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

add pdd_interval to evaluate intervals of pdd expressions

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-12-24 18:08:03 -08:00
parent fffd764226
commit 1d217595c8
4 changed files with 76 additions and 1 deletions

View file

@ -332,5 +332,4 @@ public:
copy_upper_bound<wd>(b, i);
}
};

View file

@ -107,6 +107,9 @@ inline deps_combine_rule dep1_to_dep2(deps_combine_rule d) {
struct interval_deps_combine_rule {
deps_combine_rule m_lower_combine;
deps_combine_rule m_upper_combine;
void reset() {
m_lower_combine = m_upper_combine = 0;
}
};
template<typename C>