mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
add testing stubs
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b0e071aa2c
commit
bd04b5e8bd
6 changed files with 114 additions and 9 deletions
|
@ -129,6 +129,14 @@ namespace polysat {
|
|||
// save for later
|
||||
}
|
||||
|
||||
void solver::add_ult(pdd const& p, pdd const& q, unsigned dep) {
|
||||
// save for later
|
||||
}
|
||||
|
||||
void solver::add_slt(pdd const& p, pdd const& q, unsigned dep) {
|
||||
// save for later
|
||||
}
|
||||
|
||||
void solver::assign(unsigned var, unsigned index, bool value, unsigned dep) {
|
||||
m_viable[var] &= value ? m_bdd.mk_var(index) : m_bdd.mk_nvar(index);
|
||||
m_trail.push(vector_value_trail<u_dependency*, false>(m_vdeps, var));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue