3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:56:30 -07:00
parent 10d0404175
commit d0e20e44ff
714 changed files with 714 additions and 2142 deletions

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef ATOM2BOOL_VAR_H_
#define ATOM2BOOL_VAR_H_
#pragma once
#include "ast/expr2var.h"
#include "sat/sat_types.h"
@ -41,4 +40,3 @@ class goal;
void collect_boolean_interface(goal const & g, obj_hashtable<expr> & r);
void collect_boolean_interface(ast_manager & m, unsigned num, expr * const * fs, obj_hashtable<expr> & r);
#endif

View file

@ -26,8 +26,7 @@ Author:
Notes:
--*/
#ifndef GOAL2SAT_H_
#define GOAL2SAT_H_
#pragma once
#include "tactic/goal.h"
#include "sat/sat_solver.h"
@ -118,4 +117,3 @@ public:
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef SAT_TACTIC_H_
#define SAT_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -32,4 +31,3 @@ tactic * mk_sat_preprocessor_tactic(ast_manager & m, params_ref const & p = para
ADD_TACTIC('sat-preprocess', 'Apply SAT solver preprocessing procedures (bounded resolution, Boolean constant propagation, 2-SAT, subsumption, subsumption resolution).', 'mk_sat_preprocessor_tactic(m, p)')
*/
#endif