3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-01 07:40:41 +00:00

add tactic to eliminate enumeration sorts in favor of bit-vectors

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-07-23 14:11:21 -07:00
parent d9afcb4eaf
commit 083939ab0e
6 changed files with 362 additions and 3 deletions

View file

@ -0,0 +1,32 @@
/*++
Copyright (c) 2016 Microsoft Corporation
Module Name:
dt2bv_tactic.h
Abstract:
Tactic that eliminates finite domain data-types.
Author:
nbjorner 2016-07-22
Revision History:
--*/
#ifndef DT2BV_TACTIC_H_
#define DT2BV_TACTIC_H_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_dt2bv_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("dt2bv", "eliminate finite domain data-types. Replace by bit-vectors.", "mk_dt2bv_tactic(m, p)")
*/
#endif