3
0
Fork 0
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:
Nikolaj Bjorner 2018-08-05 10:00:49 -07:00
parent fd09b1a7d0
commit e041ebbe80
21 changed files with 120 additions and 76 deletions

View 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