mirror of
https://github.com/Z3Prover/z3
synced 2025-06-29 09:28:45 +00:00
36 lines
693 B
C
36 lines
693 B
C
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
array_simplifier_params.h
|
|
|
|
Abstract:
|
|
|
|
This file was created during code reorg.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2012-12-02.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef ARRAY_SIMPLIFIER_PARAMS_H_
|
|
#define ARRAY_SIMPLIFIER_PARAMS_H_
|
|
|
|
#include "util/params.h"
|
|
|
|
struct array_simplifier_params {
|
|
bool m_array_canonize_simplify;
|
|
bool m_array_simplify; // temporary hack for disabling array simplifier plugin.
|
|
|
|
array_simplifier_params(params_ref const & p = params_ref()) {
|
|
updt_params(p);
|
|
}
|
|
|
|
void updt_params(params_ref const & _p);
|
|
};
|
|
|
|
#endif /* ARITH_SIMPLIFIER_PARAMS_H_ */
|
|
|