mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
34 lines
576 B
C++
34 lines
576 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
fm_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Use Fourier-Motzkin to eliminate variables.
|
|
This strategy can handle conditional bounds
|
|
(i.e., clauses with at most one constraint).
|
|
|
|
The strategy mk_occf can be used to put the
|
|
formula in OCC form.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2012-02-04.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _FM_TACTIC_H_
|
|
#define _FM_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_fm_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|