mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 00:35:47 +00:00
Z3 sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3f9edad676
commit
e9eab22e5c
1186 changed files with 381859 additions and 0 deletions
49
lib/spc_params.h
Normal file
49
lib/spc_params.h
Normal file
|
@ -0,0 +1,49 @@
|
|||
/*++
|
||||
Copyright (c) 2006 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
spc_params.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Parameters for the Superposition Calculus Engine
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2008-02-08.
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SPC_PARAMS_H_
|
||||
#define _SPC_PARAMS_H_
|
||||
|
||||
#include"order_params.h"
|
||||
|
||||
struct spc_params : public order_params {
|
||||
unsigned m_min_func_freq_subsumption_index;
|
||||
unsigned m_max_subsumption_index_features;
|
||||
unsigned m_initial_subsumption_index_opt;
|
||||
double m_factor_subsumption_index_opt;
|
||||
bool m_backward_subsumption;
|
||||
bool m_equality_subsumption;
|
||||
unsigned m_spc_num_iterations;
|
||||
bool m_spc_trace;
|
||||
|
||||
spc_params():
|
||||
m_min_func_freq_subsumption_index(100),
|
||||
m_max_subsumption_index_features(32),
|
||||
m_initial_subsumption_index_opt(1000),
|
||||
m_factor_subsumption_index_opt(1.5),
|
||||
m_backward_subsumption(true),
|
||||
m_equality_subsumption(true),
|
||||
m_spc_num_iterations(1000),
|
||||
m_spc_trace(false) {
|
||||
}
|
||||
|
||||
void register_params(ini_params & p);
|
||||
};
|
||||
|
||||
#endif /* _SPC_PARAMS_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue