mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 09:50:23 +00:00
36 lines
588 B
C
36 lines
588 B
C
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
arith_simplifier_params.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2008-05-09.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _ARITH_SIMPLIFIER_PARAMS_H_
|
|
#define _ARITH_SIMPLIFIER_PARAMS_H_
|
|
|
|
#include"params.h"
|
|
|
|
struct arith_simplifier_params {
|
|
bool m_arith_expand_eqs;
|
|
bool m_arith_process_all_eqs;
|
|
|
|
arith_simplifier_params(params_ref const & p = params_ref()) {
|
|
updt_params(p);
|
|
}
|
|
|
|
void updt_params(params_ref const & _p);
|
|
};
|
|
|
|
#endif /* _ARITH_SIMPLIFIER_PARAMS_H_ */
|
|
|