3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-17 20:54:45 +00:00
z3/src/tactic/arith/fm_tactic.h
Nikolaj Bjorner b19f94ae5b make include paths uniformly use path relative to src. #534
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2017-07-31 13:24:11 -07:00

36 lines
685 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 "util/params.h"
class ast_manager;
class tactic;
tactic * mk_fm_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("fm", "eliminate variables using fourier-motzkin elimination.", "mk_fm_tactic(m, p)")
*/
#endif