mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 14:25:46 +00:00
add sample bdd vector operations
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
af2376e9e4
commit
c7868579c0
4 changed files with 73 additions and 7 deletions
|
@ -21,10 +21,12 @@ namespace polysat {
|
|||
case justification_k::unassigned:
|
||||
return out << "unassigned";
|
||||
case justification_k::decision:
|
||||
return out << "decision (level " << level() << ")";
|
||||
return out << "decision @ " << level();
|
||||
case justification_k::propagation:
|
||||
return out << "propagation (level " << level() << ")";
|
||||
return out << "propagation @ " << level();
|
||||
}
|
||||
UNREACHABLE();
|
||||
return out;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue