mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
add tactic to recognize small discrete domains and convert them into bit-vectors
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7c87096237
commit
980e74b4ff
3 changed files with 370 additions and 2 deletions
34
src/tactic/arith/eq2bv_tactic.h
Normal file
34
src/tactic/arith/eq2bv_tactic.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*++
|
||||
Copyright (c) 2015 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
eq2bv_tactic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Extract integer variables that are used as finite domain indicators.
|
||||
The integer variables can only occur in equalities.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2015-8-19
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef EQ2BV_TACTIC_H_
|
||||
#define EQ2BV_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
tactic * mk_eq2bv_tactic(ast_manager & m);
|
||||
|
||||
/*
|
||||
ADD_TACTIC("eq2bv", "convert integer variables used as finite domain elements to bit-vectors.", "mk_eq2bv_tactic(m)")
|
||||
*/
|
||||
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue