mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 11:43:36 +00:00
31 lines
437 B
C++
31 lines
437 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
elim_uncnstr_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Eliminated applications containing unconstrained variables.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-10-22
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _ELIM_UNCNSTR_TACTIC_H_
|
|
#define _ELIM_UNCNSTR_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
|
|
class tactic;
|
|
class ast_manager;
|
|
|
|
tactic * mk_elim_uncnstr_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|
|
|