From: bdemsky Date: Wed, 31 Dec 2014 06:42:23 +0000 (+0900) Subject: factor out common constants X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satlib.git;a=commitdiff_plain;h=16db0f7120215c74f5a4ab47e70b97df59bf7513;ds=sidebyside factor out common constants --- diff --git a/solver_interface.h b/solver_interface.h new file mode 100644 index 0000000..295c52e --- /dev/null +++ b/solver_interface.h @@ -0,0 +1,12 @@ +#ifndef SOLVER_INTERFACE_H +#define SOLVER_INTERFACE_H + +#define IS_UNSAT 0 +#define IS_SAT 1 +#define IS_INDETER 2 +#define IS_RUNSOLVER 3 +#define IS_FREEZE 3 + +#define BUFFERSIZE 1024 + +#endif