mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 10:41:35 +00:00
bmc improvements, move fd_solver to self-contained directory
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fd09b1a7d0
commit
e041ebbe80
21 changed files with 120 additions and 76 deletions
29
src/tactic/fd_solver/pb2bv_solver.h
Normal file
29
src/tactic/fd_solver/pb2bv_solver.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*++
|
||||
Copyright (c) 2016 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
pb2bv_solver.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Pseudo-Boolean to bit-vector solver.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2016-10-23
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef PB2BV_SOLVER_H_
|
||||
#define PB2BV_SOLVER_H_
|
||||
|
||||
#include "ast/ast.h"
|
||||
#include "util/params.h"
|
||||
|
||||
class solver;
|
||||
|
||||
solver * mk_pb2bv_solver(ast_manager & m, params_ref const & p, solver* s);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue