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

add outline of bv bounds tactic

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-02-12 22:57:47 +00:00
parent 94be6fc776
commit e484fc365d
3 changed files with 181 additions and 1 deletions

View file

@ -0,0 +1,24 @@
/*++
Copyright (c) 2016 Microsoft Corporation
Module Name:
bv_bounds_tactic.h
Abstract:
Contextual bounds simplification tactic.
Author:
Nikolaj Bjorner (nbjorner) 2016-2-12
--*/
#ifndef BV_BOUNDS_TACTIC_H_
#define BV_BOUNDS_TACTIC_H_
#include "tactic.h"
tactic * mk_bv_bounds_tactic(ast_manager & m, params_ref const & p = params_ref());
#endif