mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 19:53:34 +00:00
30 lines
453 B
C++
30 lines
453 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
elim_term_ite_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Eliminate term if-then-else by adding
|
|
new fresh auxiliary variables.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-12-29
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _ELIM_TERM_ITE_TACTIC_H_
|
|
#define _ELIM_TERM_ITE_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_elim_term_ite_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|