├── dadapy └── _cython │ ├── __init__.py │ └── compile_cython.txt ├── .coveragerc ├── project.toml ├── dev_scripts └── whitelist.py ├── logo ├── dummy_logo.png ├── logo_1_horizontal.jpg ├── logo_1_vertical.jpg ├── logo_2_horizontal.jpg ├── logo_2_vertical.jpg ├── logo_1_vertical_v2.jpg ├── logo_1_horizontal_v2.jpg └── logo_1_horizontal_transparent_v2.png ├── docs └── source │ ├── jupyter_example_4.nblink │ ├── jupyter_example_5.nblink │ ├── jupyter_example_8.nblink │ ├── jupyter_example_9.nblink │ ├── base.rst │ ├── data.rst │ ├── jupyter_example_2.nblink │ ├── jupyter_example_3.nblink │ ├── jupyter_example_6.nblink │ ├── jupyter_example_7.nblink │ ├── hamming.rst │ ├── jupyter_example_1.nblink │ ├── clustering.rst │ ├── id_discrete.rst │ ├── _static │ └── tutorial_screenshot.png │ ├── causal_graph.rst │ ├── id_estimation.rst │ ├── neigh_graph.rst │ ├── diff_imbalance.rst │ ├── density_advanced.rst │ ├── density_estimation.rst │ └── feature_weighting.rst ├── tests ├── 2gaussians_in_2d.npy ├── 3d_gauss_small_z_var.npy ├── 2gaussians_in_2d_overlap.npy ├── rosslers_xtoy_trajectory.npy └── test_clustering │ └── ground_truths │ ├── centers5k.npy │ └── nclusters5k.npy └── examples └── datasets └── hamming ├── Ising2D └── opt │ ├── L100 │ ├── T1.50 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T1.60 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T1.70 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T1.80 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T1.90 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.00 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.10 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.20 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.21 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.22 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.23 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.24 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.25 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.26 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.27 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.28 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.29 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.30 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.31 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.32 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.33 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.34 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.35 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.36 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.37 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.38 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.39 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.40 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── T2.50 │ │ └── alphamin0.00000 │ │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── T2.60 │ │ └── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ │ └── alphamax0.15000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ └── L30 │ ├── T1.50 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T1.60 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T1.70 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T1.80 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T1.90 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.00 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.10 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.20 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.21 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.22 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.23 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.24 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.25 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.26 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.27 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.28 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.29 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.30 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.31 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.32 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.33 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.34 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.35 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.36 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.37 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.38 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.39 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.40 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.50 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.60 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.70 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.80 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T2.90 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.00 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.10 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.20 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.30 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.40 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.50 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.60 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.70 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.80 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ ├── T3.90 │ ├── alphamin0.00000 │ │ ├── alphamax0.05000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.10000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.15000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.20000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.25000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.30000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.35000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ ├── alphamax0.40000 │ │ │ └── Nsteps1000000 │ │ │ │ └── delta0.00050 │ │ │ │ └── seed1 │ │ │ │ └── opt.txt │ │ └── alphamax0.45000 │ │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamin0.00100 │ │ └── alphamax0.10000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ └── T4.00 │ ├── alphamin0.00000 │ ├── alphamax0.05000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.10000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.15000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.20000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.25000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.30000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.35000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ ├── alphamax0.40000 │ │ └── Nsteps1000000 │ │ │ └── delta0.00050 │ │ │ └── seed1 │ │ │ └── opt.txt │ └── alphamax0.45000 │ │ └── Nsteps1000000 │ │ └── delta0.00050 │ │ └── seed1 │ │ └── opt.txt │ └── alphamin0.00100 │ └── alphamax0.10000 │ └── Nsteps1000000 │ └── delta0.00050 │ └── seed1 │ └── opt.txt └── random_spins └── L100 └── opt └── alphamin0.00000 ├── alphamax0.30000 └── Nsteps100000 │ └── delta0.00500 │ └── seed1 │ └── opt.txt └── alphamax1.00000 └── Nsteps100000 └── delta0.00500 └── seed1 └── opt.txt /dadapy/_cython/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | */.tox/* 4 | dadapy/plot.py 5 | -------------------------------------------------------------------------------- /dadapy/_cython/compile_cython.txt: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace 2 | -------------------------------------------------------------------------------- /project.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | build-backend = 'setuptools.build_meta' 3 | -------------------------------------------------------------------------------- /dev_scripts/whitelist.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | # noqa: C901 3 | # type: ignore 4 | # pylint: skip-file 5 | -------------------------------------------------------------------------------- /logo/dummy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/dummy_logo.png -------------------------------------------------------------------------------- /docs/source/jupyter_example_4.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_beta_hairpin.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/jupyter_example_5.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_discreteID.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/jupyter_example_8.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_causal_graph.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/jupyter_example_9.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_hamming.ipynb" 3 | 4 | } 5 | -------------------------------------------------------------------------------- /logo/logo_1_horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_1_horizontal.jpg -------------------------------------------------------------------------------- /logo/logo_1_vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_1_vertical.jpg -------------------------------------------------------------------------------- /logo/logo_2_horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_2_horizontal.jpg -------------------------------------------------------------------------------- /logo/logo_2_vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_2_vertical.jpg -------------------------------------------------------------------------------- /tests/2gaussians_in_2d.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/2gaussians_in_2d.npy -------------------------------------------------------------------------------- /logo/logo_1_vertical_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_1_vertical_v2.jpg -------------------------------------------------------------------------------- /docs/source/base.rst: -------------------------------------------------------------------------------- 1 | The base module 2 | ================================ 3 | 4 | .. automodule:: base 5 | :members: -------------------------------------------------------------------------------- /docs/source/data.rst: -------------------------------------------------------------------------------- 1 | The data module 2 | ================================ 3 | 4 | .. automodule:: data 5 | :members: -------------------------------------------------------------------------------- /docs/source/jupyter_example_2.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_information_imbalance.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/jupyter_example_3.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_intrinsic_dimension.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /logo/logo_1_horizontal_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_1_horizontal_v2.jpg -------------------------------------------------------------------------------- /tests/3d_gauss_small_z_var.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/3d_gauss_small_z_var.npy -------------------------------------------------------------------------------- /docs/source/jupyter_example_6.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_differentiable_imbalance.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/jupyter_example_7.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_differentiable_imbalance_jax.ipynb" 3 | 4 | } -------------------------------------------------------------------------------- /docs/source/hamming.rst: -------------------------------------------------------------------------------- 1 | The hamming module 2 | ================================ 3 | 4 | .. automodule:: hamming 5 | :members: -------------------------------------------------------------------------------- /docs/source/jupyter_example_1.nblink: -------------------------------------------------------------------------------- 1 | { 2 | "path": "../../examples/notebook_on_intrinsicdim_densityest_clustering.ipynb" 3 | } -------------------------------------------------------------------------------- /tests/2gaussians_in_2d_overlap.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/2gaussians_in_2d_overlap.npy -------------------------------------------------------------------------------- /tests/rosslers_xtoy_trajectory.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/rosslers_xtoy_trajectory.npy -------------------------------------------------------------------------------- /docs/source/clustering.rst: -------------------------------------------------------------------------------- 1 | The clustering module 2 | ================================ 3 | 4 | .. automodule:: clustering 5 | :members: -------------------------------------------------------------------------------- /docs/source/id_discrete.rst: -------------------------------------------------------------------------------- 1 | The id_discrete module 2 | ================================ 3 | 4 | .. automodule:: id_discrete 5 | :members: -------------------------------------------------------------------------------- /logo/logo_1_horizontal_transparent_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/logo/logo_1_horizontal_transparent_v2.png -------------------------------------------------------------------------------- /docs/source/_static/tutorial_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/docs/source/_static/tutorial_screenshot.png -------------------------------------------------------------------------------- /docs/source/causal_graph.rst: -------------------------------------------------------------------------------- 1 | The causal_graph module 2 | ================================ 3 | 4 | .. automodule:: causal_graph 5 | :members: -------------------------------------------------------------------------------- /docs/source/id_estimation.rst: -------------------------------------------------------------------------------- 1 | The id_estimation module 2 | ================================ 3 | 4 | .. automodule:: id_estimation 5 | :members: -------------------------------------------------------------------------------- /docs/source/neigh_graph.rst: -------------------------------------------------------------------------------- 1 | The neigh_graph module 2 | ================================ 3 | 4 | .. automodule:: neigh_graph 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/source/diff_imbalance.rst: -------------------------------------------------------------------------------- 1 | The diff_imbalance module 2 | ================================ 3 | 4 | .. automodule:: diff_imbalance 5 | :members: -------------------------------------------------------------------------------- /docs/source/density_advanced.rst: -------------------------------------------------------------------------------- 1 | The density_advanced module 2 | ================================ 3 | 4 | .. automodule:: density_advanced 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/source/density_estimation.rst: -------------------------------------------------------------------------------- 1 | The density_estimation module 2 | ================================ 3 | 4 | .. automodule:: density_estimation 5 | :members: -------------------------------------------------------------------------------- /docs/source/feature_weighting.rst: -------------------------------------------------------------------------------- 1 | The feature_weighting module 2 | ================================ 3 | 4 | .. automodule:: feature_weighting 5 | :members: -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 115,156.29409999,0.820027,-9.46718162 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 178,212.62547225,0.969215,-9.52575039 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 186,217.02898760,0.933425,-9.82946960 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 191,218.94990825,0.919120,-9.95970517 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 264,312.87999838,0.926576,-9.78601156 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 383,439.46435658,0.932735,-9.11974028 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 396,426.62626532,0.974482,-9.23880221 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 405,421.69499286,0.989949,-9.38366887 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 414,416.12079948,1.006934,-9.28536796 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 421,412.69070655,1.017135,-9.22560598 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 429,410.06384520,1.024783,-9.24226697 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,407.38788698,1.032391,-9.17762950 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 448,405.48939974,1.037660,-9.15693182 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.80/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 462,403.79258179,1.042245,-9.11819967 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 544,524.87823682,1.110043,-8.82839287 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 561,519.04938019,1.123461,-9.37127022 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 574,515.70194516,1.130876,-9.67119780 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 585,514.74441077,1.132906,-9.88094475 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 650,508.46456592,1.145224,-9.83266715 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 773,659.43051305,1.201922,-8.61559141 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 797,639.79745248,1.233022,-8.87750960 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 815,630.54584471,1.247190,-9.02866959 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 830,625.03674760,1.255416,-9.13020444 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 845,621.47064199,1.260617,-9.24244024 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 860,617.88613412,1.265727,-9.24438820 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 876,614.74801743,1.270105,-9.21431209 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 896,610.49141010,1.275928,-9.04062916 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.00/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 923,605.97943313,1.281945,-8.79074846 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 6,13.30353176,0.838156,-12.48180301 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 7,13.26188959,0.824169,-12.73738936 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 9,13.23452251,0.803527,-12.68609583 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 10,13.23510931,0.802345,-12.93313332 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 11,13.23221587,0.804265,-13.05556608 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 12,13.21981344,0.809335,-12.46922041 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 13,13.19666195,0.816320,-11.55055140 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 15,13.13337265,0.830499,-10.34429465 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 17,13.06333731,0.842422,-9.59479975 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.50/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 7,13.26227831,0.825186,-12.76915693 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 10,20.12964633,0.647743,-10.40262063 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 12,20.15896874,0.716330,-10.42277230 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 14,20.07307783,0.764511,-10.05686628 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 15,20.00643758,0.786096,-9.83534159 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 17,19.89384974,0.811354,-9.71252925 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 18,19.83347923,0.821787,-9.60728132 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 20,19.70625708,0.839865,-9.30918042 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 21,19.64143722,0.847760,-9.14174102 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 24,19.47516341,0.865178,-8.75413456 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.60/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 12,20.06005553,0.742978,-12.03511999 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 17,28.08798086,0.787801,-9.09489780 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 19,27.96013994,0.833245,-9.42218441 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 21,27.81262759,0.863448,-9.59438501 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 23,27.67741439,0.883448,-9.70082658 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 25,27.59290533,0.893295,-9.86166834 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 27,27.47349491,0.904683,-9.78132417 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 29,27.38010776,0.912322,-9.72576509 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 31,27.28777935,0.919034,-9.60964590 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 35,27.07657731,0.932376,-9.08805831 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.70/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 19,27.65958057,0.872171,-12.15012264 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 26,38.16101997,0.880811,-11.01948568 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 29,38.01196631,0.898339,-11.19898771 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 31,37.85040009,0.913507,-10.96132196 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 34,37.53492826,0.937948,-10.29525840 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 36,37.38550955,0.947588,-10.17585527 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 38,37.23602145,0.956294,-10.01557664 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 41,37.03193350,0.966853,-9.76307352 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 44,36.85198739,0.975153,-9.51549752 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 48,36.62124889,0.984715,-9.10882771 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.80/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 29,37.94466709,0.902667,-11.66062940 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 38,49.69911435,0.993814,-9.99356947 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 43,49.44311571,1.010127,-10.56357818 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 46,49.30062293,1.017467,-10.77312555 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 49,49.04090541,1.029195,-10.54978439 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 52,48.77096996,1.040154,-10.24901398 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 55,48.47139565,1.051092,-9.82163309 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 58,48.18951987,1.060549,-9.48225373 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 63,47.70844098,1.075241,-8.88249562 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 69,47.14285404,1.090831,-8.21662826 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T1.90/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 43,49.29167503,1.016018,-11.71066642 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 55,61.87356974,1.097515,-10.61605189 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 61,61.33269186,1.119560,-10.70284477 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 65,60.96765970,1.131661,-10.50030131 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 69,60.59166167,1.142926,-10.29956810 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 73,60.22611490,1.152907,-10.05137050 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 78,59.68595871,1.166264,-9.50693057 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 82,59.24073908,1.176404,-9.07908846 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 88,58.63517112,1.189195,-8.58923802 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 98,57.62349874,1.208598,-7.76265079 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.00/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 61,60.88457103,1.131560,-11.68505842 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 81,77.50098976,1.217596,-9.95262418 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 89,77.17325311,1.225886,-10.44174879 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 95,76.51955643,1.239832,-10.25989479 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 101,75.90460961,1.251502,-9.89354151 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 107,75.20105158,1.263783,-9.44650112 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 113,74.39579962,1.276867,-8.91450051 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 120,73.53456271,1.289881,-8.45291216 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 129,72.52603958,1.304019,-7.95011709 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 144,70.93427272,1.324464,-7.15383937 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.10/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 89,76.88261874,1.230893,-11.57544472 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 120,99.64040353,1.261058,-8.50501033 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 133,95.33717405,1.323632,-8.16760498 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 143,92.17484524,1.365382,-7.76865370 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 152,89.98132527,1.392335,-7.57415609 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 162,88.17978007,1.413012,-7.45284521 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 173,86.60553230,1.429778,-7.30928798 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 186,84.69492670,1.448715,-6.96586465 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 204,82.13500115,1.472303,-6.42080602 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 235,78.31757229,1.504561,-5.62352539 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.20/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 133,92.67740199,1.352709,-9.34425134 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 124,99.19720236,1.290999,-8.32025531 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 138,94.60473253,1.356848,-8.04935817 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 149,91.86276820,1.392280,-7.87662446 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 160,89.68764438,1.417981,-7.69070604 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 170,87.78213657,1.438914,-7.42188983 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 182,85.76592422,1.459636,-7.11759739 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 196,83.72349120,1.479244,-6.78962036 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 215,81.24323594,1.501371,-6.33720350 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 249,77.56521128,1.531389,-5.63293586 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.21/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 138,91.45634987,1.390481,-9.57606091 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 131,95.73881120,1.387447,-9.43983610 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 145,94.92108041,1.399400,-9.89244904 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 156,94.18074091,1.408662,-9.93606362 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 167,92.84845149,1.423629,-9.12748525 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 179,91.08423192,1.441876,-8.30016172 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 191,88.98277009,1.462165,-7.49515387 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 207,86.45892859,1.484965,-6.84877251 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 228,83.56816097,1.509198,-6.22920433 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 266,78.76116848,1.546177,-5.27151029 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.22/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 145,94.37327360,1.405154,-10.55958329 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 137,96.53118783,1.413813,-8.74269572 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 152,96.10436257,1.419112,-9.27037135 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 165,94.75222970,1.435209,-9.19972464 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 176,93.46957463,1.449045,-8.86222772 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 189,91.87268084,1.464859,-8.31812853 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 203,89.96991401,1.482290,-7.65333971 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 220,87.40968829,1.504116,-6.84579984 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 244,83.78281312,1.532924,-5.97853491 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 287,78.38210013,1.572391,-5.03465110 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.23/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 152,96.58311600,1.414209,-10.05057272 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 144,98.85321507,1.421735,-9.34394664 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 160,97.04432821,1.445817,-9.43021580 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 173,95.99629287,1.457823,-9.40882518 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 186,94.82419633,1.469857,-9.09885968 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 199,93.36520222,1.483585,-8.48273833 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 214,91.21260423,1.502393,-7.59283534 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 232,88.47621167,1.524735,-6.78902911 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 258,85.16080617,1.549859,-6.10352825 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 304,80.04705823,1.585173,-5.13715250 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.24/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 160,95.83420188,1.457374,-10.29855544 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 150,104.93196153,1.392645,-9.54614527 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 167,103.40353749,1.410698,-9.64401241 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 182,100.79057526,1.437555,-8.60079628 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 196,97.81512687,1.465623,-7.71412744 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 211,94.71778173,1.492864,-7.07191001 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 229,91.39351071,1.520134,-6.51412088 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 251,87.56232614,1.549504,-5.91282848 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 282,82.69165690,1.584340,-5.22976428 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 335,76.20494732,1.627116,-4.45565276 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.25/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 167,102.53504911,1.418205,-10.45745579 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 157,103.53589505,1.421068,-9.19359549 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 176,100.58164122,1.454855,-8.87519225 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 191,98.19912750,1.478883,-8.37196114 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 207,95.26141052,1.505976,-7.64236788 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 224,92.16128218,1.532483,-7.01511559 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 243,89.07183737,1.557099,-6.50304368 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 266,85.61062473,1.582887,-5.96668158 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 300,81.36576663,1.612301,-5.39343569 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 353,75.28859094,1.651014,-4.55500982 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.26/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 176,98.89212486,1.468975,-9.88054024 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 167,107.93382756,1.433828,-8.67297542 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 187,104.45451554,1.471451,-8.58862367 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 204,102.19939986,1.492868,-8.42572269 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 220,100.01506843,1.511559,-7.98855233 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 238,97.08911957,1.534712,-7.26248128 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 259,93.37624870,1.562124,-6.48279922 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 285,89.20926803,1.590902,-5.82868180 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 319,84.11658891,1.623790,-5.12783774 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 371,77.45521148,1.663981,-4.37972804 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.27/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 187,102.06732752,1.490278,-9.73832118 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 176,103.72640367,1.495878,-9.06285124 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 198,102.10393433,1.513237,-9.33375239 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 217,99.98437109,1.532564,-8.73522611 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 235,97.22411976,1.555489,-7.83521664 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 254,94.21465880,1.578665,-7.12653424 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 276,90.81643440,1.603148,-6.50158435 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 302,87.33160836,1.626639,-5.99405869 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 335,83.33539710,1.651819,-5.44966349 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 383,78.13111938,1.682399,-4.80069634 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.28/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 198,101.11287759,1.520769,-10.21249867 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 188,106.76282942,1.506855,-9.49745924 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 212,104.05827408,1.533327,-9.04118125 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 232,101.12586522,1.558651,-8.24912551 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 252,98.58626502,1.578618,-7.77387849 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 273,95.76559254,1.599054,-7.18385925 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 297,92.21474409,1.623031,-6.46111275 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 325,88.17978812,1.648679,-5.82503713 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 359,83.86427515,1.674522,-5.28490100 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 402,78.39934287,1.705408,-4.62683166 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.29/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 212,102.74556486,1.542592,-9.57076090 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 198,109.36252102,1.516401,-8.87821031 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 225,106.54000701,1.542237,-8.79868598 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 247,102.93517188,1.571076,-7.85213893 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 269,98.82940640,1.601477,-7.05405743 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 292,95.02588876,1.627798,-6.53811378 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 317,91.41255551,1.651270,-6.12012005 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 345,87.46428399,1.675489,-5.64998586 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 377,82.87883008,1.702269,-5.11912856 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 412,77.93666726,1.730064,-4.62407489 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.30/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 225,104.86066832,1.553281,-9.67670764 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 209,115.36391225,1.493575,-7.96804155 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 237,108.18937411,1.554368,-7.41781255 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 262,102.91690773,1.594765,-6.98820253 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 285,98.54787036,1.625818,-6.58538783 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 309,94.35071087,1.653905,-6.19308279 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 334,90.26623415,1.679882,-5.81579778 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 361,86.44450053,1.703089,-5.50411499 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 389,82.66133940,1.725130,-5.18187124 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 419,78.47814860,1.748773,-4.81048563 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.31/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 237,103.51887325,1.583466,-8.65326369 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 223,114.29345679,1.538850,-8.26176191 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 253,109.40757027,1.578678,-8.00313388 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 280,104.15721677,1.616671,-7.17461867 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 304,99.08087536,1.651086,-6.50439994 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 329,94.23549948,1.682465,-6.03618777 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 353,90.03250116,1.708687,-5.69678159 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 376,86.25830965,1.731584,-5.41383375 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 400,82.72824151,1.752555,-5.18575673 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,79.60075591,1.770775,-5.02066617 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.32/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 253,106.16750547,1.597725,-9.19637148 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 235,113.33471617,1.575788,-8.81350645 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 267,108.30768105,1.616145,-8.11271050 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 293,103.68329431,1.649709,-7.39700472 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 317,99.72442176,1.676591,-6.93252165 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 340,96.16786452,1.699515,-6.55703229 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 362,92.82911842,1.720222,-6.22225792 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 384,89.76705155,1.738624,-5.95711400 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 405,87.02249705,1.754707,-5.73648363 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 427,84.36895626,1.769921,-5.54193947 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.33/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 267,105.20266362,1.634103,-9.03620711 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 248,116.97169223,1.587568,-8.65203721 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 282,112.65849728,1.619740,-8.22008847 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 308,106.87425901,1.659222,-7.10738233 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 332,101.77889544,1.692610,-6.56842780 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 354,98.00831017,1.716501,-6.31933766 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 375,94.60686171,1.737472,-6.09015797 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 394,91.67966813,1.755184,-5.89584771 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 413,88.88570943,1.771889,-5.71691996 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 431,86.34830733,1.786968,-5.56019655 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.34/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 282,110.53463391,1.631069,-8.68745784 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 262,116.04238311,1.616173,-7.83454826 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 296,109.40964278,1.666657,-7.51217035 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 322,104.49786372,1.701586,-7.12956918 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 344,100.87724657,1.726391,-6.89979298 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 365,97.83116090,1.746637,-6.72796187 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 383,95.48214912,1.761850,-6.59984185 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 401,93.32054498,1.775572,-6.48412134 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 417,91.46002811,1.787213,-6.37535935 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,89.90897202,1.796781,-6.31698183 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.35/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 296,104.11539106,1.696255,-8.86144293 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 274,111.05226562,1.668647,-8.37305131 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 309,105.92197754,1.709675,-7.92270006 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 334,101.66467254,1.742031,-7.41912966 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 356,98.55823512,1.765200,-7.20839797 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 374,96.33603451,1.781502,-7.08842498 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 391,94.54279393,1.794461,-7.02390938 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 407,93.02177597,1.805307,-6.97253842 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 421,91.92129146,1.813047,-6.96388640 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 435,91.13177404,1.818496,-7.00039401 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.36/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 309,102.31862833,1.730572,-8.67921595 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 288,117.22214000,1.686028,-8.05930403 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 321,114.45908067,1.707765,-8.42027434 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 346,111.39817198,1.729546,-8.15953225 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 365,108.51505420,1.749232,-7.73337603 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 382,105.66547771,1.768499,-7.35688562 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 398,103.28664544,1.784591,-7.15703491 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 411,101.70124445,1.795294,-7.08331363 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,100.53943432,1.803072,-7.09049512 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 437,99.91742102,1.807146,-7.17024839 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.37/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 321,111.26781233,1.725860,-9.82273318 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 299,115.82723466,1.709132,-8.10152401 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 332,110.40369217,1.754688,-7.87047897 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 355,107.07259790,1.782574,-7.74325596 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 373,104.73800774,1.802322,-7.66126947 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 389,103.03722608,1.816908,-7.64624195 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 402,102.15101736,1.824497,-7.72061682 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 415,101.76172798,1.827758,-7.85274957 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 427,101.90355746,1.826652,-7.98056987 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,102.46230320,1.822555,-8.00816206 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.38/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 332,105.19400149,1.788447,-9.08672527 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 311,119.16656206,1.737574,-8.77875465 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 342,115.74170526,1.768249,-8.72767396 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 364,113.08855092,1.791406,-8.52014053 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 380,111.31783927,1.806859,-8.38137522 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 394,110.12809449,1.817256,-8.38089612 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 407,109.47445752,1.822896,-8.48114256 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,109.61384852,1.821774,-8.61381211 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 429,110.22723248,1.817124,-8.60658726 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,111.23040175,1.810110,-8.38849959 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.39/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 342,112.88040669,1.787222,-9.52725314 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 324,130.39293496,1.717069,-8.09064564 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 353,124.53349511,1.765131,-8.02793659 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 372,121.09616896,1.794895,-7.96311556 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 387,119.47432140,1.809483,-8.08218926 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 400,118.76248291,1.815858,-8.25431788 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 411,119.04167148,1.813524,-8.41131795 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 421,119.71280884,1.808327,-8.47355888 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 431,121.02378840,1.799062,-8.29911607 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 440,122.72519258,1.788177,-7.94481682 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.40/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 353,117.91776350,1.811076,-9.44231014 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 373,191.47605379,1.738664,-8.73919999 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 390,200.60064669,1.667711,-8.67274594 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 402,209.47276096,1.617994,-8.28614916 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 411,215.66978305,1.588353,-8.13377766 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,220.70875650,1.566377,-7.97927378 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,225.98766389,1.544893,-7.79288268 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 432,231.09746370,1.525310,-7.63131522 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,235.31099104,1.509933,-7.50308349 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 443,238.77665310,1.497745,-7.39340679 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.50/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 390,210.96979420,1.616820,-9.98564101 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 389,288.54212413,1.426259,-8.86054489 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 402,298.13782709,1.386682,-9.11854052 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 411,305.11014456,1.360393,-9.10326733 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,309.67550836,1.344115,-9.12337805 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,314.10672942,1.328955,-9.00951786 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,318.11504426,1.315704,-8.91637075 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 435,321.53590729,1.304737,-8.80010631 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 440,324.51253230,1.295430,-8.72397400 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,327.03147867,1.287715,-8.62556798 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.60/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 402,308.91795861,1.349477,-10.45161862 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 398,359.41595397,1.250295,-9.00576828 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 409,369.80521807,1.212767,-9.32651645 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 417,377.51897097,1.186778,-9.37531607 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 423,382.26843831,1.171478,-9.37622187 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 428,385.89902111,1.160130,-9.37240903 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,389.08381243,1.150413,-9.37536591 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 437,391.66084276,1.142716,-9.33629241 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 441,394.08144118,1.135611,-9.28853805 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 445,396.44354721,1.128788,-9.20776496 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.70/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 409,379.73855355,1.181536,-10.59175151 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 403,431.49766750,1.066629,-9.39662126 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 413,437.86043246,1.045810,-9.84542305 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 420,441.94398018,1.032963,-10.10983199 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,445.34354693,1.022618,-10.22620116 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,446.72686025,1.018512,-10.33589374 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 434,448.63351580,1.012939,-10.33644812 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,450.24758805,1.008311,-10.32639288 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,452.22142978,1.002730,-10.23943149 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 445,453.51749540,0.999115,-10.19681183 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.80/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 413,440.87707601,1.036802,-10.60484504 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 407,474.56583694,0.968128,-9.29286546 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 416,481.89531577,0.944914,-9.79903765 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 422,484.37108668,0.937374,-10.09277136 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 427,487.42205183,0.928329,-10.23029481 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 432,490.78413594,0.918593,-10.24574311 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,492.64228812,0.913312,-10.31716582 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,494.11115658,0.909196,-10.33212272 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,495.45492601,0.905476,-10.31930556 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,497.25580482,0.900558,-10.27599488 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T2.90/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 416,487.34624979,0.929213,-10.92467011 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 409,519.29742367,0.862572,-9.31830590 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,522.48693246,0.852751,-9.95808973 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,525.84693370,0.842781,-10.23537241 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 429,530.09651959,0.830471,-10.27816749 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,531.45298872,0.826630,-10.43646266 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,532.74245655,0.823031,-10.48886319 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 440,534.88312103,0.817135,-10.49456047 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 443,536.47743438,0.812802,-10.47004674 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,537.83574345,0.809152,-10.45028220 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.00/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,526.57613811,0.841168,-10.69714088 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 412,555.70134209,0.777416,-9.35954786 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 420,558.53559503,0.768950,-9.95844915 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,559.97668412,0.764758,-10.27980981 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,561.87060601,0.759367,-10.53035968 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 434,563.60581933,0.754525,-10.60224052 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 437,565.35019911,0.749725,-10.61281046 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 440,566.97233722,0.745315,-10.61269867 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 443,568.63131237,0.740848,-10.58663845 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,569.58964089,0.738294,-10.59577156 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.10/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 420,559.06677261,0.767453,-10.64816743 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 413,581.32828126,0.722224,-9.42766222 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 421,587.01052712,0.705328,-10.02397294 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,587.75227042,0.703206,-10.34948827 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 431,592.29525816,0.690406,-10.43704418 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 434,593.80234604,0.686241,-10.54677878 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,596.10776802,0.679966,-10.60298781 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 441,597.17979827,0.677087,-10.67700439 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 443,597.93603933,0.675075,-10.69784722 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,599.28415659,0.671517,-10.69724814 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.20/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 421,595.17509696,0.682927,-10.90710824 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 414,608.52700322,0.659287,-10.09312656 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 422,611.73053357,0.650021,-10.59403390 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 427,616.72985045,0.635807,-10.62966082 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 431,619.05314811,0.629352,-10.77854729 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 435,619.37696914,0.628467,-10.93375895 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,620.66629121,0.624985,-10.99955581 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 441,621.43640285,0.622930,-11.07712884 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,622.43444539,0.620290,-11.09795553 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,623.37690787,0.617821,-11.05485142 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.30/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 422,611.90997603,0.649537,-11.12261014 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 415,625.69245450,0.623874,-9.58730127 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 423,633.99106545,0.599657,-10.17501276 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 428,638.51419307,0.586857,-10.35857604 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 432,639.11503125,0.585194,-10.60430660 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 435,640.96384951,0.580160,-10.68611091 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 438,642.48942336,0.576064,-10.76322293 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 441,643.50696106,0.573362,-10.85108413 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,644.55731554,0.570601,-10.90315880 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 446,645.46506592,0.568235,-10.89514335 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.40/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 423,639.97204062,0.583510,-11.03624694 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 416,654.45341555,0.554052,-9.49687712 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,658.18915837,0.543319,-10.19602046 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 428,660.78664390,0.536057,-10.45052462 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 432,662.11452750,0.532434,-10.63489098 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,663.44704997,0.528838,-10.79761946 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,664.37697009,0.526357,-10.86609902 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 441,664.76443162,0.525332,-10.92805063 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,665.52791623,0.523336,-10.98596251 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,666.36213633,0.521174,-11.01147271 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.50/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,660.43921470,0.537322,-10.84121572 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 417,669.32991321,0.521801,-9.66419383 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,673.08582169,0.511107,-10.25019863 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 429,675.84369985,0.503406,-10.57580771 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,677.27446148,0.499516,-10.79162693 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,678.91004217,0.495131,-10.86190541 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,679.96069398,0.492346,-10.93260057 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,681.87926793,0.487311,-10.90199882 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,682.25823935,0.486326,-10.95460051 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,683.51144836,0.483093,-10.95869347 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.60/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 424,678.87226924,0.495592,-11.29727280 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,685.52124917,0.485209,-10.00920054 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,689.25935101,0.474538,-10.53122673 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 429,692.99842475,0.464200,-10.72534051 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,694.76706622,0.459398,-10.93525601 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,695.20758202,0.458218,-11.08177211 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,696.22575019,0.455519,-11.16461788 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,696.58360348,0.454578,-11.23176426 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,697.53061253,0.452121,-11.21991425 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,698.50495492,0.449609,-11.18359320 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.70/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,692.51444419,0.465871,-11.18706179 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 418,702.10737154,0.446598,-9.63712363 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,705.08057373,0.438222,-10.23562955 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,706.38189930,0.434635,-10.59407145 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 433,708.39057412,0.429210,-10.71641839 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 436,709.29349730,0.426793,-10.84224605 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,710.21491114,0.424355,-10.95160797 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,711.43610447,0.421170,-11.01209251 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,712.01205530,0.419680,-11.05643681 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,712.55379264,0.418285,-11.07931643 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.80/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 425,706.01827075,0.435734,-10.92983687 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 419,717.65477618,0.409746,-9.77926235 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,718.23886960,0.408054,-10.37542254 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,717.25233742,0.410818,-10.51709357 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 434,720.32581733,0.402547,-10.69335300 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 437,721.17696224,0.400286,-10.84691019 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 439,721.67143419,0.398988,-10.92625962 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,722.89870400,0.395790,-10.99097986 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,723.36407149,0.394588,-11.04307280 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,724.76499326,0.391003,-11.01826340 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T3.90/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,718.92046880,0.406241,-10.89436079 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 419,726.11546488,0.392459,-10.05820968 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,726.73180839,0.390510,-10.45334961 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 430,729.12412808,0.383974,-10.71582859 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 434,731.05244310,0.378792,-10.93510199 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 437,732.18437538,0.375793,-11.00648809 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 440,733.60672776,0.372060,-11.06790909 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 442,735.05398797,0.368307,-11.03608618 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 444,735.65199145,0.366767,-11.07925404 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 447,736.49424293,0.364616,-11.11985561 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L30/T4.00/alphamin0.00100/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 426,724.60364618,0.396089,-10.92468939 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/random_spins/L100/opt/alphamin0.00000/alphamax0.30000/Nsteps100000/delta0.00500/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 46,99.52931490,0.014712,-12.05787546 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/random_spins/L100/opt/alphamin0.00000/alphamax1.00000/Nsteps100000/delta0.00500/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 76,99.57444693,0.008277,-10.85470781 2 | -------------------------------------------------------------------------------- /tests/test_clustering/ground_truths/centers5k.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/test_clustering/ground_truths/centers5k.npy -------------------------------------------------------------------------------- /tests/test_clustering/ground_truths/nclusters5k.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sissa-data-science/DADApy/HEAD/tests/test_clustering/ground_truths/nclusters5k.npy -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 121,155.24805847,0.833625,-10.10112679 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 126,154.20380852,0.846305,-10.33111136 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 130,153.84812697,0.850372,-10.55626159 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 133,153.62325946,0.852788,-10.68890802 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 137,153.65664111,0.852443,-10.85100151 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 141,153.54568049,0.853534,-10.96180769 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 145,153.55992090,0.853395,-11.04768408 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.50/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 152,153.60221689,0.852999,-11.12818552 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 196,220.10679544,0.910894,-10.10831552 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 201,221.09001332,0.904238,-10.18040997 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 205,221.79113891,0.899662,-10.20066637 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 210,222.20533534,0.897050,-10.28127913 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 216,222.72766885,0.893857,-10.29183873 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.60/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 225,223.27579979,0.890632,-10.26175914 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 274,312.69420975,0.927441,-10.37088733 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 281,311.11322811,0.934893,-10.60074189 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 287,310.12133167,0.939390,-10.73101686 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 293,309.64606005,0.941478,-10.85559805 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 299,308.67579383,0.945632,-10.79166750 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 305,307.87775842,0.948963,-10.71471012 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 313,307.20678389,0.951690,-10.63680081 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.70/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 324,306.00462631,0.956419,-10.26732705 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 595,513.68657737,1.135107,-10.01059960 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 606,513.32067146,1.135846,-10.14009520 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 617,512.29394715,1.137887,-10.19086184 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T1.90/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 631,510.53129258,1.141313,-10.06936158 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1119,776.72048123,1.356220,-8.72188301 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1154,774.31265254,1.358813,-9.22941166 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1179,769.52294102,1.363861,-9.43757709 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1202,766.14892572,1.367316,-9.59844774 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1223,761.41780479,1.372039,-9.54733984 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1245,754.94909053,1.378376,-9.31144734 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1270,748.50289677,1.384562,-9.04579127 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1299,740.80948525,1.391794,-8.63014295 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.10/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1343,729.77185082,1.401922,-8.00081823 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1705,900.20405846,1.503727,-7.99142465 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1767,872.64528839,1.523553,-8.36840718 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1814,853.31903920,1.536988,-8.40277474 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1857,838.21545423,1.547195,-8.33325352 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1899,823.30699528,1.557031,-8.11658507 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1943,809.45964545,1.565967,-7.88421304 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1993,793.13093972,1.576271,-7.48290968 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2055,773.21600159,1.588552,-6.95667909 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.20/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2150,746.89037564,1.604358,-6.30619092 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1789,929.32422292,1.507800,-7.63861845 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1857,883.01842215,1.539475,-7.86881610 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1909,860.16575737,1.554562,-7.96396795 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1957,840.63777911,1.567114,-7.89012540 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2004,822.85902716,1.578270,-7.70989107 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2055,805.98212155,1.588621,-7.48927652 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2114,786.18269573,1.600479,-7.08629928 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2189,760.85604332,1.615289,-6.50225591 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.21/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2307,723.97506138,1.636261,-5.69377446 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1894,962.20760313,1.517261,-7.91701497 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 1968,920.39918098,1.544056,-8.04231787 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2025,886.81108136,1.564918,-7.83166868 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2077,859.87422344,1.581225,-7.56800322 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2130,835.63821170,1.595568,-7.29936430 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2185,813.43168068,1.608427,-7.01859184 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2249,790.00826521,1.621701,-6.67762577 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2332,763.19405440,1.636529,-6.24037224 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.22/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2465,727.46198459,1.655715,-5.61457943 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2003,830.69969804,1.615792,-7.88416362 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2089,818.19632850,1.623666,-8.37744540 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2155,804.96485654,1.631682,-8.51155831 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2217,791.45341408,1.639588,-8.40614464 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2278,778.92091456,1.646711,-8.22482005 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2346,764.11028971,1.654896,-7.83714072 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2426,746.05688647,1.664605,-7.28324945 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2534,720.43393672,1.677986,-6.49149505 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.23/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2725,677.21592783,1.699775,-5.37288040 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2134,871.20967550,1.615912,-7.74349166 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2233,843.18827900,1.632341,-8.04190328 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2312,817.76545184,1.646655,-7.94937564 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2387,795.65263266,1.658693,-7.69148970 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2464,772.38194203,1.671005,-7.28634080 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2551,746.93045689,1.684106,-6.79382946 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2658,716.36700580,1.699412,-6.18515446 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2811,677.45925346,1.718314,-5.47852351 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.24/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3119,614.42713658,1.747728,-4.42922950 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2304,873.76352152,1.640667,-7.60462849 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2422,840.08166450,1.659005,-7.81754648 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2520,810.84632011,1.674226,-7.64556296 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2617,781.47820832,1.688994,-7.24569862 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2723,748.03349704,1.705289,-6.64320058 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2847,710.38272013,1.723098,-5.99108804 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3012,665.40660405,1.743738,-5.30154434 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3269,605.12425846,1.770456,-4.46259648 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.25/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3783,511.73783979,1.810102,-3.35802180 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2516,835.81005142,1.682010,-7.41828362 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2673,785.89888796,1.707218,-7.36421037 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2808,742.81233883,1.728033,-6.96362023 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2944,704.51880362,1.745851,-6.50384965 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3098,667.16233145,1.762634,-6.03199204 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3288,624.66845101,1.781065,-5.42700411 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3544,571.57394195,1.803290,-4.68026120 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3896,503.46212376,1.830833,-3.83726443 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.26/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4376,429.58725617,1.859767,-3.16378862 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2783,830.91686034,1.710439,-7.05164063 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 2989,762.26482327,1.741995,-6.81628143 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3170,702.89589993,1.768088,-6.26856857 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3358,653.85127227,1.788864,-5.82916838 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3566,605.47114935,1.808668,-5.32634937 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3801,553.79888363,1.829198,-4.76311928 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4068,502.51318281,1.849062,-4.27419982 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4362,452.25352634,1.868110,-3.84533458 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.27/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4672,406.36295905,1.885210,-3.51305567 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3110,754.60922013,1.765946,-6.80495829 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3373,689.76019888,1.793734,-6.67107239 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3600,633.79291664,1.816579,-6.15356448 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3816,584.04531980,1.836254,-5.66337921 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4025,539.59375362,1.853456,-5.25649109 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4232,501.95394455,1.867768,-4.96403460 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4433,466.81154960,1.880968,-4.68301256 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4626,436.04480678,1.892462,-4.46980900 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.28/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4815,410.28766866,1.902055,-4.32906484 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3473,683.58191348,1.815262,-6.79153133 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3768,624.67507594,1.839532,-6.68710999 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3994,577.84650576,1.858156,-6.31864765 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4184,539.49954956,1.873196,-5.99280713 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4349,507.97302224,1.885522,-5.75221944 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4496,483.09744459,1.895271,-5.60516380 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4631,463.48244831,1.902986,-5.52306079 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4758,449.02722726,1.908681,-5.50417789 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.29/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4880,438.42152997,1.912847,-5.52255587 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 3808,654.02718281,1.849483,-6.71307412 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4075,595.02498427,1.873923,-6.77871837 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4257,560.27689685,1.888346,-6.75714979 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4400,537.26047337,1.897965,-6.75358719 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4522,524.09228323,1.903478,-6.83346433 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4630,517.19301768,1.906335,-6.94665915 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4729,513.65061241,1.907779,-7.06697242 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4822,512.90428485,1.908076,-7.18779901 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.30/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4911,514.65303647,1.907403,-7.28423640 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4066,641.48214166,1.881968,-6.70894588 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4283,611.47708619,1.895499,-7.18711764 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4425,597.87167791,1.901616,-7.47052165 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4536,595.61428273,1.902620,-7.69830482 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4630,600.03509466,1.900761,-7.86131155 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4713,607.14544583,1.897903,-7.93035497 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4789,617.46056670,1.893951,-7.84252094 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4861,629.21806173,1.889658,-7.66309902 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.31/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4931,641.52858551,1.885361,-7.46199272 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4235,662.71472634,1.906271,-6.92713402 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4410,680.67608788,1.897357,-7.44869901 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4525,701.67176859,1.888177,-7.65421573 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4616,723.96196521,1.879326,-7.68927833 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4692,743.65182251,1.872062,-7.65865431 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4761,764.12441063,1.864940,-7.53326176 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4825,783.40021384,1.858559,-7.39556978 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4884,801.09692043,1.852939,-7.25730696 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.32/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4942,819.10855031,1.847423,-7.09918103 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4350,719.79416392,1.911425,-6.96092692 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4498,771.40864583,1.885847,-7.40339686 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4596,818.97044286,1.866674,-7.45752916 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4673,854.67822651,1.853843,-7.43745692 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4738,886.14962047,1.843317,-7.35791570 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4796,914.98544171,1.834181,-7.24809823 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4850,941.82603961,1.826041,-7.12412151 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4901,966.29367009,1.818883,-7.00711410 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.33/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4951,989.87676435,1.812194,-6.88573673 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4436,915.85265043,1.858092,-6.92218982 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4563,992.40898883,1.829678,-7.33413344 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4647,1041.89426844,1.813381,-7.48170558 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4714,1084.34455444,1.800305,-7.48787688 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4771,1116.32037260,1.790908,-7.48861828 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4822,1143.67848547,1.783140,-7.45475864 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4869,1168.59791089,1.776262,-7.39528367 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4913,1189.85641127,1.770532,-7.34702445 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.34/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4956,1210.16589235,1.765169,-7.27744535 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4490,1191.50752565,1.785007,-7.08035743 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4603,1264.09024083,1.762516,-7.54271596 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4679,1303.01302603,1.751237,-7.78578083 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4740,1330.64376363,1.743537,-7.91557151 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4791,1352.77421974,1.737537,-7.98892919 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4838,1370.18301997,1.732923,-8.04186759 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4880,1385.10801475,1.729037,-8.07221293 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4921,1400.65747363,1.725055,-8.05282028 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.35/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4960,1414.18224625,1.721644,-8.02978205 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4533,1352.69907501,1.748817,-7.16835312 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4636,1418.25743797,1.729611,-7.66468810 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4706,1458.61483217,1.718416,-7.90011474 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4761,1485.60154896,1.711167,-8.05167412 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4808,1503.62745421,1.706435,-8.17443540 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4851,1521.28978890,1.701886,-8.23387376 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4890,1538.43276699,1.697543,-8.22562216 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4927,1552.84917793,1.693944,-8.22101629 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.36/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4964,1567.94828177,1.690223,-8.18280747 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4567,1442.57892457,1.732608,-7.16038459 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4663,1526.91705023,1.708530,-7.64105705 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4727,1574.91902674,1.695512,-7.86530113 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4778,1606.65722691,1.687169,-8.01070535 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4822,1635.04804478,1.679875,-8.06741435 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4862,1655.60313920,1.674690,-8.12496841 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4898,1672.44437836,1.670503,-8.16713514 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4933,1688.03347219,1.666681,-8.17893103 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.37/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4966,1701.50454020,1.663416,-8.18237916 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4598,1706.26660615,1.670355,-7.36523938 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4687,1745.80865535,1.659732,-7.93979244 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4747,1774.06144362,1.652377,-8.23852026 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4794,1792.25518446,1.647750,-8.43178748 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4835,1809.77091171,1.643369,-8.54678110 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4871,1825.56937571,1.639475,-8.60182488 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4905,1841.31297760,1.635643,-8.61788603 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4937,1854.80225567,1.632399,-8.62715450 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.38/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4968,1866.06922231,1.629717,-8.63120139 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4619,1770.47038859,1.659780,-7.39357585 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4703,1839.24181655,1.641466,-7.89633779 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4760,1873.83475627,1.632578,-8.16798920 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4805,1899.88526224,1.626031,-8.33143332 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4843,1916.19809879,1.622002,-8.46658593 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4878,1932.88963368,1.617936,-8.54606421 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4910,1950.21033823,1.613766,-8.56626324 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4941,1963.31860172,1.610645,-8.59727815 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.39/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4970,1974.88733012,1.607918,-8.61059420 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4639,1949.38533157,1.620526,-7.51503389 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4719,2002.33080126,1.606788,-8.05492770 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4773,2030.98760310,1.599575,-8.35039789 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4815,2053.27066175,1.594075,-8.52146388 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4852,2069.26561606,1.590188,-8.65746188 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4885,2080.54089300,1.587483,-8.77836328 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4915,2092.64599579,1.584608,-8.82882474 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4944,2105.94652064,1.581481,-8.83898438 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.40/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4972,2115.13197884,1.579340,-8.86952598 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4753,3077.97461748,1.389156,-7.83792562 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4807,3118.69737675,1.379579,-8.39599823 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4844,3140.59834788,1.374497,-8.69277183 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.20000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4873,3153.58965624,1.371521,-8.87658940 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.25000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4898,3156.64939270,1.370828,-9.02643731 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.30000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4920,3166.08850905,1.368702,-9.12590452 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.35000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4941,3176.38900936,1.366397,-9.20120782 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.40000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4961,3187.59842894,1.363902,-9.24484435 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.50/alphamin0.00000/alphamax0.45000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4980,3193.09990024,1.362685,-9.30963852 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.60/alphamin0.00000/alphamax0.05000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4801,3898.52374306,1.224076,-8.14502493 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.60/alphamin0.00000/alphamax0.10000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4845,3929.04210049,1.217139,-8.68550038 2 | -------------------------------------------------------------------------------- /examples/datasets/hamming/Ising2D/opt/L100/T2.60/alphamin0.00000/alphamax0.15000/Nsteps1000000/delta0.00050/seed1/opt.txt: -------------------------------------------------------------------------------- 1 | 4874,3958.78935402,1.210454,-8.94914349 2 | --------------------------------------------------------------------------------