3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-22 11:07:51 +00:00
z3/src/tactic/portfolio/bounded_int2bv_solver.h

29 lines
407 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.h"
#include"params.h"
class solver;
solver * mk_bounded_int2bv_solver(ast_manager & m, params_ref const & p, solver* s);
#endif