| """ |
| Configuration for v_mix system. |
| Select which analyses to run via a simple dict. |
| """ |
|
|
| DEFAULT_CONFIG = { |
| |
| "n_zeros": 100000, |
| "precision_digits": 30, |
| "zeros_file": "/app/riemann_vmix/data/zeros1", |
| |
| |
| "problems": { |
| "cramer_gaps": True, |
| "gue_convergence": True, |
| "mertens_extremal": True, |
| "explicit_formula_minimum_zeros": True, |
| "ktuple_constants": True, |
| "lindeloef_evidence": True, |
| "chebyshev_bias": True, |
| "lehmer_phenomena": True, |
| }, |
| |
| |
| "new_strategies": { |
| "transformer_prime_gaps": True, |
| "tda_zero_analysis": True, |
| "entropy_spacing_analysis": True, |
| }, |
| |
| |
| "output_dir": "/app/riemann_vmix/output", |
| "generate_reports": True, |
| "generate_visualizations": True, |
| } |
|
|
| def get_config(overrides=None): |
| cfg = DEFAULT_CONFIG.copy() |
| if overrides: |
| cfg.update(overrides) |
| return cfg |
|
|