-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.py
26 lines (18 loc) · 964 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# If true, transform categorical assignments into multiple individual assignments
transform_categoricals: bool = False
# If set converts all conditions to arithmetic ahead of the main computation
cond2arithm: bool = False
# If true there won't be automatic type inference
disable_type_inference: bool = False
# Number of iterations in the fixedpoint computation of the type inference
type_fp_iterations: int = 100
# If true, the roots in the recurrence computation will be computed numerically
numeric_roots: bool = False
# If true, the complex roots in the recurrence computation will be computed numerically
numeric_croots: bool = False
# Interval epsilon for the potential approximation of roots
numeric_eps: float = 1e-10
# If set any loop guard will be overridden with 'true'
trivial_guard: bool = False
# If true, moments of functions of distributions which would be transcendental won't be approximated by rationals
exact_func_moments: bool = False