Skip to content

Commit

Permalink
Merge branch 'master' into mcsat-api-var-order
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-irfan committed Nov 18, 2023
2 parents cf0f64d + f2241ce commit 783ff3e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile.build
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ MKVERSION=./utils/make_source_version
srcdir = src
srcsubdirs = mt io terms utils solvers solvers/floyd_warshall \
solvers/funs solvers/bv solvers/egraph solvers/cdcl solvers/simplex solvers/quant \
parser_utils model scratch api frontend frontend/common \
parser_utils model api frontend frontend/common \
frontend/smt1 frontend/yices frontend/smt2 context exists_forall \
mcsat mcsat/eq mcsat/weq mcsat/uf mcsat/bool mcsat/ite mcsat/nra mcsat/bv \
mcsat/bv/explain mcsat/utils
Expand Down
3 changes: 0 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -436,9 +436,6 @@ extra_src_c := \
model/large_bvsets.c \
model/rb_bvsets.c \
model/small_bvsets.c \
scratch/booleq_table.c \
scratch/bool_vartable.c \
scratch/update_graph.c \
solvers/bv/bvsolver_printer.c \
solvers/cdcl/clause_pool.c \
solvers/cdcl/gates_printer.c \
Expand Down
3 changes: 2 additions & 1 deletion src/solvers/cdcl/smt_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,8 @@ void init_smt_core(smt_core_t *s, uint32_t n, void *th,
init_checkpoint_stack(&s->checkpoints);
s->cp_flag = false;

s->etable = NULL;
// EXPERIMENTAL
// s->etable = NULL;
s->trace = NULL;

s->interrupt_push = false;
Expand Down
4 changes: 2 additions & 2 deletions src/solvers/cdcl/smt_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@


// EXPERIMENTAL
#include "scratch/booleq_table.h"
// #include "scratch/booleq_table.h"


/***********
Expand Down Expand Up @@ -1051,7 +1051,7 @@ typedef struct smt_core_s {
bool cp_flag; // set true when backtracking. false when checkpoints are added

/* EXPERIMENTAL (default to NULL) */
booleq_table_t *etable;
// booleq_table_t *etable;

/* Tracer object (default to NULL) */
tracer_t *trace;
Expand Down
File renamed without changes.

0 comments on commit 783ff3e

Please sign in to comment.