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:
parent
5290cd1ff5
commit
ec47a1df50
11 changed files with 1545 additions and 3 deletions
30
src/tactic/bv/bv_bound_chk_tactic.h
Normal file
30
src/tactic/bv/bv_bound_chk_tactic.h
Normal 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_*/
|
Loading…
Add table
Add a link
Reference in a new issue