mirror of
https://github.com/Z3Prover/z3
synced 2025-06-29 09:28:45 +00:00
add parameter to enable splitting guided by length constraints
This commit is contained in:
parent
69f92a309f
commit
1892d31794
7 changed files with 73 additions and 6 deletions
38
src/smt/params/theory_seq_params.h
Normal file
38
src/smt/params/theory_seq_params.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*++
|
||||
Copyright (c) 2018 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
theory_seq_params.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Parameters for sequence theory plugin
|
||||
|
||||
Revision History:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef THEORY_SEQ_PARAMS_H
|
||||
#define THEORY_SEQ_PARAMS_H
|
||||
|
||||
#include "util/params.h"
|
||||
|
||||
struct theory_seq_params {
|
||||
/*
|
||||
* Enable splitting guided by length constraints
|
||||
*/
|
||||
bool m_split_w_len;
|
||||
|
||||
|
||||
theory_seq_params(params_ref const & p = params_ref()):
|
||||
m_split_w_len(true)
|
||||
{
|
||||
updt_params(p);
|
||||
}
|
||||
|
||||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* THEORY_SEQ_PARAMS_H */
|
Loading…
Add table
Add a link
Reference in a new issue