3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 20:16:00 +00:00

Adding bv preprocessing techniques.

This commit is contained in:
Mikolas Janota 2016-09-01 17:22:49 +01:00 committed by Christoph M. Wintersteiger
parent 5290cd1ff5
commit ec47a1df50
11 changed files with 1545 additions and 3 deletions

View file

@ -0,0 +1,30 @@
/*++
Copyright (c) 2016 Microsoft Corporation
Module Name:
bv_bound_chk_tactic.h
Abstract:
Author:
Mikolas Janota
Revision History:
--*/
#ifndef BV_BOUND_CHK_TACTIC_H_
#define BV_BOUND_CHK_TACTIC_H_
#include"tactical.h"
#include"params.h"
#include"ast.h"
tactic* mk_bv_bound_chk_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("bv_bound_chk", "attempts to detect inconsistencies of bounds on bv expressions.", "mk_bv_bound_chk_tactic(m, p)")
*/
#endif /* BV_BOUND_CHK_TACTIC_H_*/