3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 09:12:16 +00:00
z3/src/tactic/portfolio/bounded_int2bv_solver.h
Nikolaj Bjorner b19f94ae5b make include paths uniformly use path relative to src. #534
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2017-07-31 13:24:11 -07:00

29 lines
418 B
C++

/*++
Copyright (c) 2016 Microsoft Corporation
Module Name:
bounded_int2bv_solver.h
Abstract:
Finite domain solver.
Author:
Nikolaj Bjorner (nbjorner) 2016-10-23
Notes:
--*/
#ifndef BOUNDED_INT2BV_SOLVER_H_
#define BOUNDED_INT2BV_SOLVER_H_
#include "ast/ast.h"
#include "util/params.h"
class solver;
solver * mk_bounded_int2bv_solver(ast_manager & m, params_ref const & p, solver* s);
#endif