3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

debugging cardinality theory

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-05 09:39:28 -08:00
parent 27f3f7b735
commit 9467806a5c
8 changed files with 29 additions and 15 deletions

View file

@ -31,6 +31,7 @@ Revision History:
#include"theory_dummy.h"
#include"theory_dl.h"
#include"theory_seq_empty.h"
#include"theory_card.h"
namespace smt {
@ -790,6 +791,10 @@ namespace smt {
m_context.register_plugin(alloc(theory_seq_empty, m_manager));
}
void setup::setup_card() {
m_context.register_plugin(alloc(theory_card, m_manager));
}
void setup::setup_unknown() {
setup_arith();
setup_arrays();
@ -797,6 +802,7 @@ namespace smt {
setup_datatypes();
setup_dl();
setup_seq();
setup_card();
}
void setup::setup_unknown(static_features & st) {