mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
First version of the inj. tactic
This commit is contained in:
parent
cb87d47f08
commit
4cb7f72509
3 changed files with 342 additions and 5 deletions
32
src/tactic/core/injectivity_tactic.h
Normal file
32
src/tactic/core/injectivity_tactic.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*++
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
injectivity_tactic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Injectivity tactics
|
||||
|
||||
Author:
|
||||
|
||||
Nicolas Braud-Santoni (t-nibrau) 2017-08-10
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef INJECTIVITY_TACTIC_H_
|
||||
#define INJECTIVITY_TACTIC_H_
|
||||
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
tactic * mk_injectivity_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
|
||||
/*
|
||||
ADD_TACTIC("injectivity", "Identifies and applies injectivity axioms.", "mk_injectivity_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue