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

working on pb solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-16 17:01:43 -08:00
parent 06073db413
commit 77cdb2bcde
3 changed files with 343 additions and 221 deletions

View file

@ -32,6 +32,7 @@ Revision History:
#include"theory_dl.h"
#include"theory_seq_empty.h"
#include"theory_card.h"
#include"theory_pb.h"
namespace smt {
@ -792,7 +793,8 @@ namespace smt {
}
void setup::setup_card() {
m_context.register_plugin(alloc(theory_card, m_manager));
// m_context.register_plugin(alloc(theory_card, m_manager));
m_context.register_plugin(alloc(theory_pb, m_manager));
}
void setup::setup_unknown() {