diff --git a/scripts/scaling_fit.py b/scripts/scaling_fit.py index 7ef3b7d8a..5038d7331 100644 --- a/scripts/scaling_fit.py +++ b/scripts/scaling_fit.py @@ -307,7 +307,7 @@ def quantile_ci(arr): def write_csv(path, form, params, cis, qof_label, qof_value, failed): os.makedirs(os.path.dirname(os.path.abspath(path)) or ".", exist_ok=True) with open(path, "w", newline="") as f: - w = csv.writer(f) + w = csv.writer(f, lineterminator="\n") w.writerow(["parameter", "value", "ci_lo", "ci_hi"]) for name in params: lo, hi = cis.get(name, (float("nan"), float("nan"))) @@ -316,7 +316,7 @@ def write_csv(path, form, params, cis, qof_label, qof_value, failed): w.writerow(["failed_resamples", failed, "", ""]) -def make_plot(path, form, data, params, degree): +def make_plot(path, form, data, params, degree, ylabel): os.makedirs(os.path.dirname(os.path.abspath(path)) or ".", exist_ok=True) L = data["L"] if form == "data-collapse": @@ -330,10 +330,11 @@ def make_plot(path, form, data, params, degree): sel = L == Lval order = np.argsort(x[sel]) ax.plot(x[sel][order], yy[sel][order], "o-", label=f"L={Lval:g}") - ax.set_xlabel("L^(1/nu) (param - h_c)") - ax.set_ylabel("obs * L^(gamma_over_nu)") + ax.set_xlabel("L^(1/nu) (param - h_c)", fontsize=12) + ax.set_ylabel("obs * L^(gamma_over_nu)", fontsize=12) + ax.tick_params(axis="both", labelsize=12) ax.set_title("data collapse") - ax.legend(fontsize=7) + ax.legend(fontsize=10) else: y, err = data["obs"], data["err"] if form == "power-law": @@ -345,19 +346,32 @@ def make_plot(path, form, data, params, degree): names = [f"c{k}" for k in range(degree + 1)] model = full @ np.asarray([params[n] for n in names]) resid = (y - model) / err - fig, (ax0, ax1) = plt.subplots(1, 2, figsize=(9, 4)) + if form == "power-law": + fig, ax0 = plt.subplots(figsize=(5.5, 4.5)) + ax1 = None + else: + fig, (ax0, ax1) = plt.subplots(1, 2, figsize=(9, 4)) order = np.argsort(L) ax0.errorbar(L[order], y[order], yerr=err[order], fmt="o", label="data") ax0.plot(L[order], model[order], "-", label="fit") - ax0.set_xlabel("L") - ax0.set_ylabel("obs") + if form == "power-law": + ticks = np.unique(L[order]) + ax0.set_xscale("log", base=2) + ax0.set_yscale("log") + ax0.set_xticks(ticks) + ax0.set_xticklabels([f"{value:g}" for value in ticks]) + ax0.set_xlabel("L", fontsize=12) + ax0.set_ylabel(ylabel, fontsize=12) + ax0.tick_params(axis="both", labelsize=12) ax0.set_title(form) - ax0.legend(fontsize=8) - ax1.axhline(0.0, color="k", lw=0.8) - ax1.plot(L[order], resid[order], "o") - ax1.set_xlabel("L") - ax1.set_ylabel("(obs - model) / err") - ax1.set_title("normalized residuals") + ax0.legend(fontsize=10) + if ax1 is not None: + ax1.axhline(0.0, color="k", lw=0.8) + ax1.plot(L[order], resid[order], "o") + ax1.set_xlabel("L", fontsize=12) + ax1.set_ylabel("(obs - model) / err", fontsize=12) + ax1.tick_params(axis="both", labelsize=12) + ax1.set_title("normalized residuals") fig.tight_layout() fig.savefig(path, dpi=120) plt.close(fig) @@ -386,6 +400,7 @@ def build_parser(): p.add_argument("--size-col", default="L") p.add_argument("--obs-col", default="obs") p.add_argument("--err-col", default="err") + p.add_argument("--ylabel", default="obs", help="y-axis label for diagnostic plots") p.add_argument( "--param-col", default=None, help="parameter column (required for data-collapse)" ) @@ -426,7 +441,7 @@ def main(argv=None): qof_label = "collapse_residual" if args.form == "data-collapse" else "chi2_per_dof" write_csv(args.out_csv, args.form, params, cis, qof_label, qof, failed) - make_plot(args.out_png, args.form, data, params, args.degree) + make_plot(args.out_png, args.form, data, params, args.degree, args.ylabel) # Report: 2-3 lines, generic labels only. lines = [] diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/README.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/README.md" new file mode 100644 index 000000000..c3d9a8cbf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/README.md" @@ -0,0 +1,46 @@ +## Team + +| | | +|---|---| +| **Team name** | 薛定谔的套马杆 | +| **Members** | Gui-Xin Liu, ShangTech University; Hao-Yu Lu, Hong Kong University | + +## Challenge + +| Row | | +|---|---| +| **Challenge** | Can finite-size QMC of the normalized two-dimensional long-range Ising model distinguish whether long-range universality ends at σ*=7/4 or σ*=2, beyond conclusions that depend on a single correction fit? | +| **Catalog issue** | `Addresses #86` — “Where does long-range universality end? Three adversarial tests of the σ*=7/4 vs 2 dispute,” released by Kun Chen, Institute of Theoretical Physics, Chinese Academy of Sciences. | +| **Track** | `tracks/qmc/` — the team selected Track A, whose prescribed core calculation is classical Monte Carlo. | + +## Implementation + +The reproducible implementation is in [`long_range_ising_fk/`](long_range_ising_fk/): + +- Fukui–Todo/Poisson-event FK cluster Monte Carlo with wrapping observables; +- an independent factorized-Metropolis Clock implementation; +- locked power-law and marginal/log correction analyses; +- Slurm production jobs, tests, bilingual reports, and frozen raw-data escrow. + +The frozen base production contains 96/96 successful cells. The large-size +cutoff snapshot contains 36 completed cells with central data through +$L=2048$, and the independent Clock production contains 16/16 completed +cells. The defensible conclusion is that the finite-size behavior is +reproduced, while thermodynamic discrimination between +$\sigma_*=7/4$ and $\sigma_*=2$ remains inconclusive. + +## Run and inspect + +From the repository root: + +```bash +SOLUTION="tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk" +julia --project="$SOLUTION" "$SOLUTION/test/runtests.jl" +sbatch "$SOLUTION/jobs/production_20260727.sbatch" +``` + +- [English report](long_range_ising_fk/reports/track_a_report_en.md) +- [中文报告](long_range_ising_fk/reports/track_a_report_zh.md) +- [Locked base analysis](long_range_ising_fk/locked_analysis.md) +- [Locked extension analysis](long_range_ising_fk/locked_extension_analysis.md) +- [Frozen-data manifest](long_range_ising_fk/data_manifest.md) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/Project.toml" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/Project.toml" new file mode 100644 index 000000000..5e5f6b97e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/Project.toml" @@ -0,0 +1,6 @@ +name = "LongRangeIsingFK" +uuid = "c80ff6ef-b2af-47d4-b6ed-afdcf70f70af" +version = "0.1.0" + +[compat] +julia = "1.11" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/clock_crosscheck_protocol.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/clock_crosscheck_protocol.md" new file mode 100644 index 000000000..9a5cde64a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/clock_crosscheck_protocol.md" @@ -0,0 +1,36 @@ +# Clock Monte Carlo cross-check protocol + +Locked before the 16-cell production array. + +## Purpose and scope + +This is an implementation-independent thermodynamic cross-check of the +Fukui-Todo/FK production sampler. It compares `Qm` and +`chi = L^2 `. Clock local updates do not construct FK clusters and +therefore do not measure or validate `Rp`. + +## Correctness gates + +1. On a fixed `L=4` configuration, compare 200,000 one-spin proposals from + the clock sampler and an explicit factorized-Metropolis implementation. + Their acceptance probabilities must agree within six binomial standard + errors. +2. Require `sum_j J_ij = 4` to floating-point precision. +3. At `sigma=1.875`, run two seeds at `L=64,128` with 50,000 thermalization + and 300,000 measurement sweeps. Proceed only if both seeds are visibly + mixed and the combined `Qm` and `chi` agree with FK within three combined + standard errors. If block errors are unreliable, increase sampling rather + than weakening this gate. + +## Production grid + +- `sigma = 1.875, 2.0` +- `L = 64, 128, 256, 512` +- two independent seeds per point, 16 cells total +- thermalization sweeps by size: `50k, 100k, 200k, 300k` +- measurement sweeps: `1,000,000` per cell +- 50 raw blocks per cell + +The production analysis reports per-seed results, block errors, maximum +autocorrelation time, and standardized Clock-minus-FK differences. Failed +cells are rerun only with identical parameters and remain documented. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/clock_crosscheck.toml" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/clock_crosscheck.toml" new file mode 100644 index 000000000..c9fe162bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/clock_crosscheck.toml" @@ -0,0 +1,14 @@ +run = "clock_production_20260729" +algorithm = "clock_factorized_metropolis" +primary_run = "track_a_20260727" +sigmas = [1.875, 2.0] +sizes = [64, 128, 256, 512] +seeds_per_point = 2 +beta = [0.336985, 0.344439] +thermalization_sweeps = [50000, 100000, 200000, 300000] +measurement_sweeps = 1000000 +blocks = 50 +normalization = "sum_j J_ij = 4" +distance = "minimum-image square torus" +comparable_observables = ["Qm", "chi"] +excluded_observables = ["Rp"] diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_axes.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_axes.json" new file mode 100644 index 000000000..600eebf24 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_axes.json" @@ -0,0 +1,4 @@ +{ + "L": [64, 128, 256, 512, 1024, 2048, 4096], + "seed": [73001, 84002, 95003, 106004] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_provenance.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_provenance.json" new file mode 100644 index 000000000..7aa2ff646 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_provenance.json" @@ -0,0 +1,8 @@ +{ + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_settings.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_settings.json" new file mode 100644 index 000000000..f4da714de --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/nn_large_settings.json" @@ -0,0 +1,34 @@ +{ + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + } +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a.toml" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a.toml" new file mode 100644 index 000000000..35b35a6b5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a.toml" @@ -0,0 +1,14 @@ +issue = "QuantumBFS/quantum.harness#86" +track = "A" +algorithm = "Fukui-Todo Poisson-event FK" +sigmas = [1.75, 1.875, 2.0, 2.5] +critical_beta = [0.329136, 0.336985, 0.344439, 0.369446] +beta_offsets = [-0.002, 0.0, 0.002] +sizes = [64, 128, 256, 512] +seed_bases = [11001, 22002] +thermalization_sweeps = 10000 +measurement_sweeps = 100000 +blocks = 20 +normalization_sum_j = 4.0 +distance = "minimum-image Euclidean distance on square torus" +rp_definition = " - 2" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a_large.toml" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a_large.toml" new file mode 100644 index 000000000..05816dc5d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/config/track_a_large.toml" @@ -0,0 +1,19 @@ +parent_run = "track_a_20260727" +run = "track_a_large_20260728" +issue = "QuantumBFS/quantum.harness#86" +algorithm = "Fukui-Todo Poisson-event FK" +critical_sigmas = [1.75, 1.875, 2.0, 2.5] +critical_sizes = [768, 1024, 1536, 2048] +critical_beta = [0.329136, 0.336985, 0.344439, 0.369446] +crossing_sigmas = [1.875, 2.0] +crossing_sizes = [1024, 2048] +crossing_offsets = [-0.0005, 0.0005] +seed_bases = [31001, 42002] +thermalization_sweeps = 5000 +measurement_sweeps_L768 = 100000 +measurement_sweeps_L1024 = 75000 +measurement_sweeps_L1536 = 35000 +measurement_sweeps_L2048 = 20000 +memory_per_cell = "2G" +walltime_per_cell = "24:00:00" +raw_blocks = 20 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.md" new file mode 100644 index 000000000..2d6687d61 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.md" @@ -0,0 +1,72 @@ +# Frozen-data escrow manifest + +**Freeze date:** 2026-07-31 + +**Generation-code revision:** [`26234d49bddd6005398d35361ff98b5efbba6b88`](https://github.com/Luka3519/quantum.harness/commit/26234d49bddd6005398d35361ff98b5efbba6b88) + +**Integrity file:** [`data_manifest.sha256`](data_manifest.sha256) + +**Integrity-file SHA-256:** `fd550c16724a23a6b2e2b767bc06da486ac470023570c2312d35fa4793905806` + +The generation revision is the first committed snapshot of the code used for +the frozen runs. This submission only relocates that implementation into the +registered team directory and updates repository-relative job paths; it does +not alter the algorithms or frozen numerical values. + +## Published datasets + +| Dataset | Files | Bytes | SHA-256 tree digest | +|---|---:|---:|---| +| `track_a_20260727` | 489 | 158254 | `2b62aba4b833d677d62806f277bf409ed9740546fa026ee90bfed73393c2097b` | +| `track_a_large_20260728` | 212 | 60586 | `3d8be845faf51dd49b9a89e0081b2f799c55e99fe7c27f892811d8b3ac7778da` | +| `clock_production_20260729` | 82 | 47539 | `62adfbe29861a9b58fb919f1c141c449c2ab4710f9557356a3c3b68983648160` | +| `nn_large_20260730` | 115 | 224923 | `05d0f8b4ae576e185185a1495b40ad98d5aa2b18e06cab4935f7cc6780c96f48` | +| `nn_v3_20260730` | 48 | 111568 | `6ee4e59197eb759149f961d340df7708f485ed2d9d777570719d08a9cb56bdde` | +| `track_a_cutoff_analysis_20260730` | 4 | 18791 | `f6ea9fde0f546f9116da624f7c86209e366f499aaa2afd52e5908371e2b30dcb` | +| **Total** | **950** | **621661** | See the integrity-file hash above | + +A dataset tree digest is the SHA-256 of its sorted +`\n` records. The integrity file +contains all 950 records and uses paths relative to this solution directory. +From this directory, verify the escrow on a Unix-like system with: + +```bash +sha256sum -c data_manifest.sha256 +``` + +## Completeness and exclusions + +- `track_a_20260727` contains exactly 96 successful `summary.csv`, + `blocks.csv`, and `metadata.txt` cell triplets, plus frozen analysis and + scheduler logs. +- `track_a_large_20260728` is an honest cutoff snapshot with 36 successful + cell triplets. It has 30 central-$\beta_c$ cells and six partial-crossing + cells; the registered large-size crossing grid is incomplete and is not + extrapolated. +- `clock_production_20260729` contains exactly 16 successful cell triplets + and the frozen FK comparison tables. +- `nn_large_20260730` is a complete seven-size nearest-neighbor control + dataset with 28 cells: four seeds at each of + \(L=64,128,256,512,1024,2048,4096\). Every cell contains `summary.csv`, + `blocks.csv`, `metadata.txt`, and a deterministically repaired + `manifest.json`. Slurm reports the cells as failed only because the + Python 2.7 wrapper raised a text/byte error after the numerical files had + already been written. +- `nn_v3_20260730` is an independently added higher-statistics + nearest-neighbor snapshot with 16 completed cell triplets: eight seeds at + each of \(L=64,128\). Its registered \(L=256\) cells are not present in the + published snapshot. +- `track_a_cutoff_analysis_20260730` contains the combined central data, + competing-model fits, distinguishable-size forecast, and cutoff report. +- Local smoke tests, timing probes, superseded interim analyses, and incomplete + pre-production runs are intentionally excluded from the public escrow. + +Per-cell metadata records timestamps, host/runtime information, Slurm job and +array-cell identifiers, and validation values. Seeds, autocorrelation +estimates, convergence fields, and raw block observables are retained in the +corresponding summaries and block files. + +The cell-level escrow and locked-analysis records were created locally before +the cutoff analysis. Their public packaging occurs in this submission; the +original timestamps and the immutable generation revision are retained so +that an independent adjudicator can audit the chronology. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.sha256" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.sha256" new file mode 100644 index 000000000..bbab69746 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/data_manifest.sha256" @@ -0,0 +1,950 @@ +adbfc23062506297ea5145fe755d34f3aaad19d047dc805abb2ffe44717c3559 results/clock_production_20260729/cells/001/blocks.csv +8e6ec609c49ac49c336984b931e32d77daaed68c2263c08649f6ba2fdfaae5b2 results/clock_production_20260729/cells/001/metadata.txt +a696ddf0975d9f65d4820f2da9a9e84e755f2cb297a171a367df388710664b45 results/clock_production_20260729/cells/001/summary.csv +d1deea29a75a623e9e2d1fc0dbafca4ba6787127a83fe1aa355bd2688584848d results/clock_production_20260729/cells/002/blocks.csv +d951e5fecd4bb995e8087d0ee408b920061d2a24fc9a1fa1c835a6a6b067957f results/clock_production_20260729/cells/002/metadata.txt +b47f5709d735ccd92c6652820f514ad3783cd917d018860a7f545030028eef1c results/clock_production_20260729/cells/002/summary.csv +dbcf583a33a7ec301e4fb389257e94fd76fde1220e9eefdfcad55848067fdcfb results/clock_production_20260729/cells/003/blocks.csv +99e723bd9db1a2c2660ffcf21a9ba43849d78845adc6c62a36ab71ad6a4e66c8 results/clock_production_20260729/cells/003/metadata.txt +fda6935630ea2c4e52295a891239e9267dbf2d1c7c9593d176ee4da1797c2a20 results/clock_production_20260729/cells/003/summary.csv +a1cd95e890c4f288c553b26895e1931547d6a097274ca4aa1654e7c7dc13468b results/clock_production_20260729/cells/004/blocks.csv +77b487b178f066fb29d0eb0aead159296331cd6aa54824c52beae76d7e21fe0f results/clock_production_20260729/cells/004/metadata.txt +4f98dea7de01a6b9ab407987e65892bb29feb260dd9faf2dbc54dc75f7c05b5e results/clock_production_20260729/cells/004/summary.csv +1269a10e697f1964c8b4eff81a83d6e11e708637648fd3654580368c5280ede7 results/clock_production_20260729/cells/005/blocks.csv +ed6687272475a0c4493d8dda984174a56313c0ea45bba88a99a14044075e2319 results/clock_production_20260729/cells/005/metadata.txt +a9e4e32c9fa05377677229b6c67fa309fabf1d5040d813ceccca24f5b6f8d97e results/clock_production_20260729/cells/005/summary.csv +a522c9124b683cee85445c49652934d203618a34a66321eabfc5e977e0417b64 results/clock_production_20260729/cells/006/blocks.csv +8daab09a5e972619d15c505a87f6ddb5f8454c2bd88baf220a0b3e875a5a3f89 results/clock_production_20260729/cells/006/metadata.txt +c2886eb7860a74a87bf5fce87fde0ed5decd58cf2ce784004f95e61a98be5f6d results/clock_production_20260729/cells/006/summary.csv +9b2dca04943c14e13050287598e3e1e8274f07e15bf2d1b511ddd599dba362e7 results/clock_production_20260729/cells/007/blocks.csv +a26d5801f00cdbd508cb0241edc0c7dc83320a028df9c002b8bbfb1a685e36af results/clock_production_20260729/cells/007/metadata.txt +87d92b5d23c4e1e26bc9f1b6865bed573d49a369b5ab1173f792a8346761ffd8 results/clock_production_20260729/cells/007/summary.csv +e300a3a09c95f8e256b5e06ba4e83fd669f87b4ce9f5f615faaba8eed592ee20 results/clock_production_20260729/cells/008/blocks.csv +d411525e534dde97c96a64c70550ffa01dc74461b2a1873fbc547db61f86287a results/clock_production_20260729/cells/008/metadata.txt +84265ac3fc47994e565a72b1f6d41f1207beca93f492588ae4234a818071ed59 results/clock_production_20260729/cells/008/summary.csv +61e5dbe1358979bbab6692606853157a0bd8588bf026cbfd9f1b70292efd3753 results/clock_production_20260729/cells/009/blocks.csv +e3e50d6daff4901c0c593600257e88e52c394fa3caca5935048620107e5bfd54 results/clock_production_20260729/cells/009/metadata.txt +1a443c76f95ad63e5dc51836d402318debf4f8b808a938109410033def81e979 results/clock_production_20260729/cells/009/summary.csv +61bc1f4b754f585938bd2aa0b66eb43a41cbd96c431158529081a31d60cd87ab results/clock_production_20260729/cells/010/blocks.csv +4463873ad6fa45703085b50879e06c123fce78abeabb650546b44e558678dd7b results/clock_production_20260729/cells/010/metadata.txt +8b9d729b92f8461eb899f05b1f3e8a0e14231f100eec8c03da1cc5c30b2ddf0e results/clock_production_20260729/cells/010/summary.csv +6c9f17a63960a6166fc340a0bad38b5f0e274e9635907081c1538bf5d22fd953 results/clock_production_20260729/cells/011/blocks.csv +bad5fee5607d3a478c287356a94e0b483b39c367801397f092c4e315f2e9d51d results/clock_production_20260729/cells/011/metadata.txt +bcdb1f9bf7c42e249f7a54de95b8191427c7195987b1f0aa80522b595f52a8bd results/clock_production_20260729/cells/011/summary.csv +0af2bf5aef84edd074254b62cd26db1b179d2ed8791d2c1683e1e08055ccadd4 results/clock_production_20260729/cells/012/blocks.csv +320db7833b8723a748d01525588b7104ba8e5c5d83cb9b67da7a43b0b82346de results/clock_production_20260729/cells/012/metadata.txt +f60568031c1b227000f678c6536cffd5fb6c5dd0806ba80e1ed1e56cabaf0e72 results/clock_production_20260729/cells/012/summary.csv +8a71e096e4c5db40512493d348dbcde314af62088b28c91c43922685137db2e8 results/clock_production_20260729/cells/013/blocks.csv +df1c4b044503a0a4aed29d4af80f211cc1332b15b1057f2263941681a9860955 results/clock_production_20260729/cells/013/metadata.txt +59fc233d3b20f3c398be200524782863e9003ffd795ae9800831ac2ba6a2ef0a results/clock_production_20260729/cells/013/summary.csv +0080a49d67f5b438fd514f008b74b3979ef837ddc97621619cb66449bd9cd0ec results/clock_production_20260729/cells/014/blocks.csv +7d2e328c7787354b3bbe9b1351d88f2ae06c14a7151f2fc59ae1d2b3aef17442 results/clock_production_20260729/cells/014/metadata.txt +de28885609ad1fe434a1b696da834997698d61afd6565bd11af1c4e27d0edb4a results/clock_production_20260729/cells/014/summary.csv +88631107a6dee5db2d2c10338d7f985b72c33cea20c627efca117cf9aa7a664e results/clock_production_20260729/cells/015/blocks.csv +1048899d56bd09d891383c5b88dc9047a036b8055272ed1da88d87ade1ecbafc results/clock_production_20260729/cells/015/metadata.txt +857c475a6e194ff94ca62717acbf9ce8263a00ca2dada2e49dafa01bcee8947a results/clock_production_20260729/cells/015/summary.csv +785d1e3863d35f18bc17011eff68afb5780f2bfbc7d1766b5d5aa01606dc548d results/clock_production_20260729/cells/016/blocks.csv +eacd0ad7ac7c3f9ae2f096419dca995004eb01f559cd88c8162d6ee86ac74f87 results/clock_production_20260729/cells/016/metadata.txt +b3df0d1d455a581cf9dbf46fc018b501ac068146fc166532ef16f9a19a2af3e8 results/clock_production_20260729/cells/016/summary.csv +e597cf19d19c112be481c375621469de834ece54590a29a677030724b48a9a0b results/clock_production_20260729/comparison_cutoff.csv +5014fcfe7d50136489b2af35cccfcd9abcec8e7bb42978df4c4228c246626274 results/clock_production_20260729/comparison_interim.csv +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_1.err +f3d89d3921dc619a6f89996f80042736d4c9f0e170287ad54d98d0bd5d4532f7 results/clock_production_20260729/logs/22991082_1.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_10.err +b01434aba355d57a9196bf3f49e0b8e7230026980bf45536fe3714498b9e7559 results/clock_production_20260729/logs/22991082_10.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_11.err +8546160819c497e13a96064b6a832a1be69eb6a937fbaccbb51ba9a3eb0ebc6b results/clock_production_20260729/logs/22991082_11.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_12.err +222d1d858b84f51e8f7869fcc55fde97c826de1e54e9e146b76ae0b40d8cc925 results/clock_production_20260729/logs/22991082_12.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_13.err +01aa16e752f048774de9618778500e0e58f4af15679a22394f0578410506c0b9 results/clock_production_20260729/logs/22991082_13.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_14.err +578230569b2f9972d6b72da80eee08db783e80a12a68d4a0d68fd0892b6d1a3e results/clock_production_20260729/logs/22991082_14.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_15.err +64fa38e0b97f1b7720fd01c079081a1d756f3c3a06fd173affbf923e3e65f582 results/clock_production_20260729/logs/22991082_15.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_16.err +b8abaa4e5617cce0a572cc19218c48084eb31d6076f892b7e6d084ecdb01487c results/clock_production_20260729/logs/22991082_16.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_2.err +2894cda0a3f5d75b5acddd92c0bb33145cffb3b11ab94344df406b61c2df7d91 results/clock_production_20260729/logs/22991082_2.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_3.err +dfc6a583f1aefb89f2b8544ec593e0b3e3870966ae748c2862553646fd2707a3 results/clock_production_20260729/logs/22991082_3.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_4.err +afdd62f69f039ef14a85298785e7a6c7c49b06e60b1286eb2e2ffc49a002a3e1 results/clock_production_20260729/logs/22991082_4.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_5.err +7ae8555e93faeae9f7c5480790ad35d604494422e1e3e828056216eb49abfe62 results/clock_production_20260729/logs/22991082_5.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_6.err +088d97185067fdfb96377d4bbc8ee984b8b4d8f46dae0ee521acf20305e34285 results/clock_production_20260729/logs/22991082_6.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_7.err +07998b1d533e8401fca4807159fcbe467ff04c271a282ef87e0b5a4bd64e5b42 results/clock_production_20260729/logs/22991082_7.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_8.err +d64ebabca1b67faca465dee700e9294adeec0f33d9eb3a2b9c62b598de4434f9 results/clock_production_20260729/logs/22991082_8.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/clock_production_20260729/logs/22991082_9.err +31cf60e39640bd96df51603179e0aa0633603b9a13641c8675cfd959d690861c results/clock_production_20260729/logs/22991082_9.out +9263559df4f544446767b0943e411e39f4c4bcff49d507a104b9d564a0ef41b9 results/nn_large_20260730/README.md +45562126b47c53fbbc11200742a62d7ea7190f0c4319089473e8578eecf2d43a results/nn_large_20260730/cells/cell-0001/blocks.csv +39ffb0d66a9ab32ab4d66c280b65a557757f3fe867bcc999b2b63b0796abb4db results/nn_large_20260730/cells/cell-0001/manifest.json +74dd8915c2df9c6b707e5fe664542a1a14317b7af4c7cb9347be8fea5a313182 results/nn_large_20260730/cells/cell-0001/metadata.txt +e918d68f001bdc99d76e700aca259b36070cea45474de1e93e4d8a3981169bb1 results/nn_large_20260730/cells/cell-0001/summary.csv +4172eb585b8aebecf2bf0378f2ce13b1017e726252314b70395e6a5773a690f5 results/nn_large_20260730/cells/cell-0002/blocks.csv +c47f0477715d57362fa57026e7bc9299fa1413186f4fcc3ffac0f77997cceb77 results/nn_large_20260730/cells/cell-0002/manifest.json +d15a958823f2696e9c884904586dd3ed190752f9e366d8921039f2a1747bb31e results/nn_large_20260730/cells/cell-0002/metadata.txt +a718ac52b95707e2866926fd90aa25df16cfae9fe6976c60579bdd3a0d0abc8a results/nn_large_20260730/cells/cell-0002/summary.csv +de4efc5381de9051186759b83233b3e3e4166caad70595d17a980080622ba987 results/nn_large_20260730/cells/cell-0003/blocks.csv +663fc86b3305c1d776f2062e085dc431103a044caab70e8266b23343f1a8d354 results/nn_large_20260730/cells/cell-0003/manifest.json +815f096d41713b57b08524ad877a120e7c7ac00397349cb00e21776e5ee38217 results/nn_large_20260730/cells/cell-0003/metadata.txt +4a023e3db80c5b1697e14c0b4fa41193e31c2539121e94c49b381a6626bfaf33 results/nn_large_20260730/cells/cell-0003/summary.csv +50f60d19e683096084678bf52a73c6f5d58d9c10c564d272f048ac8db54a859e results/nn_large_20260730/cells/cell-0004/blocks.csv +abc0013a68b1a077220cd44faa9d810a16edcc8bda74d8287ae67915197e449e results/nn_large_20260730/cells/cell-0004/manifest.json +274187e535e68f0978a5bef4a0cd975bf343ae22532057361175ca2b6cef44b3 results/nn_large_20260730/cells/cell-0004/metadata.txt +d15555b3c3ae8315a3d0fa9cb877d18716685f500089b2e648c9d46a674bccdf results/nn_large_20260730/cells/cell-0004/summary.csv +4df250b41958b93826e807c105baef603ff44c88b2d36256af70454fdfa49758 results/nn_large_20260730/cells/cell-0005/blocks.csv +ded8cdf4cc81fd0f16d6c50af49d8b20c37d3ea4f3d00ae8ab8845c561a268e1 results/nn_large_20260730/cells/cell-0005/manifest.json +8c33c0de45174364351d3f7a5b720a5601f0fbf53783edbad49f6349d86f914d results/nn_large_20260730/cells/cell-0005/metadata.txt +0709774710bd2b658ae4c40850a944b788f3de9041766033fdbf36b0e9476fef results/nn_large_20260730/cells/cell-0005/summary.csv +af41af8fd55422dbb5ae82b82f68a5845a0e94cad101a9e83e746e9e7d313be0 results/nn_large_20260730/cells/cell-0006/blocks.csv +bf16d1bac5e3f3cac09b434692f1185014d2102609b30bc1ac46cf3a58bdd983 results/nn_large_20260730/cells/cell-0006/manifest.json +e12bf6f3ec50b3b611d5f1252fc22b564aa3f2ad1e79a9175ada23d0b1b6aa66 results/nn_large_20260730/cells/cell-0006/metadata.txt +aa9425561f9242f5f05be921f0129a471dcedd8d7bb272316c0c21a9d70ea13c results/nn_large_20260730/cells/cell-0006/summary.csv +ae1a7c5a40a904ecce7736986ea84ae6d89db037409d1e6de71518f28c8c3b37 results/nn_large_20260730/cells/cell-0007/blocks.csv +adaa3bd094ed12abe4684d6afe10721833a3108a355b82e537cff42acd6a0ebd results/nn_large_20260730/cells/cell-0007/manifest.json +1f3fc9a4f3ebe68465073e8d80f9a1c2bc0c9fd4c16de98a30f42c64ba484871 results/nn_large_20260730/cells/cell-0007/metadata.txt +92d5f2516b452e094d16a9dc23b9fadffbf363be0dd67b655300d6807f3481e5 results/nn_large_20260730/cells/cell-0007/summary.csv +f9877192794a4df3137659afa9a846ce04381cdeaf33f404734c9e4bbcf569e4 results/nn_large_20260730/cells/cell-0008/blocks.csv +76ad698b1ac14daa0e0096ab8af62e23e2f4ee819f3fcfb42888919e3befb933 results/nn_large_20260730/cells/cell-0008/manifest.json +26b159f9212f6ed26661a02f7c947036f986fadbfadfa43da198caf8682126d5 results/nn_large_20260730/cells/cell-0008/metadata.txt +f1b13a79fcfe6aa19b39575243f7d76c71f865fe6572e0a302d13e52b41051a8 results/nn_large_20260730/cells/cell-0008/summary.csv +937c9b26223d5b751a15f2e7e38f1928f5f42dbe5fc68b3b808947ada101bcbf results/nn_large_20260730/cells/cell-0009/blocks.csv +79248d078bef637f9a77d82d23c9816da01eb884690d328b6342c697070a0488 results/nn_large_20260730/cells/cell-0009/manifest.json +d96457ddd0c6de60eae18a24eac839ae73dafcd09dd204c4c2e0d2d27499ac7b results/nn_large_20260730/cells/cell-0009/metadata.txt +be27ab85daa78c6e8caf3a52c6d02e7ec72bc4f938defeb4be4075fdd7c4d74e results/nn_large_20260730/cells/cell-0009/summary.csv +bb1c9aa3a86febbd3dea8b6e1b0c4845ba90819c193ad93f5149711114b6a1d1 results/nn_large_20260730/cells/cell-0010/blocks.csv +c9ceb962b7627f0304f590c33382c512a3c5f565664b4992358fe5baa835e52f results/nn_large_20260730/cells/cell-0010/manifest.json +1833feda7ca0a7f38a7033c0460eec42d8963144e75b75307899c70a982bb9e5 results/nn_large_20260730/cells/cell-0010/metadata.txt +6b6cd99c17b89e456eea0b4b768e768f406bfa629eaef85603961d01176197a9 results/nn_large_20260730/cells/cell-0010/summary.csv +ed494f0f0e40275ed961201939cecf21154ee9fc0639fae82f5a5dbebbff6176 results/nn_large_20260730/cells/cell-0011/blocks.csv +eddfd546091d40009e0225d56931656ac54bc706578f9dad60692852059525ea results/nn_large_20260730/cells/cell-0011/manifest.json +65407540946794a046aa59523581607c25d56b24a913c217bfa1569ce1659523 results/nn_large_20260730/cells/cell-0011/metadata.txt +1b4b44046a6243df3019ee22bcbf831720eb94dc3d87a515156e6f699d6a9c51 results/nn_large_20260730/cells/cell-0011/summary.csv +632a5bdb0bdb03d2b554b9899fd4f1b31da765e56d8483f805bfb89838b0529d results/nn_large_20260730/cells/cell-0012/blocks.csv +6b0b2a5566c6a24470e96c9b0328869e90d9226a55738f6a1069f8921ed8f2c0 results/nn_large_20260730/cells/cell-0012/manifest.json +c4f3233fae36ab9a3d5c671216c0e3fcf82326b92a21d47fd4111a1f43a0ba7d results/nn_large_20260730/cells/cell-0012/metadata.txt +fc137f0391f94abb3e0c9e9a2e44acab953be0256fca42c7e37932a4b3dafb98 results/nn_large_20260730/cells/cell-0012/summary.csv +43f541f1477157118b31275e0b4fc55b450759abb892b0ee173185aa619aa43a results/nn_large_20260730/cells/cell-0013/blocks.csv +befab8440a09d7db88eed9606abffe140d2aed15c25ac397f9ca60bb32a487d2 results/nn_large_20260730/cells/cell-0013/manifest.json +73837beadf257388de4a5c33d693d79517566d1d3ae61943935acdbf7955ad4e results/nn_large_20260730/cells/cell-0013/metadata.txt +27f31135e29fdf17cfa6912f8ac9369aa644e3807b3469bbd9788f7d149006a3 results/nn_large_20260730/cells/cell-0013/summary.csv +2db2fa9a412bc87947a7aeed22301ce5e4818d58c099e0f03cf8db73cb6067a6 results/nn_large_20260730/cells/cell-0014/blocks.csv +30aea17b04bc29282d6cebcebf6c12476daa47060ba7f3aed0762bf274534852 results/nn_large_20260730/cells/cell-0014/manifest.json +4c339084b62ac973cc7ce8dd3a2a1a86aa7153971227f5f7df90a9dcf4e9a6dc results/nn_large_20260730/cells/cell-0014/metadata.txt +31bc914196c28e9391acb5e9279932c6e33e24405d2ade94ab5456fd569f42c4 results/nn_large_20260730/cells/cell-0014/summary.csv +3f889becab4a8b9e138f3343080a1a67f3a6111a63c412a6c22dad4f1e6b7807 results/nn_large_20260730/cells/cell-0015/blocks.csv +778a68c98201de68e8ace49b80cfdcb53dab14b6528fb2918b377318dc090377 results/nn_large_20260730/cells/cell-0015/manifest.json +11dc640fb8c6b2ed4cc8d8e219bbb486bd312e9d878d221e124e266bf3284f0b results/nn_large_20260730/cells/cell-0015/metadata.txt +27054c917fc09f03e55daad0533df96c88952a1bb71beb463771f76966a3bf03 results/nn_large_20260730/cells/cell-0015/summary.csv +cdf6e840d0021c5be1b402ed062e452e92aeedb8663b7b03d38b45dd15a23a56 results/nn_large_20260730/cells/cell-0016/blocks.csv +ad5539fd93123425e7759cb0152bae5b0bdec5e743a1e1f3b23fdd783d0c827e results/nn_large_20260730/cells/cell-0016/manifest.json +5c8c4f46078601f1a8022c8e5a24e9a89bf587c7f307b8a87053d932cd7f7802 results/nn_large_20260730/cells/cell-0016/metadata.txt +d3de2f3d8f1d10764c680da326f683f3dadc6ee60b1ae49d7caf8f5a11edfafc results/nn_large_20260730/cells/cell-0016/summary.csv +f0f540dff82a3080ea31b40207ce0991eb0b7d44566a3bebff14ef0061686acc results/nn_large_20260730/cells/cell-0017/blocks.csv +53a6f91b8aefba0024f03ee7d04ce1ec687783418ed1ee3d516dfd25a4816723 results/nn_large_20260730/cells/cell-0017/manifest.json +f9b44c756c10ff93d783a36d0101bbd39102cd96a5afd7681c7ac873a36ccf87 results/nn_large_20260730/cells/cell-0017/metadata.txt +e2a1c0853382b4b8a1e27a0e50f8260ecf500267a6f808509435b88de64429c4 results/nn_large_20260730/cells/cell-0017/summary.csv +d26321047729a40f718bdf6f903a3d3d5d4307519d51e9772d05e7cdc3703ee7 results/nn_large_20260730/cells/cell-0018/blocks.csv +87612fc9714c82d38e92c21c78634cdfa4f8f0f4ce71fe29b31c51fb4e5e8762 results/nn_large_20260730/cells/cell-0018/manifest.json +437d292bcfb6573fcd9d4ae23e1f42cfc7f244658621c8e27130c7559de91e2a results/nn_large_20260730/cells/cell-0018/metadata.txt +1605c708e4a8a91c4533e05780fbf61450b343e5fc2cb30857367e10b08ee731 results/nn_large_20260730/cells/cell-0018/summary.csv +ea9e06cdb1621336c5302fe3fb0ff7ad1a25bc77461d971d8660ebfc7d7e6b48 results/nn_large_20260730/cells/cell-0019/blocks.csv +1b51432b7b040bcd94b0857285e45f4d261ff1dafb2b02886b132fba0bedc863 results/nn_large_20260730/cells/cell-0019/manifest.json +90d21aeed3612721ad24a225d9acd4c1e934cd5b94bbcf210ef860c740294f98 results/nn_large_20260730/cells/cell-0019/metadata.txt +66ece6114c5adcb82590a62005df5d486e1b678937329ed07fcaa700861907e7 results/nn_large_20260730/cells/cell-0019/summary.csv +b8a46bcf31b4cf31718b96b513686e50135ae382c304a95a5a62d030a1e4596d results/nn_large_20260730/cells/cell-0020/blocks.csv +613b949bb8d3549e52ffd0b56387c8e30eb5c03ab78640ebb918414e24adef27 results/nn_large_20260730/cells/cell-0020/manifest.json +b1ba47ad7cc16db8cdce814c346f2e94bb6790bc929e9518cc651a0198133c7b results/nn_large_20260730/cells/cell-0020/metadata.txt +1fd0df5a0d8ff28b26530479a2af45d4eba5d4b68c185e9dcc802bab0b0e7398 results/nn_large_20260730/cells/cell-0020/summary.csv +bc4875aca27f3457c8015353e0eadea72391bc25c2a7138353474c075a19e366 results/nn_large_20260730/cells/cell-0021/blocks.csv +eb66ff57d245d5b383e27b9fdd973690b551feaca8d0843c7fc12f364ddc0deb results/nn_large_20260730/cells/cell-0021/manifest.json +4e45c2a3c0bd8849ed1273e86588c808c418c045bd0a191527ce95a1e949876d results/nn_large_20260730/cells/cell-0021/metadata.txt +6f20ba8e044b47191fe27f37a478647f8b01230d5f59e7d4724095c55e2acee1 results/nn_large_20260730/cells/cell-0021/summary.csv +c1fd57469e411df83f0f9ee1e6354b24432b2ee816e8c05c4c696817a08b959c results/nn_large_20260730/cells/cell-0022/blocks.csv +63df746e776dffb3d2ea355ff48e4fd06cc50dcd6eef8e5cae185466fe8d1856 results/nn_large_20260730/cells/cell-0022/manifest.json +28b2a261f9a490848a3a98888a635cf7e06ae6cdecb5de3b35c28d52188561ab results/nn_large_20260730/cells/cell-0022/metadata.txt +ae566fc141456eacbc111f15bf094987e7fc86bdab1f542a6dcef4a3335575b2 results/nn_large_20260730/cells/cell-0022/summary.csv +81550447ce616f03d4346c3b55ab367c5ca314c25eb9176365f141a3d6dc4a1b results/nn_large_20260730/cells/cell-0023/blocks.csv +97336ab33312d05cbf0178a488121d0355b281148f41af9a714b3e33d8fa408b results/nn_large_20260730/cells/cell-0023/manifest.json +8d92cf31a7c12b22b0e88e6bb3413d43e50d9a5f695ea9f21f4bce26da7dd4a4 results/nn_large_20260730/cells/cell-0023/metadata.txt +c45156a31af488a8f01e73ef57d29393c8737253a28ad6b53520721b8b45354c results/nn_large_20260730/cells/cell-0023/summary.csv +1b09edc017a7ff0bb88144cde377e4268c010d7c97ddc19f23c61e7aef171e47 results/nn_large_20260730/cells/cell-0024/blocks.csv +469f4747d0d482d4fe83cc86a5f5a1ac928d1f3a279dbc5b2d3f3504d8a8347c results/nn_large_20260730/cells/cell-0024/manifest.json +8a8e08d1e23028abf7db7417912b655b95e99856b35ba910bd5c176227d84063 results/nn_large_20260730/cells/cell-0024/metadata.txt +0b8ef4e183c1fc78ca3e639ca2b662f9f1432635d76ded72ebeafbe133a7d60b results/nn_large_20260730/cells/cell-0024/summary.csv +121ba0e92e54542952f174b0f07f36062fd74c48f647270c98e8f808749f6947 results/nn_large_20260730/cells/cell-0025/blocks.csv +8ef2acd5a81abb4d4ed707a8df8f4485c1f8d78f58f71e073f84197a24bee5ac results/nn_large_20260730/cells/cell-0025/manifest.json +fec495a8e60f5a2ddc271dfaeeee17cfb22f3ebf552d1a56da3c57008dd15896 results/nn_large_20260730/cells/cell-0025/metadata.txt +e0336501c49e7f40f44d4b26f499044bc0736fb1b2cf171272b3ce3e5f175c35 results/nn_large_20260730/cells/cell-0025/summary.csv +6fa0d1accbf4e7f55ad5063d301d101a9472c8155e1aca3275af9f1386354319 results/nn_large_20260730/cells/cell-0026/blocks.csv +acb5ce5f8f3c7efc7fff540a96c73141c8a1056a61c4117257b9d1a2144471eb results/nn_large_20260730/cells/cell-0026/manifest.json +edaacafa4843c35c3265f6251c3fffb3dbb81e72fff42773172c666e029c21cb results/nn_large_20260730/cells/cell-0026/metadata.txt +7fce03f14ad919e2b6d8f2b21234359779eebc76bd9ba45fdbfa3f2addc0437b results/nn_large_20260730/cells/cell-0026/summary.csv +405126b7e39d510ab1d628cc2c5eebe933a5a6ea08a280697f14ea2ccbebbd7e results/nn_large_20260730/cells/cell-0027/blocks.csv +3e61c71440f4b300da21e5d28d804abb5de9d18d747a7f29b21a2e27c0f571ef results/nn_large_20260730/cells/cell-0027/manifest.json +4d4b182cb24b4b787caa9dbd6d66f8c6a1aeae0c95c4ac85f19b4329b09b7de1 results/nn_large_20260730/cells/cell-0027/metadata.txt +59f59008ce5817e8becc41c5d55f40d55a6ce2f89cf991884191ae299b1d7fab results/nn_large_20260730/cells/cell-0027/summary.csv +09cfaf9ac7ad3d0fa699d8ac679ff9716d427eed84cd18ea6590e8d992620388 results/nn_large_20260730/cells/cell-0028/blocks.csv +bfc9382341cf982e704fe6b3a95de0a7cf2946fdbdeb6ed23942a727d755c3dc results/nn_large_20260730/cells/cell-0028/manifest.json +cb399f56c58fae34ee8742a6536829e70caf54e7552f4d938559f3528960a051 results/nn_large_20260730/cells/cell-0028/metadata.txt +e062c6706a165c6385ee9547da8cce4758e79ede575e120cad219aef8f61cfd6 results/nn_large_20260730/cells/cell-0028/summary.csv +6e65670f225e2da377eb762d66fc73a137c30df18ce828cafeeb23b0466b5786 results/nn_large_20260730/parameter-scan.plan.json +d79301f2a330014fd659be57b2105cd99d9b8c326da52b1a5b5195ce466d1892 results/nn_large_20260730/run_spec.json +7755684e242e12b897a2aca33a6dfd7b366fdeeb1e29c8cb097ebac6df25694d results/nn_v3_20260730/cells/001/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/001/metadata.txt +67fcb19ac555806c03b7e428a3ceba0b00347ce44178d69da90cb5d26fb671eb results/nn_v3_20260730/cells/001/summary.csv +6c8c852fdefc0957550eef6cd1758858c7a43078f8bff2c8f5a3f8f5d3163b68 results/nn_v3_20260730/cells/002/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/002/metadata.txt +644913bae43da8406d03bc2b8f498a54462b1f2baee83a5fc89510963e95d3ae results/nn_v3_20260730/cells/002/summary.csv +8f2238edbdb5e9c5cd3ca09927d8092e305049c1126fbc018ee12e9f0833af40 results/nn_v3_20260730/cells/003/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/003/metadata.txt +2cc8dfee7d6611055df9dd0d818bb003c899a0abfd419a6dd59581f6601b2fcb results/nn_v3_20260730/cells/003/summary.csv +e79c74588397aab47afd94d893022fa79a8d3997764ad269f488548a65f0fe22 results/nn_v3_20260730/cells/004/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/004/metadata.txt +1db195b9b23df928800cb83214059b07e7180f1e166d4a0c299cba8d61380c69 results/nn_v3_20260730/cells/004/summary.csv +52e5c52585374150b1edb5f554584f144a8da205b11ba335e3720ddf115be217 results/nn_v3_20260730/cells/005/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/005/metadata.txt +3eec63f18b7e23cdfd30f7ba8f8ad4d4eae1d5fe5a06c4a86f2a5fa2a2dffe27 results/nn_v3_20260730/cells/005/summary.csv +f4b6887e8fb126410c14c99e3bb7f391476695dc506683093763f497162efdba results/nn_v3_20260730/cells/006/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/006/metadata.txt +19c2077803d62813a3f54c7164fee6872ceb2160407efbfe527cac8e89ddcd45 results/nn_v3_20260730/cells/006/summary.csv +53b534173b741109f03a148099c1372e0f3d4fbcfce6b5b96aed38697abb7b59 results/nn_v3_20260730/cells/007/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/007/metadata.txt +4e73ca252f32536baf1a169d658135beaf368534e50d6f0ba713e1ca3bbe1552 results/nn_v3_20260730/cells/007/summary.csv +b86854b14ad01655bccf19ea3b59c8c75c571f9a151acc2a8734c23d70748736 results/nn_v3_20260730/cells/008/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/008/metadata.txt +a546a51cd79c856d2dc04d70255d8253939580f24dd6a1e1668ae7a7c08a6778 results/nn_v3_20260730/cells/008/summary.csv +edb6351b53110243339d216d2a465ded716a98df2aff4b06e60c8b0c1fa1ad1d results/nn_v3_20260730/cells/009/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/009/metadata.txt +4b2ea8093444f89bb8b67d3ea648984d70d2c3dd6932a385ae0d7d40706da546 results/nn_v3_20260730/cells/009/summary.csv +531229bb67eee1286639e43c972938df36b651c69f14af334a9d54d44906b84a results/nn_v3_20260730/cells/010/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/010/metadata.txt +0c3fe414a7205c9cdb4b5c393b3c0279688b5d5d194071cb6f66e15b70e293b4 results/nn_v3_20260730/cells/010/summary.csv +a2f59ad4b14940eee1c8dfb4d4b6c0daad2c492cec717f5170ece2b2a925796c results/nn_v3_20260730/cells/011/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/011/metadata.txt +42dd9114c16b8ecbf08baf2f4a7172ee7534ae9a711429d575fb77157f59b2ab results/nn_v3_20260730/cells/011/summary.csv +64c3239a8e75c474dd0cfdb94032715218e914bfc9f96db7d8d86f9b302cec9c results/nn_v3_20260730/cells/012/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/012/metadata.txt +ece45a75c7800c357bc09107a6cd238f49698fd7422339c3a1e785612e7a5d27 results/nn_v3_20260730/cells/012/summary.csv +c1c8ca331126743cc1fa03e64b6e6f0cdf04b3a265c69025cc91b8b72bd559bd results/nn_v3_20260730/cells/013/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/013/metadata.txt +1883311bd2a6fab476f9042888ca0c706c8a8eaaa45b0852d124640616d1f90d results/nn_v3_20260730/cells/013/summary.csv +7540ae98abce5bc81fd15c14a6ba097c50113e016ba2e4ad96d91b2a23c98f23 results/nn_v3_20260730/cells/014/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/014/metadata.txt +e8f4af19d416782a5cec712c3deadf2742058377ef432ed40bd226b764bebd41 results/nn_v3_20260730/cells/014/summary.csv +22101f63ea606fd0264578b35db120937e462e9c70474fbbafceddf9dde106a2 results/nn_v3_20260730/cells/015/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/015/metadata.txt +6adf34f92f1df59fb2b2bb9ef96bf6d83d191b7891667bc2b65535671f769728 results/nn_v3_20260730/cells/015/summary.csv +6bb922790d6ce22db5c1f2062679f17d27c8c93135d33988aa434e188ecfe7b0 results/nn_v3_20260730/cells/016/blocks.csv +eeb8eb0b228ad9853ae8a88130f9375b8dc0aed711e3fdcd94e9bc9cd88e974a results/nn_v3_20260730/cells/016/metadata.txt +a227bda862adfb93636e1b5989510f9ac980e7a45ecd6025d73dc793e90edc62 results/nn_v3_20260730/cells/016/summary.csv +79075966159d84d72732319b355f0747796ff14d3e7a1967ab0b5b26b0749ae4 results/track_a_20260727/analysis/aggregated.csv +aad74d2bbfb7f308ee5c779e0d1aac96f8e00b2192012249765ba83553058ae6 results/track_a_20260727/analysis/critical_finite_size.svg +fafb3d0a18877bf12212ef12bebe04200a8940b794f5c13d2560629844da63f4 results/track_a_20260727/analysis/crossings.csv +6d858f978218c5e4520c01c996c4bbfb026e9fe704bb9c0aae5d24b48807ea90 results/track_a_20260727/analysis/eta_fits.csv +982704908782b72a8f2df0827b139d723e6dce95cdff58703e1d83222eff84cf results/track_a_20260727/analysis/final_report.md +4cfe6a704b81dd73ec40c18a0c13d8539f30e58b28eba1a267aa6dfd5f4d0292 results/track_a_20260727/analysis/finite_size_fits.csv +4361fb32f9c9c08cc58b5a463a71518ee61e5f1b1b2fb68d7a7a2c5ae5b90688 results/track_a_20260727/analysis_partial/aggregated_partial.csv +a07aa848076a8ae0638155b47a4945a782762cecedaf2f3a0a468e26712e447d results/track_a_20260727/analysis_partial/crossings_partial.csv +3e4f12a356a911edd094ed27d5eea801a578460ac64b673f857819b1f563c7b0 results/track_a_20260727/analysis_partial/partial_report.md +95479613c59ea7965e3352afd18b2a8509512d0fa2ec56d790c2ee99292308df results/track_a_20260727/cells/001/blocks.csv +3d510c9159fdc91b83d87dcec999bccaa5be3af03e3fef9d07beb9ad73a9d16d results/track_a_20260727/cells/001/metadata.txt +da4ae8512c4f182da57bcf6bdf50617552c424b3638adcaa91c9faac84a09e41 results/track_a_20260727/cells/001/summary.csv +c45b05f5fab6b0b8716706883904c8ffb3eb52a6715a58a2dd32d640d6a6f325 results/track_a_20260727/cells/002/blocks.csv +2d3e41c25cc0e0404f211bebb11d1f8e0b49453739eba5ab3940e1865ad48eec results/track_a_20260727/cells/002/metadata.txt +e0709d36184c5494fb070926b18ce4c019c888acb7ec10ac441f24f34f0bc6a9 results/track_a_20260727/cells/002/summary.csv +1b3b8c3f102903f01850441b721fb96bf0c08fc20cb29cfd7a1843936f5c02ae results/track_a_20260727/cells/003/blocks.csv +5808b8128b0f06266d6cd95f281fb4fe30d416ba1c50ffbd46994761a6eab439 results/track_a_20260727/cells/003/metadata.txt +f03c82868e63ebefa57ea65ef1e2a5a3f6d5ac9b2e071a2b7121dc8403399509 results/track_a_20260727/cells/003/summary.csv +13fc818594a23aaa8b734636c391b647e2542a013258a975445d12a4bfc6337f results/track_a_20260727/cells/004/blocks.csv +6fa4859163ea13188b5ffd8e0224d3e3870ed12a8974eb19c4f05a0509bf94f2 results/track_a_20260727/cells/004/metadata.txt +9e59a1a44241a16d024038477fbe6e0f117112be6e9705baa1922e3f08dfc4a7 results/track_a_20260727/cells/004/summary.csv +989d9aa59c4d4f3b471464d25c3b4ada2b0c7b0cbd19e448b45327460fe35e0e results/track_a_20260727/cells/005/blocks.csv +804e97e78ffc416efec75b720f0a972f8387d079c6e85dae317c412cbd8b2967 results/track_a_20260727/cells/005/metadata.txt +408a467db6178d360c45f613d8963ece66b9d1c42eb8fbeebb812dfe3a95ff35 results/track_a_20260727/cells/005/summary.csv +4d68d4b588475800335d24cf5dcdad1c464a8ba7a612478d36d43858dc5e1ec7 results/track_a_20260727/cells/006/blocks.csv +c32f9ec3f139a1ea39783f20de8b70da6edfb7e1c45ba33cfdbb0ecaa7eed95d results/track_a_20260727/cells/006/metadata.txt +244cbeb9dcd0e087c1521a10c0c257deb5f76ec30a5c944221bda43c8448ee5b results/track_a_20260727/cells/006/summary.csv +a35d5c7230943517c5afac49b5174eac5e5b6cfe2710a50ea53829f94338d5c7 results/track_a_20260727/cells/007/blocks.csv +5a0ba6b4a93567ad55884d0081c4b649c74f2322e69164f445b84ab1f18ca449 results/track_a_20260727/cells/007/metadata.txt +1efbdbccffd4844a8938683f2b44b4d9a45028a8fe4061ef214eda2be205f505 results/track_a_20260727/cells/007/summary.csv +def8489d3ebc734b358b713abe5680eb4c48c46505c48a1369e88a962cf6d0ca results/track_a_20260727/cells/008/blocks.csv +317f69a171f0e9d30f02e856f71fc1286ebda7ede74eb652ed4a169fe5ce431f results/track_a_20260727/cells/008/metadata.txt +5b26fb346adf1b0fb2fa8b574e2709177231f7fe87bfe8ecbbf3109bec25c3c6 results/track_a_20260727/cells/008/summary.csv +f123b62181a22077a12fc0092b554d38e2ca9fa2a390b77e3e4e838d067d07a9 results/track_a_20260727/cells/009/blocks.csv +65eb7b9dd2a98fa3a98186a015cd41576588183eda5db8ae4153bf7ea0411205 results/track_a_20260727/cells/009/metadata.txt +8ea061f4ece1b72a8063a9b8831cb96badfc3742f5cc9beb21401ce57b4cbd5f results/track_a_20260727/cells/009/summary.csv +61270c93d6ac6681d3f5a5e16ffb4cf2f1cee71a4942d9fcca818ccaa380f5ef results/track_a_20260727/cells/010/blocks.csv +312794de02ae5c01434e7a474ae1b702d4c4b33400ffeba7baf1adb9794e90cd results/track_a_20260727/cells/010/metadata.txt +0aa1c129cf9aa91039eb98782a234d1f71e7656e93ad4644bae8de36eeda1196 results/track_a_20260727/cells/010/summary.csv +39e2974537e9580cb082991080e35d3fc317986ba39dda3c17a195cdcedf3b15 results/track_a_20260727/cells/011/blocks.csv +e5eaf6d495ebfd35cc7478c2e09c158846019e058e3490dcd11be8e688322f7d results/track_a_20260727/cells/011/metadata.txt +9881fcdabab3de041c5fa4041c7507a3a37cad4a4deefd1740e0385a046f4a14 results/track_a_20260727/cells/011/summary.csv +7c5bee7409f69283193fede6b26b1077f4f6015922b6db800cdac21c2572bc89 results/track_a_20260727/cells/012/blocks.csv +c35214e3cdb352c6125112da43708cc0bdd437b72ab783dcce4c1d6caecfe454 results/track_a_20260727/cells/012/metadata.txt +50ce2594f0b0b00340bc4b34d1c8ced257ad39e03bf119cd9eb7221b06483638 results/track_a_20260727/cells/012/summary.csv +75788c3925f0f20ba3ecbabf885f08d0a176c7257dfa44d0f76091875f1ff99c results/track_a_20260727/cells/013/blocks.csv +8ea221c0252970d71715a0e6de8a048547a91f6032378dff5870be82329c14b6 results/track_a_20260727/cells/013/metadata.txt +83d8130a5fd2d08725984ad05d38a8f34ccb5b247d964853246f183517d3746a results/track_a_20260727/cells/013/summary.csv +6505db1628fb1d3ffd74fb7d0a86d7e16e5bf8a83937ecb44a539a23ea7e991a results/track_a_20260727/cells/014/blocks.csv +f8aa2899f9d98d0ebd2781371dc490d19d2dc4f61c5927830c9f977669d4fdb9 results/track_a_20260727/cells/014/metadata.txt +2676bc695d2b38b42824953fa26cb64e2d5c268e3052af285d864aeadbf82fad results/track_a_20260727/cells/014/summary.csv +299fe2c67ad335fc9cb84b4108c9ddd53897465ed476aae249ca487b44ea7d0d results/track_a_20260727/cells/015/blocks.csv +1ae2f11fa065e54dc54467bce9babe5dc52a32f695edae988c0bbe11ecda23cf results/track_a_20260727/cells/015/metadata.txt +4e9e48a1971bcfb554e6a3c326f6db668ac4999673e8b121ab2df3de7e497241 results/track_a_20260727/cells/015/summary.csv +96b2de9bb94780cb806bc52dfbffab8ca5d9a5600ee86799464b3920abbe0f6b results/track_a_20260727/cells/016/blocks.csv +820b10b498f023c6693c427eeeb639a71612b5e38cee973f7e57ba0b3b8a7ee4 results/track_a_20260727/cells/016/metadata.txt +6b9c6d46df4ff3dac05a544fae527b6c5ef8736f585102c356dd91cf16493829 results/track_a_20260727/cells/016/summary.csv +aaa6955f2fe2f1e1e1c018c7cbed18f377b53fd63e6c7052d396d8db0c1b26d2 results/track_a_20260727/cells/017/blocks.csv +1610712b1249c221fddc7dc8aa459de9bd4639dc398904a88cdb49788b26bd2f results/track_a_20260727/cells/017/metadata.txt +f08650c4d25e593170695a3d8b853ebd29028472116dba1747ef3d9e4d1a3ba8 results/track_a_20260727/cells/017/summary.csv +f1363d843f33e36b213f4fba71fa655161b7311dd1f0f38e901d5188cb184b12 results/track_a_20260727/cells/018/blocks.csv +56c9002b50e946b5200bd31bbf1096da1d24a1868c15b1810d0aa8bcdae12eaa results/track_a_20260727/cells/018/metadata.txt +fc31f709bf1068478adebd584de423ba7b06fe90b4f17cec10d416a7bf986f07 results/track_a_20260727/cells/018/summary.csv +b248c86d7d4f55e578b0d4cb14f95aa27c80bbcb32aa65d8c290b448e757db80 results/track_a_20260727/cells/019/blocks.csv +6b0b6a5d8ba87264768d4dde9fc7bac953932ea38649219977eb10ef5f82599a results/track_a_20260727/cells/019/metadata.txt +0b89b90a3d3a33c018bf71b6cc2f3029129787dad591088a8c712536e32149ba results/track_a_20260727/cells/019/summary.csv +41040679f9dd201bb4684aec2c548276ba9604692dcab7d15a58dad230dc6eeb results/track_a_20260727/cells/020/blocks.csv +25b34ce4377b9966a9d6f34d20926fb6fd2f67441508f9277ba19c69850dbf01 results/track_a_20260727/cells/020/metadata.txt +1f8af02762df9856cde41d813cb969e4822785bca09b53761c7cf0aa8c34ae4a results/track_a_20260727/cells/020/summary.csv +727c298059e690849038670d08416862a34b112f96152334388a7e6ded0effca results/track_a_20260727/cells/021/blocks.csv +389ff2fd141bdcad91667559cfadfa83c077da33f1544db383e78eb34cd1975b results/track_a_20260727/cells/021/metadata.txt +2c1eeb4542d5f04eb5b96dafb6e0e5b2225f6188bcd036bfcc6443ab83ddafc1 results/track_a_20260727/cells/021/summary.csv +96d301b43418e3081fd254f5d057fc9574c06a2ef6975bc4480241156af1577c results/track_a_20260727/cells/022/blocks.csv +9283afa89aaa9c9f4976aee1498bcb06054ed45ec70b531aff1f2daa7d17069c results/track_a_20260727/cells/022/metadata.txt +86591fea50fdd1631e6e6f4407bcba968da941bf37e0cc5974d075b8dfaaecb5 results/track_a_20260727/cells/022/summary.csv +1241b206467a31a36939895b0588d5cd3fa5a972ef96ab094b121c0de7b3dd83 results/track_a_20260727/cells/023/blocks.csv +b0da80864f514e11b0a62682032561dbf9ecbfaf31036247b449ccc41cbca2bf results/track_a_20260727/cells/023/metadata.txt +add6795809d0599970e56912c90321afe0d5b536d586464a50cefb10bd92a72d results/track_a_20260727/cells/023/summary.csv +6feedaa3f631114d9f362fb9fab3567136d734984534480ab91ce12b8472edaf results/track_a_20260727/cells/024/blocks.csv +8cd91c7b121b020f4bd63cbc4a5c242252e90dcbe19c4f8bbaa57a74513b32f8 results/track_a_20260727/cells/024/metadata.txt +1b3e1917770d02a15b4787caf3054600dc52e6ce4450d3e00ec2737f24695489 results/track_a_20260727/cells/024/summary.csv +d10d5ff0e1c0565636e10b0a4d5f25fbfba64716ad2e312d44c8eeef1221d603 results/track_a_20260727/cells/025/blocks.csv +d5ec7e73c948f343849d5bf4ea886179ff2f85baed91dadc8153dba809801d57 results/track_a_20260727/cells/025/metadata.txt +b1530567b6b59a7d2e933321e74eea5838f38aaf8496cc76421be17c10fb22ab results/track_a_20260727/cells/025/summary.csv +faef5fd4aa615ed090f58673f86a31d161125819055db370f5683abf3cc3ef84 results/track_a_20260727/cells/026/blocks.csv +9e94e6f8a190bd85efbc01f5b78174f65eaf3d0c645b23d1c1322041871d6df4 results/track_a_20260727/cells/026/metadata.txt +65a1b9082b4eb6d9ecb91e60cc19c8bc7d8f08781d5b38f179f977d6d72b7c3d results/track_a_20260727/cells/026/summary.csv +2c92ae019af05e29d8e3e2fd6725c70107ca8d5c1980d9ff1c3bf6952029d320 results/track_a_20260727/cells/027/blocks.csv +88a3f041f8cd5de6f375ddca3d95f0bb9fdf404573682ee6dcceaed999153a72 results/track_a_20260727/cells/027/metadata.txt +8ba9b78700f5a9312737cca2f8353ad3bcf1376eaa2b027e4f59e1c9207b2267 results/track_a_20260727/cells/027/summary.csv +d1c0021ab8419ddb63b0940ce07abb430d3ea17b14b0f220fc778eac702acb2c results/track_a_20260727/cells/028/blocks.csv +c56f8a82287563ad8ae0e9d88ac43dc2eb0c4df99afe1eb632b06717e8d42c5f results/track_a_20260727/cells/028/metadata.txt +1f07b0bd31a31652799810be18bc8740cf9235af8fe7a18cc408df8d7efd70dc results/track_a_20260727/cells/028/summary.csv +161e55bda4479344e3e8594ad8fb83123caffd3696d7af33671f517ad676bbf2 results/track_a_20260727/cells/029/blocks.csv +d3fb55a788d53aa8c108346a3ab670b36a00a7de2a64377cf729aa3b86140781 results/track_a_20260727/cells/029/metadata.txt +a9291ee9081e9087c9cbd0e00e858c8f100a491d091029a041fef22d502ca082 results/track_a_20260727/cells/029/summary.csv +a09472d491a5aa7f66a0e379eba86bc96537aefaaeb600719a5ed9382346d30c results/track_a_20260727/cells/030/blocks.csv +7d0c2363e53826b287e7c3d89fc3f35b897386da2e5bce629ba53494174de747 results/track_a_20260727/cells/030/metadata.txt +177c3782d59894f01cdc1f9a72604ed191c87675742a25e51253a12d10aeb8e2 results/track_a_20260727/cells/030/summary.csv +5dbc95c22d6788f12c5829acc1aea42f6af16e33043b24a7242f9141c5377822 results/track_a_20260727/cells/031/blocks.csv +da589fca4a21cfb90268cce18ccf57e300a7e112cf87290e58a3a39952842f0e results/track_a_20260727/cells/031/metadata.txt +652e10097b5829cfe78cab782a9b1c0de065fac5a535bd2cea7ae368937d4462 results/track_a_20260727/cells/031/summary.csv +2fac2e7b072138a5a984a1c7deb0299f16de8ba1c3226847d50490014250b5cc results/track_a_20260727/cells/032/blocks.csv +b79b882ca2d1d35cd329f92c2d28327d4cec4da30012dcbc42e04427bb9ca7f5 results/track_a_20260727/cells/032/metadata.txt +5a6969d92614231b6762c7fb3d584644a69d1e6a8cb22f186765e4ae2e4ace07 results/track_a_20260727/cells/032/summary.csv +5a59f2fe4701700c502e6a84f1f8e4ef9a9294c995817868fa421f3859e5b8e2 results/track_a_20260727/cells/033/blocks.csv +7099f1b08fae5e1e61aa54cc52c0adec1619d4943605c46e773b70a7629a2d0a results/track_a_20260727/cells/033/metadata.txt +0d36da5be897d3e80b7ad02292781f81da80adef5f4480e43ed96ae0d22b3a28 results/track_a_20260727/cells/033/summary.csv +dad8516f91420adf9de785d5656ca87f80cc562d763adc4c51cb23c760798320 results/track_a_20260727/cells/034/blocks.csv +7baa0b27fb77825d6fb98b5d48220c966bcfd754ce2fffa98dab1eaa9f888019 results/track_a_20260727/cells/034/metadata.txt +44ec43ea0cb425d3e6ef235acc1df2ef7dd4cdc755d713c629886820943c3b59 results/track_a_20260727/cells/034/summary.csv +844e5083c3a2901f99e19b0e9a8dda9a640a17c3faaf92a0b6ffa417b78672e8 results/track_a_20260727/cells/035/blocks.csv +818e6f89f318d317a64f141144a6afc641397c5eaa9a63a24d0891e8d68ce14d results/track_a_20260727/cells/035/metadata.txt +27772c0ade87d4982dd48f7ad103a3388217b6a10bb86595227329a36997a4c8 results/track_a_20260727/cells/035/summary.csv +ab63fdd5470843f5b26f7639eeed6405976dc6aacca42199499543237a7d0f6b results/track_a_20260727/cells/036/blocks.csv +22998606fd7f83585b306803d2a2f8d7de7aef95868fd13dfb658d6649c5e9ef results/track_a_20260727/cells/036/metadata.txt +1674ba633aafb62203956b062a593652854bfc909f97319695b4d026f245af60 results/track_a_20260727/cells/036/summary.csv +4bcf923edfe6bb00fb76734e4df5971d486b7d9429300df972bde27ed286dbff results/track_a_20260727/cells/037/blocks.csv +4a576fa71b604927568d8dab831438830488ab9c5a4d9d2eb9356324b851b09c results/track_a_20260727/cells/037/metadata.txt +c8bd3eb23b1eea3a2731820ae7f49be290a0d8e934c90ac6990958f87bd42025 results/track_a_20260727/cells/037/summary.csv +2e913d0caa95007270f1f8468d22a88bc1747ea2f45b8860c0a3b6f08535362d results/track_a_20260727/cells/038/blocks.csv +f3553a383a7fec75dc94b16942b0d95eee4d4c24ccac48e625fecfd195fb093d results/track_a_20260727/cells/038/metadata.txt +70ee0426d41cf790398abda1732369f85c4b3bab0c97dba873800f83781390f0 results/track_a_20260727/cells/038/summary.csv +4719375685a51583fde97adf8fe92033b819ad2ee621db7b2c29d864ca8941d5 results/track_a_20260727/cells/039/blocks.csv +ca377604d6bc86cfadd322106fdd05de4c0b92f991a2562f9eec6cd280bde0ef results/track_a_20260727/cells/039/metadata.txt +4d7d9f38cdc2923a7cddbc0cda9bb6d6e4817e435c64551805ccde5892e491d3 results/track_a_20260727/cells/039/summary.csv +ff2fc289d99092525524eee7b9732dd07f280d05e40adab4c66cbea49e1b4e99 results/track_a_20260727/cells/040/blocks.csv +5579129b2c60a94642004a1abb038778eec47ed9e09d4b9db4b191535276a74d results/track_a_20260727/cells/040/metadata.txt +40ebf3f8fb4932d9d91e2af3ed176829124362e12b9a36f770334c0648a8735a results/track_a_20260727/cells/040/summary.csv +66afae0a11bee49b1e0b5da051f9bd5f602b8cd0efe165d23bf3f61825d432d9 results/track_a_20260727/cells/041/blocks.csv +994872fd192670e18a89351b0c9c54ac0961eb8f34d10b509e2afb3a23d95716 results/track_a_20260727/cells/041/metadata.txt +4c9abbbea2b936f0da0aa4c25da9c893c7ff012ca4b280c6cb76855b22885ac4 results/track_a_20260727/cells/041/summary.csv +db1588ce7d77b6be9366db74c83e5a0e8fbcdf835de35e757ae790476703bf04 results/track_a_20260727/cells/042/blocks.csv +79103a4c3a904d20114bad8eedc3d5849b0e162f04918889ce8fbb33b8281d9e results/track_a_20260727/cells/042/metadata.txt +b578aaa2f988c5ef36db2f31c7a55237969206ba9d4bd0f8d2e2cbc939bcbf09 results/track_a_20260727/cells/042/summary.csv +3a99cfa8f4b0a1a1a82310e22829c0698d9df6e99377b973c6598e70c5190446 results/track_a_20260727/cells/043/blocks.csv +b7304c2473db18301d0dca4743559e58e4fa8f13bf43c803645c0b2981fbc899 results/track_a_20260727/cells/043/metadata.txt +91a425dc26946873c35589c5560cd5ac251f30c6cd709244db85d4824d45819d results/track_a_20260727/cells/043/summary.csv +818e603afd73c0317e0035e38d6c7679a500d5b9df08300ff3ffdd2dec6be4b0 results/track_a_20260727/cells/044/blocks.csv +f1c2c8fee8183ead797ea1e34d5dc1533d9515f85b8bdf80dfe4b56692b5eed0 results/track_a_20260727/cells/044/metadata.txt +99a23ba1bc0c975baf901b02cf9748efdc7a02e1081a7cc48c9bb2f2909db537 results/track_a_20260727/cells/044/summary.csv +a00ad33d5bacf64c275c3054b7bf5e7cc4a9c7f99a223094bd0df4dbe4972090 results/track_a_20260727/cells/045/blocks.csv +c643adce626421943917bca4dd4688dd25b166db95968cd60a08e639673a321b results/track_a_20260727/cells/045/metadata.txt +ec598cac47540553ab221f109e91d75100b295d860bcae5e47d9d9bc361b87f1 results/track_a_20260727/cells/045/summary.csv +d763208d535ae20083241f0e49ca958efb6438275c991c8161aa6c06cbc1a070 results/track_a_20260727/cells/046/blocks.csv +ab38e37c3092f98ae5bbfbf2dd399c1a4e934a8a1017e39518b2454577fb81ef results/track_a_20260727/cells/046/metadata.txt +15d5e6e12f8eb2858a0d0d8d08441949530e2c6c79b3d7bb0f3134dd40a567db results/track_a_20260727/cells/046/summary.csv +dcc7679113ecf4830434135ac04d83d4ebbf05104e71f367fa5821999b158916 results/track_a_20260727/cells/047/blocks.csv +920c9af991fd9d55179c342185093a267768cf16f81d2c1bde7919f3d496d371 results/track_a_20260727/cells/047/metadata.txt +63a31304c83d060aa73a6b66f22dbfc562ab631e9fe8a3f5cf7ca1e791bb1267 results/track_a_20260727/cells/047/summary.csv +a6b56cec6f57ee8d7274a0250c5dc5e38bcb92bc7488ad4bed63a5ff01f92834 results/track_a_20260727/cells/048/blocks.csv +eec74cc324d24023bea44104183c48498097efc238d79e9b1ae769d795e9c492 results/track_a_20260727/cells/048/metadata.txt +6b46d2bd0cce94f7c5617fd9e31d26872b8df595624b5cc849aa1642363e2e30 results/track_a_20260727/cells/048/summary.csv +d1ebbd577f1f0cf779ef84117afbf30572d32ae6ca3ea480b627a50037d69985 results/track_a_20260727/cells/049/blocks.csv +46d1068a8e40ea77f3e04820112f96f2ada14c7489ecd5f70bea4a3363b0b1d1 results/track_a_20260727/cells/049/metadata.txt +84c74ca2210d6833e49d27244f9c5916301b032c0289a4b3102747a26032576d results/track_a_20260727/cells/049/summary.csv +0db4d22fca00198672cb43b6c47a5e7ccecfbc5ffa877a180fb5298d69c51f62 results/track_a_20260727/cells/050/blocks.csv +2d3318f04788f466a8cf86f61c98ff1f2a11e08305f88bdf29824c0a52ae3e58 results/track_a_20260727/cells/050/metadata.txt +6b27b98e0d731748fdb08ec280e3cc88bc67c6e8593dd14d78416b2b6887fe6f results/track_a_20260727/cells/050/summary.csv +1c6907525163d54d0694396a068bb5c08ce11ce7df40978738ccd2c4e889378f results/track_a_20260727/cells/051/blocks.csv +fd1d891abfc2d398015192c5697591d39cd4674334565cbe496d0176ee721b3a results/track_a_20260727/cells/051/metadata.txt +bc5b87a0a4f458a265cf50e9e557293ecb17a9e2c6d02fccb155cc59dec0b6f4 results/track_a_20260727/cells/051/summary.csv +ada8068c8fc84117ec370be0a33423bf9652baf9c3e6bc1a515df14c7bec52ff results/track_a_20260727/cells/052/blocks.csv +34129962c93e11cc4564782d8d8e27080befb3fe98a58355037a6b2aabf5864f results/track_a_20260727/cells/052/metadata.txt +c06bdb9588926439d2629cc602ff8b535a26a772ee4b64d9aa826266964bf8f8 results/track_a_20260727/cells/052/summary.csv +fbedcda43132d9fa02311656191c07f9f56d509bf2ea9a17ec5c1259efc31636 results/track_a_20260727/cells/053/blocks.csv +e5db9bd56710e18c55eb6e226b9af27db173b847351988b490e79dc078198ffa results/track_a_20260727/cells/053/metadata.txt +e6e1b70cbde114c98f97e0ff5756007511b7d2159460374b2fb489803f746ff3 results/track_a_20260727/cells/053/summary.csv +40c4b940ef5b4ee24ae63fb3c413d5b58f09a7a7c748c634ba4603713adefca5 results/track_a_20260727/cells/054/blocks.csv +6a761f430f4533bac96a2da7ccc593b6718ae632e052a49939c18b0e975e149f results/track_a_20260727/cells/054/metadata.txt +f9ed6dfb98e13a4454af1f67916d51b09a7b6ccae89f4f952cf7ed7c8052160c results/track_a_20260727/cells/054/summary.csv +779d316a368e5644c8f103fa6897bb0ec154a6bfad2b82277bccfe072818ac4a results/track_a_20260727/cells/055/blocks.csv +16928109317a9f24a68c048128a5198c44dffd9ac81326e49ee73298632feb1d results/track_a_20260727/cells/055/metadata.txt +f7a76635b302398c4bba5977f29724ff3de2e35d44fb082762b5d27529160433 results/track_a_20260727/cells/055/summary.csv +b68ea776cf25d7638647294a826e2d150391cce7143ba902b92d21a601698ecb results/track_a_20260727/cells/056/blocks.csv +d31a3537f78a9191c91a78d6997c605a81ec665568ef77113153e13358db6733 results/track_a_20260727/cells/056/metadata.txt +93b8b72663afeba641a9a65b3e4089c6edcb9503b9aae30b1702f61c34c23f1b results/track_a_20260727/cells/056/summary.csv +ae24bcec8c59b0286c72210fc2993b66c5667af8acbaeb10dfed8112ccaed9a4 results/track_a_20260727/cells/057/blocks.csv +6592c456b36126164a9910a79481a4c214ae020ef04ade55d70a843660fd87ef results/track_a_20260727/cells/057/metadata.txt +fc06af79eda3a22ee8b16d6d150605112ff6af909280f640f933c1ce95a12bb3 results/track_a_20260727/cells/057/summary.csv +bf92e313b0c2027485f301d444ae67467e798adb5fdffedea089f0f67dfc577c results/track_a_20260727/cells/058/blocks.csv +66efcfece2a217538ac129a25deda1ddc052d55432c19bc5a0e186754ec78904 results/track_a_20260727/cells/058/metadata.txt +d0f9a9f6572ba21e89221b3cb597b38d0ce263fe32fa071998ecf7b915e696c0 results/track_a_20260727/cells/058/summary.csv +fee0497ec6780fbc5b108592c2144bd870b52797496db675eb4af1d1fd69a14a results/track_a_20260727/cells/059/blocks.csv +e74ff976cc6aa57b6204ff70d2f1522b4bc1104c4ecaf96e97fa9762fa97ba47 results/track_a_20260727/cells/059/metadata.txt +20aa6b559590031c565825dc9dfa4c020a46150dce61725de6edf58aba79ae99 results/track_a_20260727/cells/059/summary.csv +c5ffcdf57f450d6e11f1234b145e052cf3a5bb3eb4a675ce7e08732126acfcc7 results/track_a_20260727/cells/060/blocks.csv +51ed65b1f48278530bf8cd200fbc466675d302984a93ce5470d6a1b9475bd8b1 results/track_a_20260727/cells/060/metadata.txt +7c7af4dbb8cca05dc49ddf3a5f397333afbbc797ee9064e34430092407749b91 results/track_a_20260727/cells/060/summary.csv +09411024655e6ff51c2cd81d892cf296f922cee8236cb5d978deadc5a4609320 results/track_a_20260727/cells/061/blocks.csv +727805ac06d736391eeb97bae22249c68f281a7512a9030855905decc3f58a25 results/track_a_20260727/cells/061/metadata.txt +de3c749ea001e0ea31f13d8f391b75b09f37cf936c79871c1d5cfe088c76faec results/track_a_20260727/cells/061/summary.csv +aa90b43e6c7dcba1c79b7268cb8fd25b64040982cfea5b12609d4086eb31ca48 results/track_a_20260727/cells/062/blocks.csv +24e9c08ccb3a2f1f42be9664732e57ed77433813f9f484820aeb4abc2f2f8f2d results/track_a_20260727/cells/062/metadata.txt +2955e92ae81484bb83fa890c5b687c1fc4975f8296151666ce9513291a980b75 results/track_a_20260727/cells/062/summary.csv +d8a03e97e90a245719d705e4f6f756377685d578d579b59a6c17f11a1e3fe2ff results/track_a_20260727/cells/063/blocks.csv +6a75c51e3ce61b6fd2c89aad16bac57cd9e04ff80d0274f79fe9a19026465d43 results/track_a_20260727/cells/063/metadata.txt +eef66769a5e98f7d1bb6ae33307672b0180118b73031c26ddf75095706b6daff results/track_a_20260727/cells/063/summary.csv +e8809a287dba8776996923ec7a290cf751ad267b802f11f58b8077df99bf4d20 results/track_a_20260727/cells/064/blocks.csv +f3f3bdd8fb3cb65cce7267d58494036f032c52ce5414eda0d80f343f85476cf1 results/track_a_20260727/cells/064/metadata.txt +e60e5121df8ec557f59240f2a96468ce3c86e5d0ee09599a179e783a2044826b results/track_a_20260727/cells/064/summary.csv +84c905ae9e3457e177905cc5530a85ec197b3eaf6319f784c31aae3f4e54150f results/track_a_20260727/cells/065/blocks.csv +d121fc23d3f1e7c9eda6f310585349cb23ce9dbe5be484381c30a032710e6644 results/track_a_20260727/cells/065/metadata.txt +67ed4febb654598216153b3bf850e303d322ad93e53efefb31144d63b2ab5b16 results/track_a_20260727/cells/065/summary.csv +bc374b3849336c57d5f0b6ad7550ddd208a006c491e02876bfaf6281bab4db8e results/track_a_20260727/cells/066/blocks.csv +94ce70e3560485521434b46ee5a55f0e901576db26a1a4ad7a1e086f771c4e7d results/track_a_20260727/cells/066/metadata.txt +ce790c109eabeadb8fd94f993510b6ffd490608e4f5ca86396a099733ac90532 results/track_a_20260727/cells/066/summary.csv +31c7df8b759c8dbb3c5e25234c0c329c6871682aec809eaf6efdc18a22be5bbe results/track_a_20260727/cells/067/blocks.csv +b9d834189be41b3a04926c03a359bf3a27d1997b8a89f505e30998535f4d9b32 results/track_a_20260727/cells/067/metadata.txt +61256d6b303ce2b78aa88b8fe65273abf963f85d5b605de45e2574c18aea1e06 results/track_a_20260727/cells/067/summary.csv +366506e094dcea2c49cdabf1bc252d21039fc99a1aa017e2bbb8963a2d72f761 results/track_a_20260727/cells/068/blocks.csv +def75c1c46c19db8838145e1fb64429b49c268a1513f68b0a8a0c6abad554fe3 results/track_a_20260727/cells/068/metadata.txt +9ed90e8543b494601b8355b33a4665ecb37dd62842daa09bfe778d01f942fa2d results/track_a_20260727/cells/068/summary.csv +f9bf3a40f99ab3207cd4c64f6207a9a69a1ba8b9f05e2cebb99972015dd04a37 results/track_a_20260727/cells/069/blocks.csv +9bce6366960ed1afe271d114130c1076f0aa9fc61de2fc2c87eea6779fd77eb5 results/track_a_20260727/cells/069/metadata.txt +184b2043e23788ade14904f9bfad8e41bc1070aad243d57cd15effc36186dacd results/track_a_20260727/cells/069/summary.csv +b8ed75402368dfb4e578c4284690248ee783fbacbf521c53b7113bda0976e2bb results/track_a_20260727/cells/070/blocks.csv +b69af5137a391ee22eb2c22d00e3a4bfab0ee4388282d745374fcb3389ec015c results/track_a_20260727/cells/070/metadata.txt +c163e90da05fd093e9343ae7baed057c415a04590b49818288d70642da4f32c0 results/track_a_20260727/cells/070/summary.csv +e7ce5fdf054e70cc64c1c2d8f29ff4df9a9569f890f095152668b424c8e09620 results/track_a_20260727/cells/071/blocks.csv +e69c3201612eac766020010d43a94dc7b67466dbc5aebe901ffca95620faa627 results/track_a_20260727/cells/071/metadata.txt +e4d584bc537d20d6070fae519fcf1d200d42519fd95b668a91cc62870dd6ee6d results/track_a_20260727/cells/071/summary.csv +941a210b3a9caf595533a5b264afeb77e2564578082b66822b1d8b36e59ec58b results/track_a_20260727/cells/072/blocks.csv +356d97c9c826bf39abae3dd300eaffda9be3a879bc6b4e6235d95f7e557afb37 results/track_a_20260727/cells/072/metadata.txt +3e89f2583330aa10bc2bc699e31a1645a782541b51ee7163b2010f37c373a72d results/track_a_20260727/cells/072/summary.csv +d57ea21e83f70c6de73f9b909697b9b0e5c241bab6f2ba3ccc02459a6db7586d results/track_a_20260727/cells/073/blocks.csv +1f3a3e64353c52417e142875913c326e1b1fe3f10341865ae565864b750eb4f9 results/track_a_20260727/cells/073/metadata.txt +b0729a96b4da59ddf28c25e48f3defe004ef97c32d625d41c6e0a9b356d3222a results/track_a_20260727/cells/073/summary.csv +3793b549be9e9b4eb66d6d264dcd5220621c24609f8e03c06d2dce8bced1174a results/track_a_20260727/cells/074/blocks.csv +3925c10862384d7bcab8d268441a47b58c8a0f17c1c4f268f10dfb2e1a79516b results/track_a_20260727/cells/074/metadata.txt +2d21d82df7c0aa932a693244058c44d9c2a5bb50d49adf0254c75f1082bcda5b results/track_a_20260727/cells/074/summary.csv +bf74dc0512699ac16926adf40815e98e828afc3524e983bc2e7f217ec3789d40 results/track_a_20260727/cells/075/blocks.csv +cbd19225649d03a0579bc5db171b5cb73f3742bd8d96e6814c4ad5cf01646782 results/track_a_20260727/cells/075/metadata.txt +5f9eb662fb7033cbacd3429c6cd7f0a649f17efea5015a877aff662f70b9294e results/track_a_20260727/cells/075/summary.csv +e485c707d656af7761a84098fcd2d27a6ff768dd0e6b2270f535f3e6ec329798 results/track_a_20260727/cells/076/blocks.csv +d0c1a7661acdd5587971ed091ad65bb967bbc299f795edd58de4d98faaf4d44e results/track_a_20260727/cells/076/metadata.txt +3320bd125f2e03e7dddebb7fe6132a15509c5c265ce0710fb97bc6d09005f744 results/track_a_20260727/cells/076/summary.csv +b794dce33e08c944779a40dd4bb5efea77fafbaa00c2ca1bbb8795a8d12f6ea1 results/track_a_20260727/cells/077/blocks.csv +9a4e9aa8d1685e20697a39c122b0d17fbc559878b83d303f16832d4f84dc9f81 results/track_a_20260727/cells/077/metadata.txt +ba9e05a152e64e0944e9bfd5239d92cca79ab0e3cb77461a8d059ce9cb8188b0 results/track_a_20260727/cells/077/summary.csv +bd77ff7622b6fa1a97394750116fed8120b1cf264611a0a10a24f267f16bed52 results/track_a_20260727/cells/078/blocks.csv +1d97c9c1d362b1be71f3bd663ef2369d6c333e0133ab4aadebc49abac0e193b1 results/track_a_20260727/cells/078/metadata.txt +69e840f3a3a93b7be68f0e3556bfbf3ade242767b9c5ec0d7e4a58340ef3f324 results/track_a_20260727/cells/078/summary.csv +49c50a805ec7ed86c93add60ea40b6e099e7738e486c70c39e6a68c453f920b9 results/track_a_20260727/cells/079/blocks.csv +be2f2d91e474f301c1b1beaf55a5f8ace695f806330ede42d7a391b5e844fe40 results/track_a_20260727/cells/079/metadata.txt +57cd0c33c4478c7e2b4ff42cad57b0f088226bf6c4416b938f4d7c90e29d5907 results/track_a_20260727/cells/079/summary.csv +ca3a5b9096eb2972e0b86557189514867700dd795414361c6b0fac20699a178b results/track_a_20260727/cells/080/blocks.csv +1cca51afd86025e6f644623ba1d7531d199ab41ed151cdef810e8bef09dab8bc results/track_a_20260727/cells/080/metadata.txt +7e0e4c58afe0fe3d57877b1133ac578bde7a0f436f5565733c327b0f7bf2dfef results/track_a_20260727/cells/080/summary.csv +308bb1b3d226bc3668b33391e1b9ab2ac9e1761679f398fb827e3ad13ec67bf2 results/track_a_20260727/cells/081/blocks.csv +53d40860eeaca7ef5d87b6600b198623331018acf92ec9910bc05ce043975977 results/track_a_20260727/cells/081/metadata.txt +9549552e339c43ace50aad7720011fb9b210f7103b5492e6191acae4165aa039 results/track_a_20260727/cells/081/summary.csv +f8f010cd863c0b75aabf097423c9001cab880c4279a96dd5f0955c68cc7ae92c results/track_a_20260727/cells/082/blocks.csv +f2d0a13825edccafdc0705568409c790165667aac4ccb71cf487fd10b2ee6204 results/track_a_20260727/cells/082/metadata.txt +30ad32e8e3ec94ab3bd95d67f4c6ab08d7cf79a5fec28405b668e92c2201f4af results/track_a_20260727/cells/082/summary.csv +097340c2a82fd4ace6b570426997a1edf6d22fd8ddabbd908804ee8f02cb95cd results/track_a_20260727/cells/083/blocks.csv +2b776ecaf16a6f2fd4e694d741eccd12f2afbc1d5b3cf1c7212881a0d4951554 results/track_a_20260727/cells/083/metadata.txt +399d2f0b3a7451e515717b8f618a3ef4c9a588793ef22c1883de1b7f9aa7a19d results/track_a_20260727/cells/083/summary.csv +183001972cc1bb56b5e692e57ab3f26488d4bccde264815c32e67503d308652d results/track_a_20260727/cells/084/blocks.csv +819bf3795fcc7eed6de9b2ae03a87e1662915f522cb7df9a6a944ad2e87ef81c results/track_a_20260727/cells/084/metadata.txt +1b8cd3e5d2101ad0105002ce8f820c4106746b2cb123b1db00a7eeeaf9679b6e results/track_a_20260727/cells/084/summary.csv +a3759ba0be7e92ac530da953e901686d289eb1627ab854f6282048ee47f55bdf results/track_a_20260727/cells/085/blocks.csv +0727e99d95008842188bfeb14fb3d0a11dcb090b020391bec4da6f097e9122b7 results/track_a_20260727/cells/085/metadata.txt +b655e8757f66a6b28aa5ab0d1f795fb8fdf988bbc87eeb0f907ba644f08316e1 results/track_a_20260727/cells/085/summary.csv +a2a7329af121c4ee104226c9d5c4e8e2ade703f6fafd5a1ef33d88dc070958cc results/track_a_20260727/cells/086/blocks.csv +06f886504f69d87bae8334a4d462e9863fecd1901e43a8fff52decbd41a0c6bb results/track_a_20260727/cells/086/metadata.txt +271ed5c78174e84be57ae651fc13ff7c9903a6007c780089ab84ddcceaeb7b2a results/track_a_20260727/cells/086/summary.csv +923be5cdb332a21795fb4ef476231e0c44cfd70e8c5817a4cad6709742b06c32 results/track_a_20260727/cells/087/blocks.csv +11338ee33db591906e085857c2bcdb9a8391f65fab7b07733adc7315646b8024 results/track_a_20260727/cells/087/metadata.txt +c21e98f81df9fcbb3bd86d3e8d279a2d44227894419810687e1bc204cfae1ecb results/track_a_20260727/cells/087/summary.csv +da744e19ddb971bebc15810e4ac437d30f502bbcbf2f313a1dd1ca509dd71d18 results/track_a_20260727/cells/088/blocks.csv +28eb747ccb6103b50bb0881bab7f3f0241ade8cefe860176f677693e1f37d3eb results/track_a_20260727/cells/088/metadata.txt +b604fc10d46732b319b5208bc64091b31acb3606133acd96c25bc7215d1b135e results/track_a_20260727/cells/088/summary.csv +ebaa818d674171ee62ecd2887203a4766941f1af8f8815c257356593d97d83af results/track_a_20260727/cells/089/blocks.csv +5cfbb139fbe10532dcfdedc80cd20cf55ef9979372ab403b2ccca62525bb1e04 results/track_a_20260727/cells/089/metadata.txt +424109512934c611c54d2c5f00f071aa074c1de7bf1d2d5c8b1d44f5bb163c3e results/track_a_20260727/cells/089/summary.csv +70c7ee052f20c77727f307f921b562718347ea856b00e4b67c1af762557b9a90 results/track_a_20260727/cells/090/blocks.csv +fa4985161c606715df4f413380ecd8863eac54d6b5cd208e3fd024343970232b results/track_a_20260727/cells/090/metadata.txt +52c14f8a80ab2076fe2689cb9c600dd8e24faa298be35314693e08f6132566c9 results/track_a_20260727/cells/090/summary.csv +2ec2b5f001810f8d1a952cac5386c058c88c117215da242d17b1cd1c9602103b results/track_a_20260727/cells/091/blocks.csv +4c7f11c8a13d89b487e5f537c86d5c56b78441ce7efc81d4350021daf893c662 results/track_a_20260727/cells/091/metadata.txt +37114e17b67e3c752d548413d45294de377bad3ecd5309003fc5603711e6bf26 results/track_a_20260727/cells/091/summary.csv +02a2da8ddfcc63902f97a2ec085fd7577516be41a029d14d74da59e3a94a5721 results/track_a_20260727/cells/092/blocks.csv +e22fad02871a768cfbcd606beeb6d2b08453b477b2dc1cb1ae6bc818a0a1cc46 results/track_a_20260727/cells/092/metadata.txt +205966a7d6bef3e2b93a77d0ad4c5797ed9a7a27f8f168a13f38f21a99811697 results/track_a_20260727/cells/092/summary.csv +ee5effb3da4e03d27be6f2f592989352d8e4c8c0c0e836673fdc64584ed4a578 results/track_a_20260727/cells/093/blocks.csv +5b4295678d2b0ffbcbb54b8dfbb1cb2283eb3ceca4e2f1ac73c6f34901cb5989 results/track_a_20260727/cells/093/metadata.txt +c5906aeaf2a5dfa6faf471520a03dd1dc1963759c684db3c4a58ff66e86da8fb results/track_a_20260727/cells/093/summary.csv +9c052b4816ca4d07c40dffd7b43d763f30e86782776c252669b059bac43bc526 results/track_a_20260727/cells/094/blocks.csv +ac637e6860be74ffcd6312fd17bc27c3f8e878355197621d637f9eac325431de results/track_a_20260727/cells/094/metadata.txt +442549f57012543a063f925b271c7ab089b90eb4fb4aee8269b5851ab6ffcbf8 results/track_a_20260727/cells/094/summary.csv +d3f3c544c50914c5388785efbb04f9d4c4b8492aabc04fcf78129914916335e2 results/track_a_20260727/cells/095/blocks.csv +fd821f07a8502dfd115a56d83a02b94a51ad48c6b1e2432c446cb9a6320ebf49 results/track_a_20260727/cells/095/metadata.txt +345e90973d70efb7cc09ba51e9190be0dc0151edbc7ffd571235807d13ba2488 results/track_a_20260727/cells/095/summary.csv +7fa17de49a71ab696f71996c29ea1a3003d3a12ed3c4aea50819ab076a24517d results/track_a_20260727/cells/096/blocks.csv +a5272c8a5708530240951347337dd3441c0e29cbe993fba59380f06169e01be6 results/track_a_20260727/cells/096/metadata.txt +b13281859b4f4c6b3f9a8434838962b139dcfc87d78a112e42e9c4b3ab4b2c2d results/track_a_20260727/cells/096/summary.csv +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_1.err +396e3392847b97088f7fd47bef731fee5d0e64e7a91744943c5c44441805e498 results/track_a_20260727/logs/22958313_1.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_10.err +2c9f191c5ab2e62f66c2bc1f42714bb701cf6edc6c1d4439b8c09256760143a8 results/track_a_20260727/logs/22958313_10.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_11.err +2d2f46cfefc3e3cc606d42a15f9a8d600c3d82040b8cca63413e19beaf4e8d31 results/track_a_20260727/logs/22958313_11.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_12.err +ced47ccede099d8d9943187351fdb8340c07634474ac1bb4b3e0240a8a0fb915 results/track_a_20260727/logs/22958313_12.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_13.err +cc6786f4b6b8e8cce178d9cfb69e1227d4dd0a1a290d2ba67fc67deba411d351 results/track_a_20260727/logs/22958313_13.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_14.err +c8816f02d1a97c7f37f9dda52081040865b5c27fc63ff814c8b0cc2a4b10747a results/track_a_20260727/logs/22958313_14.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_15.err +f618cadafef0dce7341948b2750fad586ba8029d8f88bd63e8d5960360532333 results/track_a_20260727/logs/22958313_15.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_16.err +71e8317c67e25c9f8581316da2f511aea0b9cff58dc63875cb64ddd08123cdc6 results/track_a_20260727/logs/22958313_16.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_17.err +afd2f19d8e4f9f608e1d6a352230630ba1373c49717b5be5886640afff304de9 results/track_a_20260727/logs/22958313_17.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_18.err +117ce8bcc82f3e0091d2e597b4c4175d0d247a68475a04ef51a37a1eb2f4d9ed results/track_a_20260727/logs/22958313_18.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_19.err +435b4c4498ee9023fdfe4aac1973a41657d59b6975074b9fde69813cf3cc3932 results/track_a_20260727/logs/22958313_19.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_2.err +64bffb624d34dde998cc65f612f7277efbd9a9962a497d823823e4f0ce724694 results/track_a_20260727/logs/22958313_2.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_20.err +94152952e74d284fc376fe6ad7115465902bd5c83b173919f1136b3bb6c18680 results/track_a_20260727/logs/22958313_20.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_21.err +3a1ec7bab887f41cc35d112444885ed81e2e0009131af48d8a5451ad2649f331 results/track_a_20260727/logs/22958313_21.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_22.err +a234292b232de9f748a576046567b7295c49214c446d8ecb680867f8de5d0c76 results/track_a_20260727/logs/22958313_22.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_23.err +83f9414cbf70f600c98e880b86a5c414b7bc25145808b6fb64eb7a290ddcbd92 results/track_a_20260727/logs/22958313_23.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_24.err +11374fa9b70a61686f1118f37b939344c82ca825a5adb066627060d981efc16d results/track_a_20260727/logs/22958313_24.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_25.err +333a239491e9398b95f77ca665d9feb93d8f86430139b162eecd931134cc1c22 results/track_a_20260727/logs/22958313_25.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_26.err +2e63334d1c4c30440cfa78144696e31edcb237573dfe7d73fbad3ff417357b39 results/track_a_20260727/logs/22958313_26.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_27.err +d4a52b7cf30f34385a358c90f277a1485fa945cfaae3362d3dcb367fcdfe2760 results/track_a_20260727/logs/22958313_27.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_28.err +1a5966841a2b50f5c93fe71ff4356071ceed7dd6b04a57b66fd4ff135c4e23db results/track_a_20260727/logs/22958313_28.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_29.err +d753c543715a51bf17990269445ed20eccfec3d175ed00deab7261d4baab98ea results/track_a_20260727/logs/22958313_29.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_3.err +2707a5d1d12959ad62d16bc142f8fa7ed96d6b1d174a80e2925c7066de1e23cb results/track_a_20260727/logs/22958313_3.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_30.err +2bf14234ce147b8feda7c73ef249d905d3738799bd3eb41b0008b11d6a56a830 results/track_a_20260727/logs/22958313_30.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_31.err +72e3a45907647ee297d70ffee64c4c74aceb77f930735b50126a9a333a8271f5 results/track_a_20260727/logs/22958313_31.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_32.err +6bc0562423cef69fb90a70b8e37d3572b4b6067276f8c8eae2b943a1ddabc751 results/track_a_20260727/logs/22958313_32.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_33.err +b8dbc22493c7c95dbe800bef19b24e7b0289eab4b23cd115dc8be353fe55607f results/track_a_20260727/logs/22958313_33.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_34.err +50e0dfcef4b78271f81ffb48499f85d1de2a0f4a016798307a764db502c92ddb results/track_a_20260727/logs/22958313_34.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_35.err +43977deb0de41f9bc23893906c6a72a3a216b72dcc54fe67cf5ff6d0429787de results/track_a_20260727/logs/22958313_35.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_36.err +ea8fe7f7f1115c0623788d2de5a1188b50a6dc1d65007a77d279ca1827df88d7 results/track_a_20260727/logs/22958313_36.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_37.err +e3f8574bdd2a8e43cb04a6f2e90d13c64d3bcef29b73347d8d6364f714db3f46 results/track_a_20260727/logs/22958313_37.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_38.err +21e78bae532c99a2db81410b034f664000a784ee0502eb1e4263933964bc27aa results/track_a_20260727/logs/22958313_38.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_39.err +a8cc1afb00b1dc495b7ea0aea8c4af5ccb306e0c4325959ce68e87493b3cb09f results/track_a_20260727/logs/22958313_39.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_4.err +dec80c9b4b40d6079ecbce7bc17795a5e68d88567d91720d034710300983c123 results/track_a_20260727/logs/22958313_4.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_40.err +e60fc45ef5d7d957ee3b73785ac46240876e77cd5e3e49d1b74346d4e86f44c7 results/track_a_20260727/logs/22958313_40.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_41.err +e37ad836811cc3a68aeaa5740df1e5a67760882d4db8a42b50b119010f00b93d results/track_a_20260727/logs/22958313_41.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_42.err +f5dca84aa36ad792f75d537d2768e6cdda407b60ad9eedc8fb971959ac290162 results/track_a_20260727/logs/22958313_42.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_43.err +2a8780799450da263be814bb1dce94352af928f53c7a9f665995ca0d0b723fe3 results/track_a_20260727/logs/22958313_43.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_44.err +8767a5028146b9693e7ee42e6ea969efd2090f9cfdf48e7451bf6c00f010dae0 results/track_a_20260727/logs/22958313_44.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_45.err +b43a56e98a8737c0bcabf4bff4a9f8b2903003f67e5476ab2cc9340090e636db results/track_a_20260727/logs/22958313_45.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_46.err +271518fbe0fd97edec4af0ecb276c214d683bd2cbcde76b6b7b750cb203d80e5 results/track_a_20260727/logs/22958313_46.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_47.err +841daef42ecc02551d66ed71ea476062f4599e2d6946e222d9fdee6947c23526 results/track_a_20260727/logs/22958313_47.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_48.err +3110a9933e1ee53b52bcb4785163488b2329865d7bd8d1d020ae52765782d554 results/track_a_20260727/logs/22958313_48.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_49.err +881aa7e0cf1c0300f1aeabb25498f14e4540dac624bb59c521514e360015978b results/track_a_20260727/logs/22958313_49.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_5.err +4ec0c660ffea66557ed9681d542c52f8235ed1184cd5b69da1d037fb57573147 results/track_a_20260727/logs/22958313_5.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_50.err +e2ca4087cabcb7d6644eb52ff804930b5509950593fa3b71022e2e02db95798c results/track_a_20260727/logs/22958313_50.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_51.err +58745c82fa421d4e5f3139f254f9f6b0f57862377fb1288bfbb8b4df51c7a029 results/track_a_20260727/logs/22958313_51.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_52.err +d0e509e0724fe0167006850930957178df2f6c6febd0d46d4ea69341f2b507ea results/track_a_20260727/logs/22958313_52.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_53.err +8cb27623bce52001e1091ef4dfa9a4c5252f30bd6ccc2fbd1a2a2114be910ea5 results/track_a_20260727/logs/22958313_53.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_54.err +ad70b2f471c5c4c029a0a80d469bf6520d7ea7b0de83c2733f1a986947a85d4a results/track_a_20260727/logs/22958313_54.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_55.err +2fe801c493c656d36a1d0adeb5214875da7f907f4875e21ad9874f839ca856eb results/track_a_20260727/logs/22958313_55.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_56.err +00701e13342dcc4cb2032f0b481c1a4f6f9d3ede6013402f81c1091af09d2118 results/track_a_20260727/logs/22958313_56.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_57.err +82306413b058ae2bdc1fdfe304278285755d55ee343e4cb00412a35300afffcc results/track_a_20260727/logs/22958313_57.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_58.err +a15c2600c02715b1391da3db665172327f6d2f7a1d9d4cae997fb62accc95ef8 results/track_a_20260727/logs/22958313_58.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_59.err +ae732e971a67a46dac58c3e52d01d7ec94da8cb4da0d90a2a194606a50cca37f results/track_a_20260727/logs/22958313_59.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_6.err +a3ad97f0c0fdf35baf6dadc65b552d509ccf51a7817ceacf01694aca77e1efc0 results/track_a_20260727/logs/22958313_6.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_60.err +298079073302ab481aefc8531a1d32c64fc4c037fb4f13daa07de7eccd1ef7e6 results/track_a_20260727/logs/22958313_60.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_61.err +d9652aae0088bf6e088a3e1b1291f4b12130dab1b70df0bf604a27a323a9930d results/track_a_20260727/logs/22958313_61.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_62.err +f878d385fe6f9be715e0a6a06f8da67417fa96bdc98117f08e885a3f00972ac3 results/track_a_20260727/logs/22958313_62.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_63.err +370751b785c43dd32273690c99d7ab1d5d7b9ec7540cff74ccfc1bcd7449447b results/track_a_20260727/logs/22958313_63.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_64.err +8fea8b8143056811d301e3b65e1c43dcbb71b025f3ede3833838270818608a2d results/track_a_20260727/logs/22958313_64.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_65.err +be54d2207ad4694008a941f2a749e2cf2d263dbf8bdb2bcb872f253f6aa8a725 results/track_a_20260727/logs/22958313_65.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_66.err +8efadb2b686335cdfb6c3c166fbe5cb4b0bd41281392cc15f94ba51397677fe0 results/track_a_20260727/logs/22958313_66.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_67.err +c074ec398dc331ac836ce16d51f6b1142bf87c1306ec63ae1a464cae149c1279 results/track_a_20260727/logs/22958313_67.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_68.err +1050ba302d889605bb75b5c1c58a73a5d3223d4865f5874caf6de8d2f2afe3f8 results/track_a_20260727/logs/22958313_68.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_69.err +f003ed7cb93434ff575a976a51eaa66e93f44481d94951999eec4f2462a61307 results/track_a_20260727/logs/22958313_69.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_7.err +2dd6445e8b7a27d4e998edbf1ac114b61160152cfe45dc8403ac33463e603af2 results/track_a_20260727/logs/22958313_7.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_70.err +9977e60dc2c565153e9e8dd72c787d7ebae15032c59cf9c43f11116a82b09322 results/track_a_20260727/logs/22958313_70.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_71.err +88b31a73c70caf20f88aee38ad5ae5b21e6d2850a55ec286d6929065936f777c results/track_a_20260727/logs/22958313_71.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_72.err +d06ec6444dfaebf1a96ebb8e043665885f4264f98b128c994fde1242c531e16c results/track_a_20260727/logs/22958313_72.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_73.err +8d2589646a27f2802a236871c6a56f827488974c67166be4f8b32dde17557477 results/track_a_20260727/logs/22958313_73.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_74.err +3d83952c90546fcd57c3c07676c95b7a794ecca9cb6e0a8c48999594fe5894d0 results/track_a_20260727/logs/22958313_74.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_75.err +98fe778da01e7604028e2608207fe3e27f44c31200df8e075273a3fd70773bd5 results/track_a_20260727/logs/22958313_75.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_76.err +931b5131ab052fbb70f1162924d5472d77736df69576cf5f3ee36ae54f07ea8d results/track_a_20260727/logs/22958313_76.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_77.err +33cfb2694feb0cb0d4ddbc17ef6b55fc6a094240f96ef9444ae131a553631ce4 results/track_a_20260727/logs/22958313_77.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_78.err +a61457dc926e70a9a9033cf14c36e817eff71fc44008249acd5c9bb6658d76f8 results/track_a_20260727/logs/22958313_78.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_79.err +932eb0087865cdea0c1c15336cd72710af320cd7fac4f693cbeeca47ee9f462f results/track_a_20260727/logs/22958313_79.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_8.err +fe0e97a35180adc62fda8a3b6405ec78d219f2ee90d4c5d53f3f2f18353c7f0f results/track_a_20260727/logs/22958313_8.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_80.err +2f09329a70b23cc02eaf98e02179a7a05f56516669e2294e7f988f9fe0e1b96e results/track_a_20260727/logs/22958313_80.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_81.err +e1a730f952e5d082cbaacb65725f2109703af397393efdf775970faeb49420a7 results/track_a_20260727/logs/22958313_81.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_82.err +101a5bbb7af023d787777612e0cf780524ffbe5591d8d351ee06efa4515eb44d results/track_a_20260727/logs/22958313_82.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_83.err +9982c06ac012d4b041495071c8695451ad63fcef0b4970d6f0a0765b46a1f6b8 results/track_a_20260727/logs/22958313_83.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_84.err +23e1b39a10e1668459f15d9925981796f141a618ebdfc944902ce46d93fb8ac0 results/track_a_20260727/logs/22958313_84.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_85.err +53013fdc176b01068f567a0264ef0e429b9d982333fa7cda4b37a1a71e3b71a5 results/track_a_20260727/logs/22958313_85.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_86.err +ccaf3f83a2c99e9157b767f4d17fd5d124ccee5e2c23095f2dfdee083ed3f920 results/track_a_20260727/logs/22958313_86.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_87.err +943c95049a0df0db6fe64cc41b3ffd96922098f4e236e75deda9acf81f962647 results/track_a_20260727/logs/22958313_87.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_88.err +18880eade4115219f1da6600a5f49536efd1c0bbde1e627a1253eab7d37a0dd1 results/track_a_20260727/logs/22958313_88.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_89.err +e3fff8af870d1f13a902c79659d9eb64173d5778853ce0355dd00e6719461aa3 results/track_a_20260727/logs/22958313_89.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_9.err +9917240a8e285be92f227cae7e0402f7e5374a140c94372cb9f31402facc586f results/track_a_20260727/logs/22958313_9.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_90.err +9cbedee34db1ad1a54a3c84b4dc2a23be715497a4ee2b000fcadfae67f05e6ec results/track_a_20260727/logs/22958313_90.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_91.err +dab677553d7240e4ff7fb5c8951257bc4c4901e9e7a84e40e5912a8e9edf776a results/track_a_20260727/logs/22958313_91.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_92.err +605db5115d1ca4c1ad14292070720325b67b7cb253f039c905475b085da7a296 results/track_a_20260727/logs/22958313_92.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_93.err +0ef36b4649ed9b1730d529b5eafe3df841ed754346dcf65897b720bf92f029e8 results/track_a_20260727/logs/22958313_93.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_94.err +67e69595e8d3aab3a1f970e91da4f65da442dd66606aea3f9039f491d77b0b68 results/track_a_20260727/logs/22958313_94.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_95.err +39785426fa2e1d7e5da8ecdef6c68cd14238cb422c74dfbfc224ac2b5af2dfa6 results/track_a_20260727/logs/22958313_95.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_20260727/logs/22958313_96.err +08fc9e8ab0270fcc57afbfaaeaa4f2b693784122ae486a0a592bb4f3104bafe8 results/track_a_20260727/logs/22958313_96.out +3e45226ce28f300b6ea83effb2a7653e6419aa0736379a808dd31b52f8cdcebb results/track_a_cutoff_analysis_20260730/combined_critical.csv +e07d9bd127181ae566b12c4404bae7642d21ca5dfeffa985c00381c817a9059d results/track_a_cutoff_analysis_20260730/cutoff_report.md +e7d65b6b494585c704fa7b8482e6111a02f85be335784b06ccd811f51044aaeb results/track_a_cutoff_analysis_20260730/distinguishable_size.csv +8f2d10c3cce3a5d7113be68eba8194c8e89143caaaa24577c4e0c4eba5b3bf5f results/track_a_cutoff_analysis_20260730/model_fits.csv +1073437b577b3a25cbc616a753842055532af157c0e47b42feea6e30a3346ded results/track_a_large_20260728/cells/001/blocks.csv +7086b3d1ac35842a9d582a0d27328043fa2e04084b748e62c1967fd82d5ecc09 results/track_a_large_20260728/cells/001/metadata.txt +a2edd73d932a9fb247a2a365290f69f8e1c7f1f3ed384918675f554c4e8ac55c results/track_a_large_20260728/cells/001/summary.csv +9615110ad19b2efe31f9b73054f1f322373a207b8c6791cafd334a59dc74a6f0 results/track_a_large_20260728/cells/002/blocks.csv +2e4769c03df38cc581aa8ba3c518eb85332ce6c5959ac4a3cc2c46c36384b506 results/track_a_large_20260728/cells/002/metadata.txt +14337a7447000bcb8fba0ab29b87e98c618cf358c682c339e419cee4bc8ba9eb results/track_a_large_20260728/cells/002/summary.csv +d7bbc3f3e8e9e44b64849b4c59b29b1f0739af5ec3c7bf2a1147f703c27c89e8 results/track_a_large_20260728/cells/003/blocks.csv +95361d4c243241ef0251cddcf76d524183bcf330701492770255aed8bb7d49c3 results/track_a_large_20260728/cells/003/metadata.txt +962aa89b179b371ff8f9498b5b13fe3196fe80b11a96daf1ac9d5296d8bceffc results/track_a_large_20260728/cells/003/summary.csv +2b56d16f8ff4d2a843e068547e8051a74ed7f00d7a6b5ab816e5ff1b3a649b77 results/track_a_large_20260728/cells/004/blocks.csv +ead380d74be2fb1cb342f87182dfd37f93533b6748de211363b2a95372139b56 results/track_a_large_20260728/cells/004/metadata.txt +34fe10e03cbda35f09015eb2cf00c6aa7623da3e053446186f47bfaaea8b7c21 results/track_a_large_20260728/cells/004/summary.csv +115021865e393497917587105465a3e13dbb6d762e0482171b20cda95e252d5d results/track_a_large_20260728/cells/005/blocks.csv +8cb1628b113eca58d0d2b40840e8ee6e6ecb271aedba9f8f7efe3eecb377cc6d results/track_a_large_20260728/cells/005/metadata.txt +a949b803b04712a9107b62d0c443bee413322639b3931dfec91045025c5eb642 results/track_a_large_20260728/cells/005/summary.csv +a7db952890bc795058993acba63425c018a6df08c9c9ec8b8bd99db06417c5d2 results/track_a_large_20260728/cells/006/blocks.csv +228416ea547bd2abf96166529ae65c25816951a7c08172fd083cf69362a25df1 results/track_a_large_20260728/cells/006/metadata.txt +8549387ac368c294cb8d735c3566e2967f106db7dea939c5d3d6ae5ca8db86d4 results/track_a_large_20260728/cells/006/summary.csv +dd814639f481040260fa9a779bc28f992f951ce6bc7ffc55e30fd45efdbe6df5 results/track_a_large_20260728/cells/007/blocks.csv +fb5b091d7c9dedfff3bf057d70c68b226ecc6f0ca55cf29b4e65e4e04b8cb4e2 results/track_a_large_20260728/cells/007/metadata.txt +835edd04b4b744ebaa5a5684932c7f6a9bf49e8c3f35a103daa6db60288cabab results/track_a_large_20260728/cells/007/summary.csv +e07d31765d118222fece78846e39553e9aabcb0bb1c95ecb920b4343b0c197fd results/track_a_large_20260728/cells/008/blocks.csv +76b27c1432a3ab720e1953f0dd93ae464a91664566237c7b6ed8d85ad35db383 results/track_a_large_20260728/cells/008/metadata.txt +f3bb3db73ece05e99ecb9bc2d3a12283dd6583bb4c58edc7db478eeca7b740cd results/track_a_large_20260728/cells/008/summary.csv +8e185f0aa188786261857f5d85d0edd1106ec9e285b7903c0346760172993362 results/track_a_large_20260728/cells/009/blocks.csv +632230055ec67515c790438f0ef1498fe9ba1405007852a3d79fbdee6ec08030 results/track_a_large_20260728/cells/009/metadata.txt +da0def134770dec03b38a1ce3eb583f045fc45a7fbba58ae979f40ef58b4d61d results/track_a_large_20260728/cells/009/summary.csv +abe832a386e32e122d17c0452b8c291b96e39050bb5b1d653e5d048e1c3ae473 results/track_a_large_20260728/cells/010/blocks.csv +9305ae0a5bc2ebfdcfa5f6a96368ff05cac31fd7980f03f82e160f71ba04383b results/track_a_large_20260728/cells/010/metadata.txt +fb0bb81b3ed04e89febab18caed2fad1aab523e011513b0120b133e36cefc5ed results/track_a_large_20260728/cells/010/summary.csv +b2d87e7ae2f0aeb11ed44864b6b19b42d5eb6f685f4ee7bbadecf0c372c4f422 results/track_a_large_20260728/cells/011/blocks.csv +5941263ab44ddddcb636174d3bc6d62e8d6fe8ad10f3b92c088e71d3582905ec results/track_a_large_20260728/cells/011/metadata.txt +9d686ea0a4735250a32a718e1e8b371aa16a6b7049549cbf4c1e0cb63ab87f77 results/track_a_large_20260728/cells/011/summary.csv +f88735c223c21ae38a004077cb3fc597910ca0b770d5caa9d1247711259a5ab3 results/track_a_large_20260728/cells/012/blocks.csv +32769edef995da6ea323fc1544a6f00e2ae681319495896a36ae9edcca40619c results/track_a_large_20260728/cells/012/metadata.txt +bbe57c2a700b99903bd6e820a66aa620e30f91fb0bdefae95e0b0a2c9fccfb26 results/track_a_large_20260728/cells/012/summary.csv +0b748f10e7df025dfd7fe6384e027f39f0dc9a6b54b0075cc5ba968b88ea7c22 results/track_a_large_20260728/cells/013/blocks.csv +6b23cf7f81daa11fb8c208d7e10e7f189af65a0b100975fa4c1fdc7ea7577b3e results/track_a_large_20260728/cells/013/metadata.txt +d9933b8c0d0686d3b678be330f4cf81ce2c44e9dc035eb811f51fd5193b030ab results/track_a_large_20260728/cells/013/summary.csv +0c23e76a27d4b38a344a0a73b7b38a2ea9ca12add539b2dec572305c24abbd09 results/track_a_large_20260728/cells/014/blocks.csv +6404c148b5489e5946423db80d7e1226da3b926ddc4a85bac67543d14d521340 results/track_a_large_20260728/cells/014/metadata.txt +84a73cfb2113db610fcb3e967db42e0fb8959c192c0bb349f35293ad6af391e9 results/track_a_large_20260728/cells/014/summary.csv +c2e86ca9fe58af6f9adcd0fe87996bb3b69ce0d118eb1b4ff91685e288ad2aee results/track_a_large_20260728/cells/015/blocks.csv +c7fd7e7a457c6f5d60b1a3cc2c1ef54aa67e6776db8fc933863845c62c7075f6 results/track_a_large_20260728/cells/015/metadata.txt +7fb07fab191b6a56d55df795488f836e4ea6292b244b7116690b04a54bae78d0 results/track_a_large_20260728/cells/015/summary.csv +1d11535b4d8f41de3fc88cb5ca226a050338c7f0d3d805153aa43512fce28324 results/track_a_large_20260728/cells/016/blocks.csv +ae812920536373d36de1006168f21c18b39fe2d367114e4c491ae46f0590d848 results/track_a_large_20260728/cells/016/metadata.txt +81161ec89846e713a90599e83cae2d5aca3f8865e60aa52f03c2d63c60159511 results/track_a_large_20260728/cells/016/summary.csv +4551c61388bec4b13621ab2ce9c1a51ac4c0a5308ef22f6f55d7391efa97f422 results/track_a_large_20260728/cells/017/blocks.csv +2f3ccf4ce8731555206d9291a415e02a3f43154b8f0f0da97ef6d2ff31ba6058 results/track_a_large_20260728/cells/017/metadata.txt +dc28c6223ee866a1711942568ea1ef22d4af61f44e762d6b6fb0d77863399fb3 results/track_a_large_20260728/cells/017/summary.csv +91d0597627f7fe1f93296a95845c38ae9ece67bb3c1c6c44ee912605daa495f3 results/track_a_large_20260728/cells/018/blocks.csv +da35c6835076b57ae49c88b90198e922e2c6cc5824a69951958d0e4e77e51c8f results/track_a_large_20260728/cells/018/metadata.txt +b0038c4f83a737b55f342190ba5c44795ab9771ba5ba8880fb5b8b46be9e82b1 results/track_a_large_20260728/cells/018/summary.csv +a56077f935a8c2d438bb1f0c5c5828ec97334b12f6a2e1c1c32c53250d21cd63 results/track_a_large_20260728/cells/019/blocks.csv +ceb3422ce7d0cd2ad1fd408ae80e6d387742b474f48b50bfeef2fd90d93c3779 results/track_a_large_20260728/cells/019/metadata.txt +568d52232dfe5a2c65a92545e4aff3cbae200c9c6d49f20796fbfcef474ca64a results/track_a_large_20260728/cells/019/summary.csv +8c09f13c25241caa9eb05ff30cf61ed833032711fc5baf6bf8932d48e7a10dd5 results/track_a_large_20260728/cells/020/blocks.csv +cc5e785385948fe4755166e7d5bd171fb92bed2f5ce2c5b495feb9d0316c7919 results/track_a_large_20260728/cells/020/metadata.txt +b9c57b955ec85bc8749b76a18b830dd5c3f016da7d822aba47ba5e3a6ede3eea results/track_a_large_20260728/cells/020/summary.csv +b44931b4a0adb89189276141cebedde27b38277653e9614c0035dd305c2cd2ec results/track_a_large_20260728/cells/021/blocks.csv +b4330f678e66425efe0febe9efcb5ce9cb1097a9feb60c5cf6f805fdade9ff7f results/track_a_large_20260728/cells/021/metadata.txt +01fb3c6447cee9ac3506719e192703461819e483ee9db8e5bf7790eb709e33d2 results/track_a_large_20260728/cells/021/summary.csv +395ebdd462eb9ec6f25c32421fc87bc2d550e2a2750bf832fd62861efc3c92dd results/track_a_large_20260728/cells/022/blocks.csv +2da0423a24e8eaaac94a081ca8e806b2d3b01e6077a498dc3bdae8ccd46b4065 results/track_a_large_20260728/cells/022/metadata.txt +42795c8e985c25ab75d9c0a7803568799171dbae024f1d1e593b167054da6416 results/track_a_large_20260728/cells/022/summary.csv +57c1db66c34e51d4286081d93d7f4766faea3f5d66ab94030072e59dca303746 results/track_a_large_20260728/cells/023/blocks.csv +c7ea07033e55aa94134a737d2052c0e963288a659542259b2fa7adc9316bca9a results/track_a_large_20260728/cells/023/metadata.txt +52087bdc59415f082ef304babbd4171f856584aa92f0ef3061fc4bfd13b917aa results/track_a_large_20260728/cells/023/summary.csv +9fda751d8fbfb175b4ff7f507932a641d7d1fb3cea8d4d00331cf2fc73b6b197 results/track_a_large_20260728/cells/024/blocks.csv +631656c1f0cbdd5cc59efc61abfaf57d89152346b77bb288bad42bbe88a6b70e results/track_a_large_20260728/cells/024/metadata.txt +dffa30066ada9823a3559e53ac280a514ed9ea688139fbcd621e0bf1c78252dd results/track_a_large_20260728/cells/024/summary.csv +6646d484f601d2f6a56d94fa7c2fd97284aba7b552134382c5548379328133d5 results/track_a_large_20260728/cells/025/blocks.csv +5c9bf57b0b206d48296d76aca616210960cd57fc96fd7d0d7cbf56e375ae1958 results/track_a_large_20260728/cells/025/metadata.txt +3d93fd23bc326aa136cf99358c41091f6b50f7ea8d86d2956beca33c3272fd0e results/track_a_large_20260728/cells/025/summary.csv +0c0286e24090960f384f4c9b5f68902dabacb40fcb93decab7d4dd41905d191d results/track_a_large_20260728/cells/026/blocks.csv +c2d5701d1ae6b4e16e3631dc86336b833c085defc350e3c00f8e1e4608e11dcf results/track_a_large_20260728/cells/026/metadata.txt +73e9acd713026324a63414907ecb5219130bcd9f51338d5994d4699db4f30506 results/track_a_large_20260728/cells/026/summary.csv +59fb8c05e9247110308675ec61f111a08640a94eef2c158e1111995c044bbd02 results/track_a_large_20260728/cells/027/blocks.csv +7f8491d3304fe6ec0bc4683d6ab25a4ba1335ec79af282fb2bd0968bf6e7970c results/track_a_large_20260728/cells/027/metadata.txt +c598380587f1dd96acde0924dee950764ec53d242afcca91bd8cbc8bcdb36540 results/track_a_large_20260728/cells/027/summary.csv +7cd04610e60a16c6579fc6fbfa591f6f2ae89b00ef9c3d18d22cd4a0285b0e36 results/track_a_large_20260728/cells/029/blocks.csv +5690099505392500dcdcb6cf4c5004d8f923ba4c5253e2c28a32be8b6ec66c2b results/track_a_large_20260728/cells/029/metadata.txt +b601705efdadd50378626675280ee979455c0befda1a4116fc6716ce81d68d3a results/track_a_large_20260728/cells/029/summary.csv +d3de5a37cb3ec697b94d4ba0fe7dbf08462b7c16ba4e0c79ea0478909db98183 results/track_a_large_20260728/cells/030/blocks.csv +23dc66febf68e13303942a207958f8142af4da7222c6968da1abb0a5b8dbe48e results/track_a_large_20260728/cells/030/metadata.txt +ad7dc7db4e04d8611357c8c5dfe0a256a6ccbf112a0508b489906934e3bc175e results/track_a_large_20260728/cells/030/summary.csv +a2d4a4b780075dbaad0e30650b48cb7ad618c1779972ad226832831621fe661a results/track_a_large_20260728/cells/031/blocks.csv +0b4e78c88ead26bb0ebb7a0cb1435de9c9ca54ed907ac8fad842c8913c926bdc results/track_a_large_20260728/cells/031/metadata.txt +5a479db984313682497b2f723f70dee3ab42cac4a2540b51731c2df2ce9e17c4 results/track_a_large_20260728/cells/031/summary.csv +623143a5b4e62283018c28759c61f2f288a4e8887fff1b29e9f5133b44b4fcd0 results/track_a_large_20260728/cells/033/blocks.csv +c552752da1e86a6162d5ca91cfe546ef1067661c0adcec94549e0b26ea4a6e44 results/track_a_large_20260728/cells/033/metadata.txt +a07b6913a00c4a1ffc8e569a402659aeac495eaf37f9a7856ebab4b99f4fad78 results/track_a_large_20260728/cells/033/summary.csv +f71c54fd675f1ac09ec0e6f965a5932e045ed3a24c046e0f028126a2b41e5b3c results/track_a_large_20260728/cells/034/blocks.csv +a8dac2cb7da24a93bcab5b58e84006824990aaf077b70067136af1abde58df26 results/track_a_large_20260728/cells/034/metadata.txt +caab5926105cfbe8fd8d6480e62aa1ad14967bf78a68e1fb4c45f4554e9fa961 results/track_a_large_20260728/cells/034/summary.csv +c1a40367a6bbeff95713aa02cd1450f57622daae5e92093cb527a1e8c4b6c72c results/track_a_large_20260728/cells/035/blocks.csv +ae3a2df87d0dcbae9df9fef6b33fb24e626a16ce76ac5dad38c11fcd0464a647 results/track_a_large_20260728/cells/035/metadata.txt +d16d4ef5ea8d34516e03aaa3f6fd657bb6bad4e9b0e780a7c32284f188f69063 results/track_a_large_20260728/cells/035/summary.csv +c8e68c871205df289fe3a1e78f183cc1e6449d5018ce5714691f740a7e669bf2 results/track_a_large_20260728/cells/036/blocks.csv +59aec860bbc1e778cab990e9bb5d4ba8be475f7256ff0fa5843030d4e9168927 results/track_a_large_20260728/cells/036/metadata.txt +5c615fa74d30aad3389d60d517e07a4a654be146e008b434256e2e26804972c3 results/track_a_large_20260728/cells/036/summary.csv +c3f33d5db13735015b1922787dae011a919e338fab5a42d7ce3f2c2f5426a5cb results/track_a_large_20260728/cells/038/blocks.csv +ae4b3dc47338b58d8571d9bbed10535530408ce3b663712ca8b25a3a7b7ac57a results/track_a_large_20260728/cells/038/metadata.txt +3a8b436b88fb88e996d61a8983fa7953232c5d7316f14f38a2d37c4c8e045426 results/track_a_large_20260728/cells/038/summary.csv +050c235b2924916aa74a36d68408d14e22234c31c752206a4e5764f913ace32e results/track_a_large_20260728/cells/043/blocks.csv +7d6090501553c4b0424e44e20c6558876fad6cac0df77df3c1f7724b03de5326 results/track_a_large_20260728/cells/043/metadata.txt +bd75cdfeeb229fd5e28b3331106071da2827ffaa61a3bdbb24f7c5445ed2831e results/track_a_large_20260728/cells/043/summary.csv +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_1.err +d45f555e049f4116d7c1e4d5eb5f3fa6b5f53c6cfc3acfbed63335f52a8d2bd9 results/track_a_large_20260728/logs/22972071_1.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_10.err +01e9bdfbb2631508928bf7d99de11a00ccec3ca0240a6d570136cb5c32628534 results/track_a_large_20260728/logs/22972071_10.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_11.err +6b6453a8ca9f0d53746bd0f7b0c4c48cadc52228bb5c8d2e59f4d8579fecdb57 results/track_a_large_20260728/logs/22972071_11.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_12.err +7ff0c8b4e5761b50e5ec1a85b1dae736072cb467b546bf679301a92247454382 results/track_a_large_20260728/logs/22972071_12.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_13.err +129da5d0bfbd458f7a8ca02e5274296e092b2ca753fd5eb8e8e5fd2f4b0f1b5f results/track_a_large_20260728/logs/22972071_13.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_14.err +07d98ca2e298bbd240a4f06a39705692198f1c513534c886b0407308c88f8988 results/track_a_large_20260728/logs/22972071_14.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_15.err +8234413a1b2d556b44f3043ac9de28348e9eef0d76169f13eb925ce2153b8fea results/track_a_large_20260728/logs/22972071_15.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_16.err +6c5ea4d8b8a14e797de8de6930df1fbbca45d551bab051305bbe0b0d5c7fa059 results/track_a_large_20260728/logs/22972071_16.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_17.err +18b46ef6b71ef065fdc98330e79a38db7f34caf65f3c92b4bca9d8ce73c2beff results/track_a_large_20260728/logs/22972071_17.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_18.err +1e7d7a97f967df44a28632a673bec7b5479af0ed7d097e046658893114dd04fc results/track_a_large_20260728/logs/22972071_18.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_19.err +fa960a9ce51039728e228912f1f95e36ad331af7d9796e92454aeed3a1cddf3a results/track_a_large_20260728/logs/22972071_19.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_2.err +9214c0f994b966bf4c1382ce59201097d6baea002a9867026960e8b87b14ccd4 results/track_a_large_20260728/logs/22972071_2.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_20.err +4dac845b22a829074bacf6285a0cc6b821f0ef0341d65308f02759758f87cae0 results/track_a_large_20260728/logs/22972071_20.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_21.err +38873b5921c54cf7c6e907a9aa6fdadb28e14bf2c2c6671a4cdc7f00955266cd results/track_a_large_20260728/logs/22972071_21.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_22.err +31900fadd87f7cc5f031db7cf95063a348c615a983f78995c66224f0a58b2a8b results/track_a_large_20260728/logs/22972071_22.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_23.err +aa731bd21fa4042d4113d1ca718964cd53992e6347659d4ac91ef0df45a4771a results/track_a_large_20260728/logs/22972071_23.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_24.err +4900d1571309008b473942f3c10b9f01c5c6f17b31d4bb6eeae9b509c4576426 results/track_a_large_20260728/logs/22972071_24.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_25.err +4703adae717ac3206282f288bae05bd12dd999c9410ffc16e524a51057d4a562 results/track_a_large_20260728/logs/22972071_25.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_26.err +c1cb7a0c155fb905d3ded62e9e96f8e094bb9477ff7ba52ba877fe50b6f22e76 results/track_a_large_20260728/logs/22972071_26.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_27.err +242b78a820f9d5fba9a224a8ba33cd5b4031e6a166d8ee8e9e9bd7f06758640d results/track_a_large_20260728/logs/22972071_27.out +48c06642dbede8ff760a7684494c3678f534226cc7483fd9ce433e28038e1e1e results/track_a_large_20260728/logs/22972071_28.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_28.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_29.err +73818ca1994036af577bcd3797471c0e8d3228c1ef9c4631793eb31d8a9d73d6 results/track_a_large_20260728/logs/22972071_29.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_3.err +26027016339a9508d602eb02e8c4d48ac96d380fc3e3d87c0283d0e852d27163 results/track_a_large_20260728/logs/22972071_3.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_30.err +3239afc008af3c411ca4919aca94542e3f47032e1560ad52711a0692fc743d2b results/track_a_large_20260728/logs/22972071_30.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_31.err +08c208c926dc2f47f5d86257d94d8dd48ce1f02d14f10662abd40dc193cf164a results/track_a_large_20260728/logs/22972071_31.out +d0bef8c3e275d037dc2a1872e5fbf6bbc702ed9e7f157ed3bd3807b39daf5f8f results/track_a_large_20260728/logs/22972071_32.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_32.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_33.err +af37254719f40e2ce175c4a77e2dfb797a53362b158ffdde5539f79b2ca7aae9 results/track_a_large_20260728/logs/22972071_33.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_34.err +df42159cb7caef4e7a281ca9f400e32c3bd639f29a7b218fb05ca90e6ea4c578 results/track_a_large_20260728/logs/22972071_34.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_35.err +53236c0ee8329bb257205208a69cbbc9c26259e4f4fd38b63d16ed51bf40a622 results/track_a_large_20260728/logs/22972071_35.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_36.err +961ee8e78685f7cf1104decaf32cf38d3c9b528dbaf6ad6811b7389351dfc063 results/track_a_large_20260728/logs/22972071_36.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_37.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_37.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_38.err +8ae7a483ceaf2b3c6ba77aa922f2984a7b67690b89f4ca4b5742fd6c1f8e0dea results/track_a_large_20260728/logs/22972071_38.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_39.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_39.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_4.err +a1e2849dc67808e66c33f0dec8a44a31ace9a31cbd9d766f083fa837d6c7f73f results/track_a_large_20260728/logs/22972071_4.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_40.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_40.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_41.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_41.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_42.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_42.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_43.err +ac01094b1cca030348183de99c0b028df58d8c7a8cfda27ee2e9e6d74bdb1d9d results/track_a_large_20260728/logs/22972071_43.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_44.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_44.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_45.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_45.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_46.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_46.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_47.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_47.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_48.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_48.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_5.err +cd3939e1b1a1c0a53f2da7ae85ae868faae2acce503c83861dd56adb78ecc89f results/track_a_large_20260728/logs/22972071_5.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_6.err +57301e8e29acf24239842451b07b333e81ed96a59c1175d463d262a522c9bf50 results/track_a_large_20260728/logs/22972071_6.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_7.err +05b7345ca7e06cb9dc9c2a9cf7fadb596463ebb9203e20a90104391813227acc results/track_a_large_20260728/logs/22972071_7.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_8.err +39fb1d5aff2f0ccd7684d2e83e57e2e8c98b04919208d84a464945930a29b5be results/track_a_large_20260728/logs/22972071_8.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/22972071_9.err +e66711a66d17c384d0495769f8c43c05dc38055a3d0139f8e45e4587085d86df results/track_a_large_20260728/logs/22972071_9.out +e3476ea7500f456968f23d5584317e878f2dd65aef528cfec0bec1854bc22b34 results/track_a_large_20260728/logs/23016110_28.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016110_28.out +40888e15745ac9567ceadfa424d7ae9588500afdf148dfca63b4697ba6e9453c results/track_a_large_20260728/logs/23016110_32.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016110_32.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016123_28.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016123_28.out +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016123_32.err +e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 results/track_a_large_20260728/logs/23016123_32.out diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/clock_crosscheck_20260729.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/clock_crosscheck_20260729.sbatch" new file mode 100644 index 000000000..7b8298ad0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/clock_crosscheck_20260729.sbatch" @@ -0,0 +1,17 @@ +#!/bin/bash +#SBATCH --job-name=lrising_clock +#SBATCH --partition=xhacnormalb +#SBATCH --array=1-16%16 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=2G +#SBATCH --time=24:00:00 +#SBATCH --output=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/clock_production_20260729/logs/%A_%a.out +#SBATCH --error=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/clock_production_20260729/logs/%A_%a.err +set -euo pipefail +cd "$HOME/quantum.harness" +SOLUTION_ROOT="$PWD/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk" +mkdir -p "$SOLUTION_ROOT/results/clock_production_20260729/logs" +export RUN_ROOT="${RUN_ROOT:-$SOLUTION_ROOT/results/clock_production_20260729}" +"$HOME/.local/bin/julia" --startup-file=no "$SOLUTION_ROOT/scripts/clock_point.jl" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/large_20260728.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/large_20260728.sbatch" new file mode 100644 index 000000000..aa2258f71 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/large_20260728.sbatch" @@ -0,0 +1,17 @@ +#!/bin/bash +#SBATCH --job-name=lrising_big +#SBATCH --partition=xhacnormalb +#SBATCH --array=1-48%48 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=2G +#SBATCH --time=333-08:00:00 +#SBATCH --output=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/track_a_large_20260728/logs/%A_%a.out +#SBATCH --error=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/track_a_large_20260728/logs/%A_%a.err +set -euo pipefail +cd "$HOME/quantum.harness" +SOLUTION_ROOT="$PWD/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk" +mkdir -p "$SOLUTION_ROOT/results/track_a_large_20260728/logs" +export RUN_ROOT="$SOLUTION_ROOT/results/track_a_large_20260728" +"$HOME/.local/bin/julia" --startup-file=no "$SOLUTION_ROOT/scripts/large_point.jl" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_large_20260730.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_large_20260730.sbatch" new file mode 100644 index 000000000..ec672694b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_large_20260730.sbatch" @@ -0,0 +1,17 @@ +#!/bin/bash +#SBATCH --job-name=ising_nn_big +#SBATCH --partition=xhacnormalb +#SBATCH --array=1-28%28 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=2 +#SBATCH --mem=6G +#SBATCH --time=24:00:00 +#SBATCH --output=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/logs/%A_%a.out +#SBATCH --error=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/logs/%A_%a.err +set -euo pipefail +cd "$HOME/quantum.harness" +mkdir -p "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/logs" +export HARNESS_RUN_SPEC="$PWD/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/run_spec.json" +export JULIA_BIN="$HOME/.local/bin/julia" +python "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/scripts/nn_large_cell.py" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_smoke_20260730.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_smoke_20260730.sbatch" new file mode 100644 index 000000000..66ea89286 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_smoke_20260730.sbatch" @@ -0,0 +1,22 @@ +#!/bin/bash +#SBATCH --job-name=ising_nn_smoke +#SBATCH --partition=xhacnormalb +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=1G +#SBATCH --time=00:10:00 +#SBATCH --output=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/logs/smoke_%j.out +#SBATCH --error=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/logs/smoke_%j.err +set -euo pipefail +cd "$HOME/quantum.harness" +"$HOME/.local/bin/julia" --startup-file=no "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/test/runtests.jl" +export NN_CELL_ID="smoke" +export NN_L="16" +export NN_SEED="20260730" +export NN_BETA="0.44068679350977147" +export NN_THERM="500" +export NN_MEAS="5000" +export NN_BLOCKS="20" +export RUN_ROOT="$PWD/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730/smoke_check" +"$HOME/.local/bin/julia" --startup-file=no "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/scripts/nn_large_point.jl" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_v3_20260730.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_v3_20260730.sbatch" new file mode 100644 index 000000000..892108985 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/nn_v3_20260730.sbatch" @@ -0,0 +1,26 @@ +#!/bin/bash +#SBATCH --job-name=nn_v3 +#SBATCH --partition=xhacnormalb +#SBATCH --array=1-24 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=4G +#SBATCH --time=02:00:00 +#SBATCH --output=results/nn_v3_20260730/logs/%A_%a.out +#SBATCH --error=results/nn_v3_20260730/logs/%A_%a.err + +set -euo pipefail + +cd "$HOME/quantum.harness/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk" +mkdir -p results/nn_v3_20260730/logs + +sizes=(64 128 256) +cell=$((SLURM_ARRAY_TASK_ID - 1)) +size_index=$((cell / 8)) +replica=$((cell % 8 + 1)) +L=${sizes[$size_index]} +seed=$((930000 + 1000 * L + replica)) +outdir=$(printf "results/nn_v3_20260730/cells/%03d" "$SLURM_ARRAY_TASK_ID") + +julia --project=. scripts/nn_v3_point.jl "$L" "$seed" 20000 1000000 "$outdir" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/production_20260727.sbatch" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/production_20260727.sbatch" new file mode 100644 index 000000000..191b0b6c5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/jobs/production_20260727.sbatch" @@ -0,0 +1,17 @@ +#!/bin/bash +#SBATCH --job-name=lrising_fk +#SBATCH --partition=xhacnormalb +#SBATCH --array=1-96%32 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=2G +#SBATCH --time=12:00:00 +#SBATCH --output=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/track_a_20260727/logs/%A_%a.out +#SBATCH --error=tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/track_a_20260727/logs/%A_%a.err +set -euo pipefail +cd "$HOME/quantum.harness" +SOLUTION_ROOT="$PWD/tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk" +mkdir -p "$SOLUTION_ROOT/results/track_a_20260727/logs" +export RUN_ROOT="$SOLUTION_ROOT/results/track_a_20260727" +"$HOME/.local/bin/julia" --startup-file=no "$SOLUTION_ROOT/scripts/production_point.jl" diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/knowledge/RandomWalk&LR_Criticality-IMFP.pdf" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/knowledge/RandomWalk&LR_Criticality-IMFP.pdf" new file mode 100644 index 000000000..743b8cf42 Binary files /dev/null and "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/knowledge/RandomWalk&LR_Criticality-IMFP.pdf" differ diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_analysis.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_analysis.md" new file mode 100644 index 000000000..d75c472f1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_analysis.md" @@ -0,0 +1,42 @@ +# Track A locked analysis record + +Locked before the full production array is submitted. + +## Primary data + +All 96 cells are retained. Each sigma uses L=64,128,256,512, beta offsets +-0.002, 0, +0.002 around the published beta_c, and two independent seeds. +No cell is excluded because its estimate is inconvenient. Operationally failed +cells are rerun with the same parameters and identified in the log. + +## Aggregation and crossings + +Seed estimates are combined with inverse-variance weighting when block +variances are finite, otherwise with equal weighting. For each adjacent +L and 2L pair, Rp(beta) and Qm(beta) crossings use a straight-line fit over +the three preregistered beta points. A crossing outside the sampled interval is +reported as unresolved rather than extrapolated. + +## Critical finite-size curves + +Rp, Qm, and chi are evaluated at the central published beta_c. Eta is secondary +and is estimated from chi = a L^(2-eta), first using all four sizes and then +after dropping L=64. + +## Competing correction models + +For Rp(L) and Qm(L), fit both: + +1. Power correction: O(L) = O_inf + a L^(-omega), with omega > 0. +2. Marginal/log correction: O(L) = O_inf + a/log(L/L0), with 0 < L0 < 64. + +Compare Gaussian-likelihood AICc and BIC using block standard errors. Repeat +both models after dropping L=64. Fits with fewer data points than free +parameters are marked underdetermined, not ranked. + +## Conclusion rule + +A thermodynamic claim is allowed only if the preferred scenario and sign of +the inferred Rp limit are stable under both correction models and removal of +L=64. Otherwise the Track A conclusion is `inconclusive at school-scale +sizes`, as required by Issue #86. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_extension_analysis.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_extension_analysis.md" new file mode 100644 index 000000000..a765f3d78 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/locked_extension_analysis.md" @@ -0,0 +1,48 @@ +# Track A extension: locked distinguishability analysis + +Locked while the large-size array is still running and before inspecting its +completed aggregate. + +## Scientific question + +Can the available sizes distinguish a nonzero thermodynamic wrapping plateau +from a marginal/logarithmic drift toward the short-range value, and, if not, +what size would be required at the achieved precision? + +## Inputs + +Use central-beta cells from `track_a_20260727` and critical-role cells from +`track_a_large_20260728`. Keep all successful seeds. No point is removed on +the basis of its value. Operational failures may only be rerun with identical +parameters. + +## Models + +For each sigma and each registered minimum-size window fit: + +1. `power`: `O(L) = O_inf + a * L^(-omega)`, `omega > 0`. +2. `marginal`: `O(L) = O_inf + a / log(L/L0)`, `0 < L0 < min(L)`. + +The primary observable is `Rp`; `Qm` is a corroborating observable. Fits use +seed standard errors with a conservative floor equal to the median positive +standard error divided by two. Report chi-square, AICc, BIC, and leave-one-size +out weighted prediction error. + +## Stability + +Repeat for every `L_min` leaving at least five sizes. A boundary statement is +allowed only when the sign and practical classification of `Rp_inf`, and the +preferred model, remain stable under removal of the smallest sizes. Otherwise +the result remains inconclusive. + +## Distinguishable-size forecast + +For candidate sizes `3072, 4096, 6144, 8192, 12288, 16384, 32768, 65536`, +compute the absolute separation of the two fitted mean predictions divided by +their combined parameter-prediction uncertainty and the extrapolated achieved +Monte Carlo standard error. The first size reaching 3 sigma is reported as a +planning estimate, not as evidence about unmeasured physics. If none reaches +3 sigma, report `>65536`. + +Parametric bootstrap intervals use 1000 replicas and the registered seed-error +model. Failed nonlinear fits are counted and reported, never silently dropped. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/AGENTS.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/AGENTS.md" new file mode 100644 index 000000000..258f01842 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/AGENTS.md" @@ -0,0 +1,10 @@ +# Bilingual report maintenance + +- `track_a_report_zh.md` and `track_a_report_en.md` are a paired report. +- When changing conclusions, numerical values, tables, figure references, or + captions in either file, inspect the other file and apply the corresponding + change unless the difference is intentionally language-specific. +- Chinese figures use `figures/.svg`; English figures use the matching + `figures/_en.svg`. +- Regenerate both figure sets with + `python3 ../scripts/plot_cutoff_report.py ..` from this directory. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations.svg" new file mode 100644 index 000000000..f4c63dfc2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations.svg" @@ -0,0 +1,308 @@ + + +修正变量线性化的热力学外推 + + +-0.45 + +-0.24 + +-0.03 + +0.17 + +0.38 +0.00 +0.12 +0.25 +0.37 +0.49 + + + + + + + + + + + + + + + + + +σ=1.875, Rₚ +Rₚ,∞=0.020 +L−q +q = 0.19 +Rₚ(L) + + +-0.45 + +-0.24 + +-0.03 + +0.17 + +0.38 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + + + + + + + + + + + + + +σ=1.875, Rₚ +Rₚ,∞=0.325 +1/log(L/q) +q = 0.00928 +Rₚ(L) + + +-0.32 + +-0.05 + +0.22 + +0.48 + +0.75 +0.00 +0.15 +0.31 +0.46 +0.62 + + + + + + + + + + + + + + + + + +σ=2, Rₚ +Rₚ,∞=0.257 +L−q +q = 0.135 +Rₚ(L) + + +-0.32 + +-0.05 + +0.22 + +0.48 + +0.75 +0.00 +0.02 +0.04 +0.06 +0.08 + + + + + + + + + + + + + + + + + +σ=2, Rₚ +Rₚ,∞=0.688 +1/log(L/q) +q = 0.0001 +Rₚ(L) + + +0.72 + +0.80 + +0.88 + +0.95 + +1.03 +0.00 +0.13 +0.25 +0.38 +0.50 + + + + + + + + + + + + + + + + + +σ=1.875, Qₘ +Qₘ,∞=0.876 +L−q +q = 0.184 +Qₘ(L) + + +0.72 + +0.80 + +0.88 + +0.95 + +1.03 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + + + + + + + + + + + + + +σ=1.875, Qₘ +Qₘ,∞=0.976 +1/log(L/q) +q = 0.00555 +Qₘ(L) + + +0.75 + +0.83 + +0.92 + +1.00 + +1.08 +0.00 +0.15 +0.29 +0.44 +0.58 + + + + + + + + + + + + + + + + + +σ=2, Qₘ +Qₘ,∞=0.922 +L−q +q = 0.149 +Qₘ(L) + + +0.75 + +0.83 + +0.92 + +1.00 + +1.08 +0.00 +0.02 +0.05 +0.07 +0.09 + + + + + + + + + + + + + + + + + +σ=2, Qₘ +Qₘ,∞=1.038 +1/log(L/q) +q = 0.000436 +Qₘ(L) + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations_en.svg" new file mode 100644 index 000000000..b58e0997e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/competing_extrapolations_en.svg" @@ -0,0 +1,308 @@ + + +Thermodynamic extrapolation in linearized correction coordinates + + +-0.45 + +-0.24 + +-0.03 + +0.17 + +0.38 +0.00 +0.12 +0.25 +0.37 +0.49 + + + + + + + + + + + + + + + + + +σ=1.875, Rₚ +Rₚ,∞=0.020 +L−q +q = 0.19 +Rₚ(L) + + +-0.45 + +-0.24 + +-0.03 + +0.17 + +0.38 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + + + + + + + + + + + + + +σ=1.875, Rₚ +Rₚ,∞=0.325 +1/log(L/q) +q = 0.00928 +Rₚ(L) + + +-0.32 + +-0.05 + +0.22 + +0.48 + +0.75 +0.00 +0.15 +0.31 +0.46 +0.62 + + + + + + + + + + + + + + + + + +σ=2, Rₚ +Rₚ,∞=0.257 +L−q +q = 0.135 +Rₚ(L) + + +-0.32 + +-0.05 + +0.22 + +0.48 + +0.75 +0.00 +0.02 +0.04 +0.06 +0.08 + + + + + + + + + + + + + + + + + +σ=2, Rₚ +Rₚ,∞=0.688 +1/log(L/q) +q = 0.0001 +Rₚ(L) + + +0.72 + +0.80 + +0.88 + +0.95 + +1.03 +0.00 +0.13 +0.25 +0.38 +0.50 + + + + + + + + + + + + + + + + + +σ=1.875, Qₘ +Qₘ,∞=0.876 +L−q +q = 0.184 +Qₘ(L) + + +0.72 + +0.80 + +0.88 + +0.95 + +1.03 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + + + + + + + + + + + + + +σ=1.875, Qₘ +Qₘ,∞=0.976 +1/log(L/q) +q = 0.00555 +Qₘ(L) + + +0.75 + +0.83 + +0.92 + +1.00 + +1.08 +0.00 +0.15 +0.29 +0.44 +0.58 + + + + + + + + + + + + + + + + + +σ=2, Qₘ +Qₘ,∞=0.922 +L−q +q = 0.149 +Qₘ(L) + + +0.75 + +0.83 + +0.92 + +1.00 + +1.08 +0.00 +0.02 +0.05 +0.07 +0.09 + + + + + + + + + + + + + + + + + +σ=2, Qₘ +Qₘ,∞=1.038 +1/log(L/q) +q = 0.000436 +Qₘ(L) + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended.svg" new file mode 100644 index 000000000..861863d28 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended.svg" @@ -0,0 +1,198 @@ + + +中心临界点的有限尺寸流 + +σ=1.75 + +σ=1.875 + +σ=2 + +σ=2.5 + + +64 + +128 + +256 + +512 + +1024 + +2048 + +-0.64 + +-0.46 + +-0.28 + +-0.10 + +0.08 + +短程锚点 +L +Rₚ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +64 + +128 + +256 + +512 + +1024 + +2048 + +0.68 + +0.73 + +0.78 + +0.83 + +0.88 + +短程锚点 +L +Qₘ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended_en.svg" new file mode 100644 index 000000000..9ef851997 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/critical_finite_size_extended_en.svg" @@ -0,0 +1,198 @@ + + +Finite-size flow at published critical points + +σ=1.75 + +σ=1.875 + +σ=2 + +σ=2.5 + + +64 + +128 + +256 + +512 + +1024 + +2048 + +-0.64 + +-0.46 + +-0.28 + +-0.10 + +0.08 + +short-range anchor +L +Rₚ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +64 + +128 + +256 + +512 + +1024 + +2048 + +0.68 + +0.73 + +0.78 + +0.83 + +0.88 + +short-range anchor +L +Qₘ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast.svg" new file mode 100644 index 000000000..8a9f86668 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast.svg" @@ -0,0 +1,59 @@ + + +注册预测区间内的最大模型分离度 + + +64 + +128 + +256 + +512 + +0.0 + +0.5 + +1.0 + +1.5 + +2.0 + +2.5 + +3.0 + +3σ 判别门槛 +Lₘᵢₙ +max z(L≤65536) + + + + + + +σ=1.875, Rₚ + + + + + + +σ=1.875, Qₘ + + + + + + +σ=2.0, Rₚ + + + + + + +σ=2.0, Qₘ + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast_en.svg" new file mode 100644 index 000000000..5a5d68a33 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/distinguishability_forecast_en.svg" @@ -0,0 +1,59 @@ + + +Maximum model separation in the registered forecast range + + +64 + +128 + +256 + +512 + +0.0 + +0.5 + +1.0 + +1.5 + +2.0 + +2.5 + +3.0 + +3σ threshold +Lₘᵢₙ +max z (L≤65536) + + + + + + +σ=1.875, Rₚ + + + + + + +σ=1.875, Qₘ + + + + + + +σ=2.0, Rₚ + + + + + + +σ=2.0, Qₘ + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling.svg" new file mode 100644 index 000000000..b3711e634 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling.svg" @@ -0,0 +1,73 @@ + + +χ(L)/L² 的临界幂律拟合 + + +64 + +128 + +256 + +512 + +0.03 + +0.05 + +0.08 + +0.1 + +0.15 + +0.2 + +0.3 +L +χ/L² + + + + + + + + + + +σ=1.75, η=0.3729 + + + + + + + + + + +σ=1.875, η=0.3204 + + + + + + + + + + +σ=2, η=0.2915 + + + + + + + + + + +σ=2.5, η=0.2546 + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling_en.svg" new file mode 100644 index 000000000..6d5d2a6c0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/eta_scaling_en.svg" @@ -0,0 +1,73 @@ + + +Critical power-law fits of χ(L)/L² + + +64 + +128 + +256 + +512 + +0.03 + +0.05 + +0.08 + +0.1 + +0.15 + +0.2 + +0.3 +L +χ/L² + + + + + + + + + + +σ=1.75, η=0.3729 + + + + + + + + + + +σ=1.875, η=0.3204 + + + + + + + + + + +σ=2, η=0.2915 + + + + + + + + + + +σ=2.5, η=0.2546 + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation.svg" new file mode 100644 index 000000000..29182b103 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation.svg" @@ -0,0 +1,212 @@ + + +大尺寸数据与完整窗口的线性化外推 + + + +-0.45 + +-0.15 + +0.15 + +0.45 + +0.75 +0.00 +0.12 +0.25 +0.37 +0.49 + + + + + +L≤2048: q=0.19 +σ=1.875, Rₚ +L−q +Rₚ(L) + + + +-0.45 + +-0.15 + +0.15 + +0.45 + +0.75 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + +L≤2048: q=0.00928 +σ=1.875, Rₚ +1/log(L/q) +Rₚ(L) + + + +-0.35 + +0.55 + +1.45 + +2.35 + +3.25 +0.00 +0.15 +0.31 +0.46 +0.62 + + + + + +L≤2048: q=0.135 +σ=2, Rₚ +L−q +Rₚ(L) + + + +-0.35 + +0.55 + +1.45 + +2.35 + +3.25 +0.00 +0.02 +0.04 +0.06 +0.08 + + + + + +L≤2048: q=0.0001 +σ=2, Rₚ +1/log(L/q) +Rₚ(L) + + + +0.72 + +0.81 + +0.91 + +1.01 + +1.10 +0.00 +0.13 +0.25 +0.38 +0.50 + + + + + +L≤2048: q=0.184 +σ=1.875, Qₘ +L−q +Qₘ(L) + + + +0.72 + +0.81 + +0.91 + +1.01 + +1.10 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + +L≤2048: q=0.00555 +σ=1.875, Qₘ +1/log(L/q) +Qₘ(L) + + + +0.75 + +1.02 + +1.30 + +1.58 + +1.85 +0.00 +0.15 +0.29 +0.44 +0.58 + + + + + +L≤2048: q=0.149 +σ=2, Qₘ +L−q +Qₘ(L) + + + +0.75 + +1.02 + +1.30 + +1.58 + +1.85 +0.00 +0.02 +0.05 +0.07 +0.09 + + + + + +L≤2048: q=0.000436 +σ=2, Qₘ +1/log(L/q) +Qₘ(L) + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation_en.svg" new file mode 100644 index 000000000..806347658 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extension_extrapolation_en.svg" @@ -0,0 +1,212 @@ + + +Linearized full-window extrapolation with large-size data + + + +-0.45 + +-0.15 + +0.15 + +0.45 + +0.75 +0.00 +0.12 +0.25 +0.37 +0.49 + + + + + +L≤2048: q=0.19 +σ=1.875, Rₚ +L−q +Rₚ(L) + + + +-0.45 + +-0.15 + +0.15 + +0.45 + +0.75 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + +L≤2048: q=0.00928 +σ=1.875, Rₚ +1/log(L/q) +Rₚ(L) + + + +-0.35 + +0.55 + +1.45 + +2.35 + +3.25 +0.00 +0.15 +0.31 +0.46 +0.62 + + + + + +L≤2048: q=0.135 +σ=2, Rₚ +L−q +Rₚ(L) + + + +-0.35 + +0.55 + +1.45 + +2.35 + +3.25 +0.00 +0.02 +0.04 +0.06 +0.08 + + + + + +L≤2048: q=0.0001 +σ=2, Rₚ +1/log(L/q) +Rₚ(L) + + + +0.72 + +0.81 + +0.91 + +1.01 + +1.10 +0.00 +0.13 +0.25 +0.38 +0.50 + + + + + +L≤2048: q=0.184 +σ=1.875, Qₘ +L−q +Qₘ(L) + + + +0.72 + +0.81 + +0.91 + +1.01 + +1.10 +0.00 +0.03 +0.06 +0.09 +0.12 + + + + + +L≤2048: q=0.00555 +σ=1.875, Qₘ +1/log(L/q) +Qₘ(L) + + + +0.75 + +1.02 + +1.30 + +1.58 + +1.85 +0.00 +0.15 +0.29 +0.44 +0.58 + + + + + +L≤2048: q=0.149 +σ=2, Qₘ +L−q +Qₘ(L) + + + +0.75 + +1.02 + +1.30 + +1.58 + +1.85 +0.00 +0.02 +0.05 +0.07 +0.09 + + + + + +L≤2048: q=0.000436 +σ=2, Qₘ +1/log(L/q) +Qₘ(L) + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability.svg" new file mode 100644 index 000000000..d32f16c34 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability.svg" @@ -0,0 +1,180 @@ + + +热力学外推极限的拟合窗口稳定性 + + +64 + +128 + +256 + +512 + +-0.25 + +0.54 + +1.32 + +2.11 + +2.90 +σ=1.875 +Lₘᵢₙ +Rₚ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +-0.25 + +0.39 + +1.02 + +1.66 + +2.30 +σ=2.0 +Lₘᵢₙ +Rₚ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +0.75 + +0.93 + +1.10 + +1.27 + +1.45 +σ=1.875 +Lₘᵢₙ +Qₘ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +0.75 + +0.97 + +1.20 + +1.42 + +1.65 +σ=2.0 +Lₘᵢₙ +Qₘ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability_en.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability_en.svg" new file mode 100644 index 000000000..0faa1d2a1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/figures/extrapolation_window_stability_en.svg" @@ -0,0 +1,180 @@ + + +Fit-window stability of thermodynamic limits + + +64 + +128 + +256 + +512 + +-0.25 + +0.54 + +1.32 + +2.11 + +2.90 +σ=1.875 +Lₘᵢₙ +Rₚ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +-0.25 + +0.39 + +1.02 + +1.66 + +2.30 +σ=2.0 +Lₘᵢₙ +Rₚ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +0.75 + +0.93 + +1.10 + +1.27 + +1.45 +σ=1.875 +Lₘᵢₙ +Qₘ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + + +64 + +128 + +256 + +512 + +0.75 + +0.97 + +1.20 + +1.42 + +1.65 +σ=2.0 +Lₘᵢₙ +Qₘ,∞ + + + + + + + + + + + + + + + + + + + +power + +log + diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/review-2026-07-30.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/review-2026-07-30.md" new file mode 100644 index 000000000..961bce0c5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/review-2026-07-30.md" @@ -0,0 +1,27 @@ +# `track_a_report_zh.md` 审阅记录 + +## 已应用 + +- 重写摘要的主要结果,将组织方式由“数值清单”改为“观测结果 → 物理含义 → 证据边界”。 +- 明确区分“与 σ*=2 proposal 相容”和“尚不能排除 σ*=7/4”。 +- 增加中心临界点的 Rₚ、Qₘ 有限尺寸流图。 +- 增加 χ(L) 与 L≥128 幂律拟合图,直接展示 η 表格的数据基础。 +- 增加 power 与 marginal/log 竞争外推图,并明确标出未测量的预测区。 +- 增加外推极限随 L_min 变化的窗口稳定性图。 +- 增加 L≤65536 注册预测区间内最大模型分离度图。 +- 在图注中限制外推曲线的证据强度,避免将模型预测表述为数值结果。 +- 同步英文摘要、五张英文图及英文图注。 +- 增加 `reports/AGENTS.md`,要求修改任一语言版本时检查另一版本。 + +## 本轮未改 + +- 第 4–10 节之间重复出现的结论尚未压缩。 +- 参考文献与 PDF proposal 的正式引文尚未补入。 +- MC 采样收敛与热力学外推收敛尚未单列为一个诊断小节。 + +## 验证 + +- `git diff --check`:通过。 +- 两个 SVG:XML 解析通过。 +- Markdown 中的两个相对图片路径:存在且各引用一次。 +- 当前环境没有可用的 SVG rasterizer,因此未完成像素级视觉检查。 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_en.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_en.md" new file mode 100644 index 000000000..158642d8b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_en.md" @@ -0,0 +1,596 @@ + + +# Issue #86 Track A Reproduction and Extension Report (English) + +**Project:** Long-range/short-range universality boundary in the 2D classical long-range Ising model + +**Official challenge:** [QuantumBFS/quantum.harness Issue #86](https://github.com/QuantumBFS/quantum.harness/issues/86) + +**Methods:** Fukui–Todo/FK $O(N)$ cluster Monte Carlo; independent Clock factorized-Metropolis cross-check + +**Data cutoff:** 2026-07-30 + +**Conclusion label:** **Finite-size reproduction successful; thermodynamic discrimination remains inconclusive at the completed scales.** + +--- + +## 1. Executive summary + +We selected Track A of Issue #86 and studied the two-dimensional square-lattice +long-range Ising model + +$$ +H=-\sum_{i The expected finite-size drift is reproduced, but the registered analysis +> does not distinguish $\sigma_*=7/4$ from $\sigma_*=2$. + +--- + +## 6. Added Challenge 1: extend the size ladder to $L=2048$ + +### Question + +Is the official $L\le512$ ladder simply too small? Does extending the +central data to $L=768,1024,1536,2048$ stabilize the extrapolation? + +### Results + +- Central data reach $L=2048$ with two seeds for + $\sigma=1.75,1.875,2.0$; +- $\sigma=2.5$ has one successful seed at $L=1024,2048$; +- $R_p,Q_m$ at $\sigma=1.875$ move clearly toward the published + thermodynamic estimates; +- $R_p=-0.0761$ at $\sigma=2.0,L=2048$, so finite-size effects remain + visible; +- the larger ladder reduces strict underdetermination but does not remove + model and window dependence. + +![Linearized power/log extrapolations using only L≤512 and after adding L=768–2048.](figures/extension_extrapolation_en.svg) + +**Figure 6 | Large-size data and full-window linearized extrapolations.** +The left column uses $x=L^{-q}$ and the right uses $x=1/\log(L/q)$. Blue +circles show only the added $L=768,1024,1536,2048$ data; blue solid lines are +fits to the full $L=64$–$2048$ window. The $L\le512$ raw points, baseline +fits, and their annotations are omitted; each panel labels only the fitted +$q$ for the full window. + +**Interpretation.** The large change in the previously unphysical +$\sigma=2.0$ power intercepts shows that the $L\le512$ ladder was too short to +constrain a free three-parameter correction reliably. Adding four larger sizes +improves conditioning, but the surviving power–log disagreement through +$L=2048$ means that more range alone has not stabilized the asymptotic +interpretation. + +### Assessment + +The extension strengthens the reproduction but does not adjudicate the +boundary. It supports the officially accepted negative result that accessible +scales remain insufficient to distinguish the scenarios. + +--- + +## 7. Added Challenge 2: forecast the distinguishable size + +### Question + +If the current ladder is inconclusive, at what size does the separation +between the two fitted means exceed propagated parameter and Monte Carlo +uncertainty by $3\sigma$? + +### Method + +We evaluated +$$ +L=3072,4096,6144,8192,12288,16384,32768,65536 +$$ +At fixed published $\beta_c$ and for the two registered power and marginal/log +forms, the denominator includes only the two fits' parameter-prediction +covariances and a future Monte Carlo standard error extrapolated from the +achieved level. It does not propagate $\beta_c$ systematics or treat +additional model forms as random uncertainty. + +### Result + +Every registered forecast for the primary observables returns `>65536`. +This does not prove that $L=65536$ is physically insufficient. It means +that, under this conditional error budget, merely extending the same type of +data does not guarantee discrimination. + +By group, both $R_p$ and $Q_m$ at $\sigma=1.875$ show that the two asymptotic +descriptions remain too close over the planned size range near the Sak +candidate boundary. Neither observable reaches the threshold at +$\sigma=2.0$ either, showing that simulating directly at the geometric +candidate does not automatically improve discrimination. Agreement between +the two observables means that the bottleneck affects both topological +wrapping and magnetization-fluctuation channels. + +![Maximum model separation reached over the registered forecast range for each fit window.](figures/distinguishability_forecast_en.svg) + +**Figure 7 | Distinguishable-size forecast.** Each point is the maximum +power–log separation reached over the registered candidate sizes +$3072\le L\le65536$ for the corresponding $L_{\min}$ fit. The dashed line is +the $3\sigma$ decision threshold. Every $\sigma=1.875,2.0$ forecast for +$R_p,Q_m$ remains far below it, so `>65536` is a planning result after +uncertainty propagation, not a claim about unmeasured physics. + +**Interpretation.** Within the registered model pair, parameter-prediction +uncertainty and the assumed future Monte Carlo error keep every +observable/window combination below $3\sigma$. Thus `>65536` is a planning +result under the specified error model, not a claim about unmeasured physics. + +### Assessment + +This is a principal new result. The bottleneck is not only the maximum size +but also correction structure that remains non-identifiable from these data. +The unpropagated $\beta_c$ and additional model-form systematics further limit +how generally the threshold can be interpreted. Future work should prioritize: + +1. denser critical windows and improved $\beta_c$; +2. theoretically constrained joint fits rather than free three-parameter + single-observable fits; +3. independent observables or algorithms; +4. sizes chosen to maximize model-prediction separation. + +--- + +## 8. Added Challenge 3: independent Clock-algorithm cross-check + +### Question + +Can a local Clock implementation with different systematic errors reproduce +the FK thermodynamic observables? + +### Results + +Through $L=256$, all six comparisons pass the preregistered $3\sigma$ +gate: + +| $\sigma$ | $L$ | $Q_m$ difference | $\chi$ difference | +|---:|---:|---:|---:| +| 1.875 | 64 | +0.44σ | +0.45σ | +| 1.875 | 128 | +0.33σ | +0.29σ | +| 1.875 | 256 | +0.63σ | +0.24σ | +| 2.0 | 64 | +2.06σ | +2.16σ | +| 2.0 | 128 | +1.17σ | +1.13σ | +| 2.0 | 256 | +1.04σ | +0.86σ | + +At $L=512$: + +- $\sigma=1.875$: $Q_m$ differs by $-3.21\sigma$; +- $\sigma=2.0$: $Q_m$ differs by $-4.38\sigma$; +- maximum $\tau_{\rm int}$ is approximately 7,860 and 8,372 sweeps. + +At $\sigma=1.875$, both observables agree within $1\sigma$ through +$L=256$, showing that Clock and FK sample the same equilibrium distribution +on small and intermediate sizes in the crossover regime. At $\sigma=2.0$, +the discrepancy decreases from about $2\sigma$ at $L=64$ to about $1\sigma$ +at larger sizes, so it does not form a growing physical separation. Only at +$L=512$ do both groups cross $3\sigma$ while developing very large +autocorrelation times. This group therefore diagnoses Clock mixing failure, +not algorithm-dependent physics at $\sigma=1.875$ or 2.0. + +### Assessment + +The $L=512$ discrepancy occurs together with a sharp increase in +autocorrelation, showing that one million local-update sweeps are not +sufficiently mixed. This is a scale limit of local Clock dynamics, not a +refutation of the equilibrium FK result. The negative result demonstrates +that independent algorithm comparisons must audit mixing and autocorrelation, +not only final means. + +--- + +## 9. Limitations + +1. The NN $R_p=0$ anchor is consistent only at roughly the two-error level + and should be improved. +2. Large-size crossings cover only $L=1024,2048$ for $\sigma=1.875$ and + $L=1024$ for $\sigma=2.0$; the registered crossing grid is incomplete. +3. One $\sigma=2.5$ seed is missing at both $L=1024$ and $L=2048$. +4. Some free three-parameter fits hit bounds or have poor absolute fit quality; + their $O_\infty$ values cannot be interpreted. +5. Clock is insufficiently mixed at $L=512$. +6. Blind adjudication has not yet been performed. +7. The public escrow records the generation revision and file checksums, but + public packaging follows the local analysis; timestamps and locked records + therefore remain part of the chronology audit. + +--- + +## 10. Final conclusion and deliverable assessment + +### Scientific conclusion + +**Finite-size reproduction successful; thermodynamic discrimination remains +inconclusive.** + +This is an explicitly accepted outcome of the official challenge. The data do +not support choosing either the Sak or geometric boundary under the locked +rules. A claim based on one preferred fit would violate the official +no-one-fit rule. + +### Deliverable status + +- Short-range/long-range controls: substantially complete; +- base finite-size curves and crossings: complete; +- competing corrections, model selection, and window stability: complete; +- raw data and locked records: published in this PR with a checksum manifest; +- new research edge: an uncertainty-controlled negative result and an + independent algorithmic scale audit; +- before final submission: obtain blind adjudication. + +--- + +## 11. Main artifacts + +- `locked_analysis.md`: official base-analysis registration; +- `locked_extension_analysis.md`: extension-analysis registration; +- `clock_crosscheck_protocol.md`: Clock cross-check gate; +- `data_manifest.md` and `data_manifest.sha256`: public frozen-data escrow, + generation revision, and integrity hashes; +- `results/track_a_20260727/analysis/aggregated.csv`: base aggregate; +- `results/track_a_20260727/analysis/crossings.csv`: base crossings; +- `results/track_a_20260727/analysis/eta_fits.csv`: eta fits; +- `results/nn_v3_20260730/analysis/eta_fit.csv`: strict-NN eta calibration; +- `results/nn_v3_20260730/analysis/nn_eta_power_law_fit.png`: strict-NN fit and residuals; +- `results/track_a_cutoff_analysis_20260730/combined_critical.csv`: cutoff + central data; +- `results/track_a_cutoff_analysis_20260730/model_fits.csv`: 1,000-bootstrap + model fits; +- `results/track_a_cutoff_analysis_20260730/distinguishable_size.csv`: + distinguishable-size forecast; +- `results/clock_production_20260729/comparison_cutoff.csv`: Clock–FK + comparison; +- `research_log.md`: complete research log. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_zh.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_zh.md" new file mode 100644 index 000000000..ba049d16c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/reports/track_a_report_zh.md" @@ -0,0 +1,526 @@ + + +# Issue #86 Track A 复现与扩展研究报告(中文版) + +**项目:** 二维经典长程 Ising 模型的长程—短程普适性边界 + +**官方挑战:** [QuantumBFS/quantum.harness Issue #86](https://github.com/QuantumBFS/quantum.harness/issues/86) + +**方法:** Fukui–Todo/FK $O(N)$ 集群 Monte Carlo;独立 Clock factorized-Metropolis 交叉验证 + +**数据截止:** 2026-07-30 + +**结论标签:** **有限尺寸复现成功;在已完成尺度上,热力学极限判别仍不确定。** + +--- + +## 1. 摘要 + +本工作选择 Issue #86 的 Track A,研究二维平方晶格长程 Ising 模型 + +$$ +H=-\sum_{i 预期的有限尺寸漂移得到复现;仅凭官方 $L\le512$ 基线,修正模型和 +> 热力学边界均不可辨识,因而不能区分 $\sigma_*=7/4$ 与 +> $\sigma_*=2$。 + +--- + +## 6. 新增挑战 1:把尺寸阶梯扩展到 $L=2048$ + +### 问题 + +官方的 $L\le512$ 是否过小?把中心数据扩展到 +$L=768,1024,1536,2048$ 后,外推是否会稳定? + +### 结果 + +- $\sigma=1.75,1.875,2.0$ 的中心数据以两个种子达到 $L=2048$; +- $\sigma=2.5$ 在 $L=1024,2048$ 各有一个成功种子; +- $\sigma=1.875$ 的 $R_p,Q_m$ 明显向论文热力学估计移动; +- 在 $\sigma=2.0,L=2048$,$R_p=-0.0761$,说明有限尺寸效应仍然可见; +- 更大的尺寸阶梯减轻了严格的欠定问题,但没有消除模型和窗口依赖。 + +![中心临界点处 Rₚ 与 Qₘ 的有限尺寸流。](figures/critical_finite_size_extended.svg) + +**图 3|扩展尺寸上的有限尺寸流。** 点和误差棒为冻结中心数据;横轴采用 +对数尺度,虚线给出二维短程 Ising 锚点。 + +**解读。** 在 $L=2048$,$\sigma=2.5$ 已达到 +$R_p=0.01065,\ Q_m=0.85351$,接近短程锚点;相比之下, +$\sigma=1.75,1.875,2.0$ 仍与锚点保持可见偏离。这解析出了向短程固定点 +靠近的有限尺寸流,但不能唯一确定其渐近边界。 + +### 6.1 扩展后的完整窗口比较 + +扩展窗口的最大尺寸中心值为: + +| $\sigma$ | $R_p(L=2048)$ | $Q_m(L=2048)$ | 种子数 | +|---:|---:|---:|---:| +| 1.75 | -0.376800(16) | 0.76486(21) | 2 | +| 1.875 | -0.1885(103) | 0.80589(17) | 2 | +| 2.0 | -0.076125(19) | 0.83474(11) | 2 | +| 2.5 | 0.01065 | 0.85351 | 1 | + +这四组中心数据分别说明: + +- $\sigma=1.75$:$R_p$ 显著为负且 $Q_m$ 最低,说明即使到 $L=2048$ + 仍保持最清楚的长程固定点特征。 +- $\sigma=1.875$:两种比值均向论文热力学估计移动,说明扩展尺寸正在 + 解析 Sak 候选边界附近的缓慢交叉,但尚未达到稳定极限。 +- $\sigma=2.0$:$R_p$ 仍为负、$Q_m$ 仍低于短程锚点,说明几何边界 + 候选点在当前尺度仍有显著有限尺寸修正;它既不等于已经证明长程,也不 + 等于已经流到短程。 +- $\sigma=2.5$:$R_p$ 接近 0、$Q_m$ 接近 0.856216,说明该组已经流向 + 二维短程 Ising 普适类。由于只有一个种子,其统计精度不能与前三组 + 等量比较。 + +在完整的 $L=64$–$2048$ 窗口中: + +| $\sigma$ | 观测量 | AICc power | AICc log | $\lvert\Delta\mathrm{AICc}\rvert$ | +|---:|---|---:|---:|---:| +| 1.875 | $R_p$ | 17.54 | 17.36 | 0.18 | +| 1.875 | $Q_m$ | 13.99 | 14.06 | 0.07 | +| 2.0 | $R_p$ | 19.06 | 19.12 | 0.06 | +| 2.0 | $Q_m$ | 20.95 | 21.04 | 0.10 | + +每组模型比较的物理含义是: + +- $\sigma=1.875$ 的 $R_p$ 与 $Q_m$ 分别只有 + $|\Delta\mathrm{AICc}|=0.18$ 和 0.07。拓扑绕圈量与磁化比都无法区分 + 幂修正和边缘对数修正,因此模型歧义不是单一观测量的偶然现象。 +- $\sigma=2.0$ 的相应差异为 0.06 和 0.10。几何边界候选点同样没有 + 显示对某种修正形式的统计偏好,因此不能由“更接近 $\sigma=2$”推断 + 已经选定几何边界。 +- 四组比较共同说明:新增尺寸使三参数拟合可计算,却没有让渐近修正形式 + 可辨识;删除较小尺寸后极限更不稳定,进一步排除了稳健边界判决。 + +![σ=1.875 和 2.0 的 Rₚ、Qₘ 在各自修正变量中的线性外推。](figures/competing_extrapolations.svg) + +**图 4|线性化的竞争外推。** 左列使用 $x=L^{-q}$,右列使用 +$x=1/\log(L/q)$;两种模型均写成 $O(L)=O_\infty+a x$。蓝色空心点为 +$L\le2048$ 冻结数据,直线为 $L_{\min}=64$ 拟合。 + +**解读。** 两种修正坐标中数据都近似线性,且 +$\lvert\Delta\mathrm{AICc}\rvert$ 仅为 0.06–0.18,却给出不同的 +$x=0$ 截距。因此拟合外观和信息准则都不能唯一选择热力学极限。 + +![不同 L_min 下由幂律和对数修正得到的热力学外推极限。](figures/extrapolation_window_stability.svg) + +**图 5|外推窗口稳定性。** 横轴为共同的原始尺寸 $L$,即拟合保留的 +最小尺寸;纵轴为相应模型给出的热力学极限。误差棒为 1,000 次 +bootstrap 的 16%–84% 区间,是外推参数不确定度而非原始测量误差。 + +**解读。** 提高拟合起点后,power 与 log 的外推值明显移动,部分区间 +急剧变宽或触及参数边界。共同横轴只编码拟合窗口,不把两种模型各自的 +修正变量混在同一坐标中;图中不稳定性来自截距对窗口的敏感性。 + +![仅显示新增大尺寸数据及完整窗口外推。](figures/extension_extrapolation.svg) + +**图 6|大尺寸数据与完整窗口的线性化外推。** 左列为 +$x=L^{-q}$,右列为 $x=1/\log(L/q)$。蓝色圆点只显示新增的 +$L=768,1024,1536,2048$ 数据;蓝色实线是使用完整 +$L=64$–$2048$ 窗口得到的拟合。图中不显示 $L\le512$ 原始点、基线 +拟合或其标注;每个面板只标出当前完整窗口拟合的 $q$。 + +**解读。** 图中直观展示新增大尺寸点与最终完整窗口外推的关系。与官方 +四尺寸基线的数值结果相比,$\sigma=2.0$ 的 power 极限由病态的 +$R_{p,\infty}=3.06,\ Q_{m,\infty}=1.76$ 移至 0.257 和 0.922; +但完整窗口中的 power/log 截距仍不一致,所以扩展改善了约束而未消除 +模型依赖。 + +### 判断 + +该扩展加强了复现证据,但没有裁决边界争议。结果支持官方允许的负结论: +当前可达尺度仍不足以区分两种情景。 + +--- + +## 7. 新增挑战 2:预测可区分尺寸 + +### 问题 + +如果当前尺寸阶梯不能判别,那么在什么尺寸上,两种拟合均值之差才会超过 +参数误差和 Monte Carlo 误差传播后的 $3\sigma$? + +### 方法 + +评估的预测尺寸为 + +$$ +L=3072,4096,6144,8192,12288,16384,32768,65536. +$$ + +在固定论文 $\beta_c$、固定 power 与 marginal/log 两种预注册形式的 +条件下,误差分母只包含两套拟合的参数预测协方差,以及按当前达到水平 +外推的未来 Monte Carlo 标准误。这里没有传播 $\beta_c$ 系统误差, +也没有把两种形式之外的模型不确定性作为随机误差加入。 + +### 结果 + +主要观测量的所有预注册预测都返回 `>65536`。这并不证明 +$L=65536$ 在物理上仍然不够,而是说明:在上述条件性误差预算下, +仅仅继续增加同类数据的最大尺寸,不能保证获得判别。 + +分组来看,$\sigma=1.875$ 的 $R_p$ 与 $Q_m$ 都说明 Sak 候选边界附近 +的两种渐近描述在可规划尺寸上仍过于接近;$\sigma=2.0$ 的两种观测量 +也未达到阈值,说明直接模拟几何边界候选点并不会自动提高判别力。两个 +观测量给出相同结论,意味着瓶颈同时存在于拓扑绕圈和磁化涨落通道。 + +![各拟合窗口在 L≤65536 注册预测区间内达到的最大模型分离度。](figures/distinguishability_forecast.svg) + +**图 7|可区分尺寸预测。** 每个点表示对应 $L_{\min}$ 拟合在注册候选 +尺寸 $3072\le L\le65536$ 中达到的最大 power–log 分离度;虚线为 +$3\sigma$ 判别门槛。 + +**解读。** $\sigma=1.875,2.0$ 的 $R_p,Q_m$ 在所有拟合窗口中的预测 +分离度都远低于门槛。在注册的两种模型之间,参数预测不确定度与假定的 +未来 Monte Carlo 误差使分离度未达阈值;因此 `>65536` 是指定误差模型 +下的规划结果,而不是断言未测量系统在 $L=65536$ 仍不具有渐近行为。 + +### 判断 + +这是本工作的主要新增结果之一。瓶颈不仅是最大尺寸,还包括当前数据下 +不可辨识的修正结构。未传播的 $\beta_c$ 与额外模型形式系统误差只会 +进一步限制该阈值的普适解释。后续更有效的工作应优先考虑: + +1. 更密集的临界窗口和更准确的 $\beta_c$; +2. 采用具有理论约束的联合拟合,而不是自由的三参数单观测量拟合; +3. 引入独立观测量或独立算法; +4. 选择能最大化不同模型预测差异的尺寸。 + +--- + +## 8. 新增挑战 3:独立 Clock 算法交叉验证 + +### 问题 + +系统误差来源不同的局域 Clock 实现,能否复现 FK 的热力学观测量? + +### 结果 + +在 $L\le256$ 时,以下 6 组比较全部通过预注册的 $3\sigma$ 门槛: + +| $\sigma$ | $L$ | $Q_m$ 差异 | $\chi$ 差异 | +|---:|---:|---:|---:| +| 1.875 | 64 | +0.44σ | +0.45σ | +| 1.875 | 128 | +0.33σ | +0.29σ | +| 1.875 | 256 | +0.63σ | +0.24σ | +| 2.0 | 64 | +2.06σ | +2.16σ | +| 2.0 | 128 | +1.17σ | +1.13σ | +| 2.0 | 256 | +1.04σ | +0.86σ | + +在 $L=512$ 时: + +- $\sigma=1.875$ 的 $Q_m$ 相差 $-3.21\sigma$; +- $\sigma=2.0$ 的 $Q_m$ 相差 $-4.38\sigma$; +- 最大 $\tau_{\rm int}$ 分别约为 7,860 和 8,372 sweeps。 + +对 $\sigma=1.875$,$L=64$–$256$ 的两种观测量均在 $1\sigma$ 内一致, +说明 Clock 与 FK 在交叉区的小中尺寸采样同一平衡态分布。对 +$\sigma=2.0$,差异从 $L=64$ 的约 $2\sigma$ 随尺寸先降到约 +$1\sigma$,也没有形成随尺寸持续增长的物理偏离。两组只在 $L=512$ +同时伴随巨大自相关而越过 $3\sigma$,因此该组数据诊断的是 Clock +混合失败,而不是 $\sigma=1.875$ 与 2.0 具有不同的算法依赖物理。 + +### 判断 + +$L=512$ 的差异与自相关时间陡增同时出现,说明一百万次局域更新 sweep +仍未充分混合。这是局域 Clock 动力学的尺度限制,并非对平衡态 FK 结果 +的否定。该负结果表明,独立算法比较必须审计混合和自相关,而不能只比较 +最终均值。 + +--- + +## 9. 局限性 + +1. NN $R_p=0$ 锚点只在约两个误差量级内一致,仍需提高精度。 +2. 大尺寸 crossing 仅覆盖 $\sigma=1.875$ 的 $L=1024,2048$ 和 + $\sigma=2.0$ 的 $L=1024$,预注册 crossing 网格不完整。 +3. $\sigma=2.5$ 在 $L=1024$ 和 $L=2048$ 各缺一个种子。 +4. 部分自由三参数拟合触及参数边界或绝对拟合质量较差,因此其 + $O_\infty$ 不能解释。 +5. Clock 在 $L=512$ 时混合不足。 +6. 尚未完成盲评。 +7. 公开数据清单已记录生成代码 revision 和文件校验值;但公开打包发生在 + 本地分析之后,因此仍需结合时间戳和锁定记录审计时间顺序。 + +--- + +## 10. 最终结论与交付评估 + +### 科学结论 + +**有限尺寸复现成功;热力学极限判别仍不确定。** + +这是官方挑战明确允许的结果。按照锁定规则,当前数据不支持选择 Sak +边界或几何边界;根据某一个偏好拟合作结论会违反官方的 no-one-fit 规则。 + +### 交付状态 + +- 短程/长程控制:基本完成; +- 基础有限尺寸曲线与 crossing:完成; +- 竞争修正、模型选择和窗口稳定性:完成; +- 原始数据与锁定记录:已随本 PR 公开,并附校验清单; +- 新研究边缘:得到受误差控制的负结果,并完成独立算法的尺度审计; +- 最终提交前:完成盲评。 + +--- + +## 11. 主要产物 + +- `locked_analysis.md`:官方基础分析预注册; +- `locked_extension_analysis.md`:扩展分析预注册; +- `clock_crosscheck_protocol.md`:Clock 交叉验证门槛; +- `data_manifest.md` 与 `data_manifest.sha256`:公开冻结数据、生成代码 revision + 与完整性校验; +- `results/track_a_20260727/analysis/aggregated.csv`:基础汇总; +- `results/track_a_20260727/analysis/crossings.csv`:基础 crossing; +- `results/track_a_20260727/analysis/eta_fits.csv`:$\eta$ 拟合; +- `results/nn_v3_20260730/analysis/eta_fit.csv`:严格 NN 的 $\eta=1/4$ 校准; +- `results/nn_v3_20260730/analysis/nn_eta_power_law_fit.png`:严格 NN 拟合与残差; +- `results/track_a_cutoff_analysis_20260730/combined_critical.csv`:截止时的中心数据; +- `results/track_a_cutoff_analysis_20260730/model_fits.csv`:1,000-bootstrap 模型拟合; +- `results/track_a_cutoff_analysis_20260730/distinguishable_size.csv`:可区分尺寸预测; +- `results/clock_production_20260729/comparison_cutoff.csv`:Clock–FK 对比; +- `research_log.md`:完整研究日志。 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/research_log.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/research_log.md" new file mode 100644 index 000000000..7f9edf026 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/research_log.md" @@ -0,0 +1,166 @@ +# Research log + +## 2026-07-27 source audit + +- Read arXiv:2512.04805v2 PDF and TeX source. +- Confirmed square torus minimum-image distance and sum_j J_ij = 4. +- Corrected the brief's tentative polynomial: the paper defines + Rp = - q; therefore Ising uses Rp = - 2. +- Existing Clock script is retained as a thermodynamic baseline only because it + cannot produce FK winding observables. +- Selected a direct FK reference and an exactly equivalent Poisson-event + Fukui-Todo production update. + +## 2026-07-27 local validation + +- Julia 1.11.4 deterministic tests: 20/20 passed. +- Requested smoke grid completed: sigma=1.875; L=8,16,32; beta=0.326985, + 0.336985,0.346985; two seeds; 1000 thermalization and 5000 measurements. +- All coupling sums equal 4.0; no NaN. Rp increases monotonically across the + beta window and independent seeds agree at smoke precision. +- NN control at exact beta_c gave Qm=0.8584,0.8593,0.8574 for L=8,16,32, + consistent with 0.856216. Rp was 0.0200,0.0272,0.0317 with block errors + 0.0146,0.0172,0.0140; this is close but the latter two are about two standard + errors high and should be monitored with more seeds. +- Production outputs preserve per-cell summaries, raw block values, metadata, + and scheduler logs in non-overlapping directories. + +## 2026-07-27 SCNet production pilot + +- Slurm job: `22957014_1`, partition `xhacnormalb`. +- Scheduler result: `COMPLETED`, exit code `0:0`, elapsed 13 s, peak RSS + 305484 KiB. +- Compute node `a01r04n07`, Julia 1.12.6. +- Cell: L=16, sigma=1.75, beta=0.326136, seed=11002, 10000 thermalization + sweeps and 100000 measurement sweeps. +- Results: Qm=0.6457855520, chi=56.66194297, R0=0.51451, R2=0.22275, + Rp=-0.80627, tau_int(m2)=3.169, sumJ=3.9999999999999987. +- stderr was empty. Summary, 20 raw blocks, metadata, and scheduler logs were + fetched to local `results/production_20260727/`. + +## 2026-07-27 Track A partial production validation + +- Slurm array `22958313`: the complete L=64,128,256 subset (72 cells) was + fetched while all 24 L=512 cells continued running. +- Partial escrow is complete: 72 summaries, 72 block files, 72 metadata files, + and zero non-empty stderr logs. +- Maximum observed tau_int(m2) is 7.311 sweeps; maximum normalization error is + 2.22e-15. +- The sigma=2.5 central-beta control trends toward the published SR values: + Rp = -0.03368, -0.00506, 0.00267 and Qm = 0.83641, 0.84443, 0.84716 for + L=64,128,256. Rp is already consistent with convergence to zero; Qm remains + below 0.857 at these finite sizes but moves monotonically toward it. +- All preregistered Rp and Qm crossings for 64/128 and 128/256 lie inside the + sampled beta window. Final fits and conclusions remain blocked on L=512. + +## 2026-07-28 Track A final result + +- Slurm array `22958313` completed all 96 cells with exit code 0:0. +- Local escrow verified: 96 summaries, 96 raw block files, 96 metadata files, + and zero non-empty stderr logs. +- At published beta_c, the L=512 values are: + - sigma=1.75: Rp=-0.454225, Qm=0.741986. + - sigma=1.875: Rp=-0.271760, Qm=0.785230. + - sigma=2.0: Rp=-0.130795, Qm=0.815894. + - sigma=2.5: Rp=0.009190, Qm=0.852077. +- Eta fits using L>=64 (L>=128) are 0.3834 (0.3729), 0.3290 (0.3204), + 0.2962 (0.2915), and 0.2541 (0.2546) for the four sigma values. +- The sigma=2.5 SR control approaches Rp=0, Qm=0.857, eta=0.25. +- At sigma=1.875 the finite-size data move toward the published Rp=-0.207(9), + Qm=0.815(8), and eta=0.293(3), but have not converged by L=512. +- With four sizes, unrestricted three-parameter power/log correction fits have + only one residual degree of freedom; after dropping L=64 they are + underdetermined. AICc is undefined and model-dependent limits are unstable. +- Locked conclusion: finite-size reproduction successful; thermodynamic + discrimination is inconclusive at school-scale L<=512. + +## 2026-07-29 extension and Clock cross-check + +- Locked a pure-Julia distinguishability analysis before inspecting the full + large-size aggregate. It compares power and marginal corrections using + AICc, BIC, leave-one-size-out prediction, size-window stability, 1000 + parametric bootstrap replicas, and a 3-sigma distinguishable-size forecast. +- Implemented an independent factorized-Metropolis Clock sampler. On a fixed + L=4 configuration, 200,000 proposals gave acceptance 0.377645 versus + 0.377270 for explicit factorized Metropolis; the six-standard-error + tolerance was 0.006504. +- Small-size Clock validation job 22990977 completed 4/4 cells with empty + stderr. At sigma=1.875, Clock-minus-FK standardized differences were + (Qm,chi)=(0.77,0.75) sigma at L=64 and (-0.67,-0.99) sigma at L=128. + The preregistered 3-sigma gate passed. +- Submitted production Clock array 22991082: sigma=1.875,2.0; L=64,128,256,512; + two seeds; 50k/100k/200k/300k thermalization sweeps by size and one million + measurement sweeps per cell. It was initially pending on AssocGrpJobsLimit + while the 16-slot FK large-size array continued running. + +## 2026-07-29 interim extension analysis + +- Analyzed 23/48 completed FK large-size cells and 12/16 completed Clock + production cells using the pure-Julia scripts. All available summary, + block, and metadata counts matched; stderr was empty. +- Sigma=1.75 and 1.875 had two-seed central-beta coverage through L=2048. + At sigma=1.875, L=2048 gave Rp=-0.1885(103), Qm=0.80589(17), within 1.35 + and 1.11 combined standard errors of the published thermodynamic estimates. +- Power and marginal models remained indistinguishable at sigma=1.875: + Delta AICc was 0.18 for Rp and 0.07 for Qm over L=64--2048. Window removal + destabilized the inferred limits; the locked conclusion remained + inconclusive. +- Some sigma=1.75 fits hit the minimum correction exponent and returned + unphysical positive limits with poor absolute chi-square. These were marked + as model misspecification, not interpreted as evidence. +- All six completed Clock points through L=256 passed the 3-sigma comparison + gate. The largest standardized difference was 2.16 sigma for chi at + sigma=2.0, L=64 and decreased at larger L. + +## 2026-07-30 time-cutoff result + +- Froze 36 successful large-size cells: 30 central-beta and 6 partial crossing + cells. Central data reached L=2048 at every sigma; sigma=2.5 lacked one seed + at L=1024 and L=2048. Partial crossing coverage was retained but not + extrapolated. +- Reran the locked pure-Julia analysis with 1000 bootstrap replicas. At + sigma=1.875 and 2.0, absolute power-versus-marginal AICc differences were + <=0.18 for Rp and Qm. No registered distinguishable-size forecast reached + 3 sigma by L=65536. +- The sigma=2.5 Qm power extrapolation was 0.85623 with 16--84% bootstrap + interval [0.85494,0.85851], containing the known short-range value near + 0.857. Rp fits at sigma=2.5 and multiple sigma=1.75 fits had poor absolute + chi-square or boundary-hitting parameters and were not interpreted. +- Completed Clock production had 16/16 cells. Comparisons through L=256 + passed the 3-sigma gate, while L=512 Qm failed at -3.21 and -4.38 sigma. + Tau_int was approximately 7,860--8,372 sweeps, identifying insufficient + local-update mixing rather than a discrepancy in the FK result. +- Cutoff conclusion: finite-size reproduction successful; thermodynamic + discrimination inconclusive at the completed accessible scales. + +## 2026-07-31 nearest-neighbor completion + +- Slurm array `23025326` finished the registered strict-NN numerical work for + all 28 cells: four seeds at each of + `L=64,128,256,512,1024,2048,4096`. +- Every cell produced non-empty `summary.csv`, `blocks.csv`, and + `metadata.txt`. The array exit code was 1 because the Python 2.7 wrapper + raised a text/byte `TypeError` while writing `manifest.json` after Julia had + completed; this was classified as a packaging failure, not a simulation + failure. +- `scripts/nn_repair_manifests.py` rebuilt all 28 manifests from the frozen + run specification and saved numerical evidence without recomputation. +- Four-seed unweighted means at `L=2048` were `Qm=0.8558951` and + `Rp=0.0345500`; at `L=4096` they were `Qm=0.8517651` and `Rp=0.0094000`. + The `L=4096` seed scatter is larger under its registered 5,000-sweep + measurement budget and is retained without selection. + +## 2026-07-30 public escrow and repository migration + +- Relocated the unchanged implementation into the registered team directory + `tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/`. +- Recorded generation-code revision + `26234d49bddd6005398d35361ff98b5efbba6b88`. +- Published four frozen datasets containing 787 files and 285,369 bytes: + the 96-cell base production, the 36-cell large-size cutoff snapshot, the + 16-cell Clock production, and the cutoff analysis tables. +- Added `data_manifest.sha256` with a per-file SHA-256 checksum and + `data_manifest.md` with dataset-level tree digests and explicit exclusions. +- Public packaging occurred after the local locked analysis. Original cell + timestamps, scheduler identifiers, locked protocols, and the immutable + generation revision were retained for chronology auditing. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/blocks.csv" new file mode 100644 index 000000000..8c71983d6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.1633819169640541,0.036486472826583745 +2,0.15473255206346512,0.031875599263656025 +3,0.16606017018556596,0.03845309379265029 +4,0.14223245000839232,0.029591287847374928 +5,0.14691379117965697,0.03249062753088132 +6,0.13213648142814635,0.026244563692750272 +7,0.1888905724287033,0.04364042407287715 +8,0.16553520691394805,0.035888424457345885 +9,0.19335726916790008,0.04592124942370671 +10,0.18324544278383256,0.0413069811556796 +11,0.18174427576065064,0.042543856639872646 +12,0.1492111224770546,0.030983421886240318 +13,0.18579846733808517,0.043239738551063646 +14,0.1649624460697174,0.03644039865599411 +15,0.1591543172597885,0.034967815402518594 +16,0.1855526840686798,0.04145172286589235 +17,0.14671872779130934,0.031452433601029284 +18,0.13754348249435425,0.028519720044728844 +19,0.18056064207553862,0.04175248125608485 +20,0.18260248725414277,0.04212558710851248 +21,0.15447682625055312,0.03302657943895955 +22,0.17949604457616805,0.03943859466468853 +23,0.20284675514698028,0.046697214713205384 +24,0.14493780564069747,0.03125775601232143 +25,0.13205352121591568,0.02600521327302955 +26,0.15410996981859207,0.03425514598753915 +27,0.14702148209810256,0.03046334362845488 +28,0.16087164739370347,0.035676455363610124 +29,0.2102160122036934,0.051201622970935785 +30,0.1716382472395897,0.03876169748866258 +31,0.17402415418624878,0.03847331980291059 +32,0.1836047662615776,0.0412506838607069 +33,0.17340047154426574,0.03872906350560113 +34,0.1633567464351654,0.03658920960421168 +35,0.11759729195833206,0.02330582977944195 +36,0.16879581696987153,0.036452591916089426 +37,0.18136486262083054,0.04375827837306815 +38,0.13256647948026656,0.027441943478234542 +39,0.18541057451963425,0.042193230291759434 +40,0.1606013643860817,0.034676859718699396 +41,0.16255037902593614,0.03596976007668578 +42,0.1889846522450447,0.043950618199335226 +43,0.15878777165412902,0.03490656239362274 +44,0.15602818911075592,0.03509033450158214 +45,0.1761868168592453,0.039180893664551734 +46,0.15212726722955705,0.03261281321619372 +47,0.16867551225423813,0.03532433716423514 +48,0.136804696726799,0.027955644392541668 +49,0.14068696043491363,0.029829075895117473 +50,0.18331250429153442,0.04299863976731799 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/metadata.txt" new file mode 100644 index 000000000..7ab9de6fd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:31:09.798 +hostname=a03r05n05 +julia=1.12.6 +slurm_job=22991090 +cell=1 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/summary.csv" new file mode 100644 index 000000000..860fd545d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/001/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.336985,51002,50000,1000000,1,1000000,0.1646574019098282,0.03645698426437513,0.7436725925294905,674.4367182226563,0.19292584912109376,433.0286170312758,50,341.02327013015747,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/blocks.csv" new file mode 100644 index 000000000..55391925b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.1645666147828102,0.03684980807112521 +2,0.15619638522863388,0.032672156644276765 +3,0.15094428812265395,0.029570888031410208 +4,0.16602348017692567,0.03774001728915906 +5,0.14708010814189912,0.030722429671178185 +6,0.18748221694231032,0.04422412067743165 +7,0.17719927234649657,0.041234720719619325 +8,0.1468086924791336,0.03170770367650533 +9,0.17278101587295533,0.037893163696102114 +10,0.15811623796224594,0.03399066705659241 +11,0.15681214648485184,0.032673533090795785 +12,0.1884031185269356,0.0436136431389746 +13,0.16859676121473313,0.03762307858495596 +14,0.1901551185965538,0.044027954630700514 +15,0.17554152212142946,0.0377858200918885 +16,0.1601387600183487,0.03517626588912528 +17,0.1214272678732872,0.02319184817220191 +18,0.1915230366230011,0.04392727639427351 +19,0.14315185245275497,0.030523580803910533 +20,0.18362782626152038,0.04361225950143213 +21,0.15371895159482957,0.032028432003953125 +22,0.17794440883398055,0.04099695496109616 +23,0.16043663963079452,0.033387089217191565 +24,0.16808265447616577,0.03813346250234423 +25,0.1786897011399269,0.04109733316947605 +26,0.1316026447057724,0.02623733464940247 +27,0.18696479666233062,0.04298155916527346 +28,0.16236722172498702,0.032617810104508996 +29,0.19674151031970977,0.0459914811164317 +30,0.15148291825056076,0.03172474289409157 +31,0.1068362931728363,0.020708278968772288 +32,0.15583139712810518,0.03192325754218261 +33,0.18687207485437393,0.04178621131891826 +34,0.1968238754630089,0.046052266166126614 +35,0.14581822259426117,0.031151995564984093 +36,0.15972753303050996,0.03544876605067796 +37,0.17168981226682664,0.03808699714054568 +38,0.15245469323396682,0.03236962923133485 +39,0.17738950511217116,0.03865445303060304 +40,0.19031925051212312,0.04412692440446797 +41,0.120267265188694,0.02162160909184369 +42,0.16342093201875688,0.03455805726440491 +43,0.15984717898368836,0.03495016911055108 +44,0.1904372777581215,0.044853604052405134 +45,0.15185320219993592,0.03393977632747095 +46,0.16581678904294966,0.037441619263306594 +47,0.14807503221035004,0.02915252955877616 +48,0.19051155332326888,0.044240654273978906 +49,0.14752776824235916,0.03292285683759087 +50,0.1601651697874069,0.03442754307131769 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/metadata.txt" new file mode 100644 index 000000000..473d48fe2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:34:36.920 +hostname=a04r02n06 +julia=1.12.6 +slurm_job=22991107 +cell=2 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/summary.csv" new file mode 100644 index 000000000..8735d4a46 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/002/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.336985,62004,50000,1000000,1,1000000,0.16432583991384506,0.03604748667771375,0.7490947123391308,673.0786402871094,0.1929552939453125,457.244911323823,50,349.96805715560913,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/blocks.csv" new file mode 100644 index 000000000..e4066b81f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.14013316328302025,0.025506015574427096 +2,0.12985750776529312,0.020225392808858243 +3,0.13952083942964674,0.022616962046987935 +4,0.13133960948362947,0.021976661530816427 +5,0.12782632629424334,0.020630940552548514 +6,0.07845594758763909,0.010574854637249567 +7,0.1478119955651462,0.02579819767854545 +8,0.12745632353276015,0.021394941696165883 +9,0.09962841463685036,0.016176721765177045 +10,0.10752496213689447,0.017609306496320077 +11,0.11169922588020563,0.017626391327213026 +12,0.15913150581270458,0.030784077010778593 +13,0.0937366066366434,0.015747588160998322 +14,0.14693168692141773,0.026038678659704634 +15,0.13471987405121327,0.024188415535014652 +16,0.1042657957047224,0.016133718599636294 +17,0.13714589929506182,0.024198130557950684 +18,0.10995703563764692,0.016259191065850637 +19,0.14356579404696823,0.02617170113351564 +20,0.13709592765793205,0.02205413865784159 +21,0.13355953603759407,0.023807175958716745 +22,0.1601086296312511,0.029326461943363632 +23,0.16429726898223163,0.030394040111179844 +24,0.12090267652645707,0.021040688993425632 +25,0.13472443992123007,0.02365057777654331 +26,0.1351239410497248,0.02277130719468439 +27,0.1725236088708043,0.032885073183459096 +28,0.17237725666314363,0.03273299740714409 +29,0.11981383862048388,0.020734998479439947 +30,0.15851138983145358,0.027925031145497468 +31,0.13047195138931275,0.022810921140049432 +32,0.12771823070719837,0.020919931136800823 +33,0.14132462067976595,0.02458798977740557 +34,0.1335056206986308,0.021188917832669525 +35,0.14031867809966206,0.023584251461680906 +36,0.15282292214334012,0.02647292941259004 +37,0.1672731717377901,0.030724458444700564 +38,0.16073903260231018,0.030260019514057716 +39,0.14439546154364943,0.025418157674090024 +40,0.16043851772025228,0.030434157059368083 +41,0.09751816459298134,0.01515766617312665 +42,0.05974351095706224,0.0065118524044241784 +43,0.1487622261404991,0.026379811475094182 +44,0.1372285305686295,0.024382220773064695 +45,0.14174424513578415,0.02379093938583963 +46,0.11858341965973378,0.0199537117240774 +47,0.09482309008464217,0.013466661909177993 +48,0.16830128862261773,0.030472342695868286 +49,0.1384750305376947,0.024524925144717533 +50,0.08358993734046817,0.012210435794435884 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/metadata.txt" new file mode 100644 index 000000000..e3347fe34 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:58:08.607 +hostname=a03r05n05 +julia=1.12.6 +slurm_job=22991124 +cell=3 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/summary.csv" new file mode 100644 index 000000000..ebef80c3e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/003/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.336985,51004,100000,1000000,1,1000000,0.13255049356912077,0.02280465357244587,0.7704407036749004,2171.7072866364747,0.19327063598632813,1209.3660461034651,50,1464.7764019966125,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/blocks.csv" new file mode 100644 index 000000000..1adc0cae0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.13178312810361387,0.023532104588801186 +2,0.11594716397002339,0.019203075655008933 +3,0.15505456479564309,0.027001293865773733 +4,0.09879124279469252,0.01650505204217632 +5,0.09156010151058436,0.01172174769682516 +6,0.12686092393770815,0.021004236783088128 +7,0.1328554380223155,0.021776804433521743 +8,0.12317109401449561,0.019765528608727743 +9,0.13421025268658995,0.020807797225467658 +10,0.12079594460502267,0.020481546993314025 +11,0.10932889062091708,0.01593762003214481 +12,0.14727433457896114,0.02580884813166564 +13,0.08239754790216684,0.011818183208603634 +14,0.18017403726577758,0.03469563410641441 +15,0.1689421838209033,0.030894434492459346 +16,0.11366198180392384,0.017677899707689376 +17,0.1240219699382782,0.020796996502401247 +18,0.11631133717596531,0.018738118190420216 +19,0.13140975120812654,0.022011846070576293 +20,0.11660072834044695,0.01996474763245056 +21,0.12133130007758737,0.02019557784182981 +22,0.15822024138495325,0.028390474767806546 +23,0.13910514075309038,0.024475836104263793 +24,0.13598484664410354,0.024062199761188178 +25,0.07621136617809535,0.010945321671186862 +26,0.13004043976217508,0.021103562294825143 +27,0.14010769102796913,0.02346285034094213 +28,0.11974898593798279,0.018675274887092537 +29,0.1254200334623456,0.02123409565086323 +30,0.10770786648541689,0.017511161433885463 +31,0.11903536642491817,0.019400571923839437 +32,0.13257170538157226,0.021605281760950112 +33,0.1558508336596191,0.028671886480576312 +34,0.1427431430630386,0.024587945186192735 +35,0.060352801125496625,0.008798494051010719 +36,0.12281881998032332,0.019711632921060835 +37,0.12705723569616675,0.02176664904822423 +38,0.1123018136844039,0.017562928550665633 +39,0.1308818087182939,0.021377597026440754 +40,0.12075843162387609,0.02065885440231943 +41,0.11429589642435312,0.01959360126653781 +42,0.13954419827237724,0.022850875738875533 +43,0.13686735290959479,0.024974600326735267 +44,0.1517107490092516,0.025815102371160907 +45,0.06554536247476936,0.0089681246781673 +46,0.10015776664912701,0.015479499925338718 +47,0.1431131886154413,0.024155501929901915 +48,0.17833746046200394,0.034366398794507085 +49,0.14751989591941236,0.024444497078907966 +50,0.11931776395067573,0.019093712180376223 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/metadata.txt" new file mode 100644 index 000000000..0b1b0052d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:58:20.040 +hostname=a04r03n08 +julia=1.12.6 +slurm_job=22991125 +cell=4 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/summary.csv" new file mode 100644 index 000000000..05e7ce40f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/004/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.336985,62006,100000,1000000,1,1000000,0.12591624245709182,0.021081672527264055,0.752070315768763,2063.0117164169924,0.1934214462890625,1172.0504878116883,50,1460.3999049663544,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/blocks.csv" new file mode 100644 index 000000000..8006d108c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.11601365668438375,0.015414913201599632 +2,0.08981191822136753,0.012786994636741194 +3,0.022852926920028403,0.0011729577357008415 +4,0.10418167970324867,0.014432718728168778 +5,0.08376270968471654,0.011322363658816557 +6,0.1162195528502576,0.016346561011498 +7,0.1424451676198747,0.021855011727476704 +8,0.0699567877351772,0.00834389525210234 +9,0.09999050702038222,0.012764590748863528 +10,0.10521090975203551,0.012081935065689595 +11,0.11275816930262372,0.01373594127709864 +12,0.04528171921134926,0.0034889411826233697 +13,0.08764578340770676,0.011081209351341277 +14,0.1294157258541789,0.018543157754189944 +15,0.11488150125956163,0.015925678097086855 +16,0.06618993929666467,0.005907423740567309 +17,0.13103681571600026,0.01805508290962509 +18,0.10509692484796979,0.014218557887616728 +19,0.08626630321172997,0.009575005055425495 +20,0.11961719281822443,0.015766607724120845 +21,0.1072404695762787,0.013247106397557891 +22,0.09848405707599595,0.011049827701147067 +23,0.13040163988168352,0.018620322411560256 +24,0.11894318604781293,0.01689604414971269 +25,0.14215745240612887,0.021065457484062022 +26,0.13630019321171566,0.019516740373614522 +27,0.12568818217208608,0.01702190814069528 +28,0.12442928515076637,0.01641471595620888 +29,0.0935228630063124,0.011384191601508274 +30,0.08519842714588158,0.011278717716581772 +31,0.10435649377708324,0.012641489534961543 +32,0.13039879161468707,0.018778450332289472 +33,0.0956897558285389,0.011959843859755662 +34,0.11033926998316311,0.013639066881338556 +35,0.11083599555017426,0.015089116191768755 +36,0.12827660906412638,0.017806272972354792 +37,0.13005000329962932,0.018316585094409994 +38,0.054518213021149856,0.00515189336156901 +39,0.10475747935427353,0.012588994942403732 +40,0.12842395355491898,0.018058298980247856 +41,0.0861830229730811,0.009794758449586043 +42,0.10389363896376454,0.01392876928644379 +43,0.10873468891740777,0.013992213783045642 +44,0.12160901490957476,0.016008715167703087 +45,0.0724186260832008,0.007607760487946726 +46,0.1377047168861609,0.02045577255583193 +47,0.14051807395913637,0.02085367624167222 +48,0.09378135053543374,0.009948781550897803 +49,0.08114472437421791,0.008709810305842303 +50,0.08762591319847853,0.011619119365357568 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/metadata.txt" new file mode 100644 index 000000000..7ceed8227 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T12:47:30.666 +hostname=a01r03n04 +julia=1.12.6 +slurm_job=22991143 +cell=5 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/summary.csv" new file mode 100644 index 000000000..a350f52e4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/005/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.336985,51006,200000,1000000,1,1000000,0.1048452396528069,0.013725279360488556,0.8008962141418468,6871.137625886353,0.1935351031188965,2417.726005417021,50,6591.785177946091,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/blocks.csv" new file mode 100644 index 000000000..fee1330e1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.12913823289009743,0.01769889386589952 +2,0.07078901500259525,0.006565982050707083 +3,0.05435813964628614,0.006824774917342085 +4,0.06956102127665653,0.008355439092683081 +5,0.10054353644344956,0.012139501108234339 +6,0.05916312215537764,0.005861622763098874 +7,0.1329973738616798,0.01927600524428049 +8,0.11038857281738892,0.013758971522683893 +9,0.07207743974984623,0.008704494499115091 +10,0.1456889481061604,0.022914961957385387 +11,0.11685457611884922,0.015406488185052638 +12,0.08848052220921963,0.01231661702580055 +13,0.15264334826557896,0.02435957803931614 +14,0.1473198342511896,0.022693178656730904 +15,0.07811797742405906,0.007569926002871668 +16,0.1347350581110455,0.019220779567044193 +17,0.10062938716388307,0.012327289401030353 +18,0.0063905008820816876,0.00010924988850538612 +19,0.03204029161036014,0.002854585831585902 +20,0.09597944895350374,0.011511857361291409 +21,0.13293682339247317,0.018693728448461636 +22,0.08878398757358082,0.010194521469178701 +23,0.12627589868265204,0.017043288151283174 +24,0.10268822182980367,0.011962852642018414 +25,0.11741783988117241,0.015629831075060475 +26,0.10006529009011574,0.01282910565260764 +27,0.12871730468748138,0.01820307725472441 +28,0.13344488962097092,0.01902772584643185 +29,0.08713255356908776,0.01142955624179779 +30,0.058358638999564574,0.007808266006591155 +31,0.11120936181670986,0.014003027305416492 +32,0.13352722669932993,0.018914963512233374 +33,0.06960575675447471,0.007171284782887446 +34,0.10577842101054266,0.014008536099839939 +35,0.11185278458097019,0.016534166117615275 +36,0.12652111819041892,0.018578283968691725 +37,0.14520920789707453,0.021808907344304806 +38,0.13797979172510094,0.019899888978210028 +39,0.11035767225679011,0.015533278949282942 +40,0.07687681258488446,0.007892539105902029 +41,0.10826161396852695,0.013667145668594838 +42,0.06947300533293746,0.007540029951683507 +43,0.0744132581422571,0.008088573540480459 +44,0.10370366069064475,0.01209123303152605 +45,0.08332273361058906,0.011267587544740242 +46,0.02667029755455442,0.0018421029359089783 +47,0.13781569500737822,0.02029033980933321 +48,0.12621100504058413,0.018046186910296608 +49,0.14435988750541584,0.02210329631689463 +50,0.1269750057776924,0.01749533612232209 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/metadata.txt" new file mode 100644 index 000000000..7bfb5c60b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T12:43:40.188 +hostname=a01r03n04 +julia=1.12.6 +slurm_job=22991144 +cell=6 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/summary.csv" new file mode 100644 index 000000000..1e3529894 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/006/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.336985,62008,200000,1000000,1,1000000,0.10207684222826176,0.013601377155299577,0.7660754937034863,6689.707932271363,0.19358269609069825,3598.93967270053,50,6403.054033041,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/blocks.csv" new file mode 100644 index 000000000..7e017cf65 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.13290915762627847,0.01798676490833409 +2,0.11130761964694248,0.013741422519357548 +3,0.09914690087505441,0.010257231355045995 +4,0.06368563108024537,0.004621009445575044 +5,0.10037177838311763,0.010549975698623537 +6,0.1084866983632819,0.012162067840686665 +7,0.1101206296362594,0.012726698596791992 +8,0.05355692768834997,0.0031364838855577433 +9,0.09373703180632147,0.009304950155031709 +10,0.02906049363456259,0.0016560246395591837 +11,0.03128856500027177,0.001104912251025046 +12,0.09866486507640511,0.01030383362777363 +13,0.1182840666081931,0.01473971778978796 +14,0.11940060249922681,0.015434232738620261 +15,0.06406234971842205,0.00466134925503186 +16,0.03278210771159211,0.0012226455209806367 +17,0.06206235810389335,0.005204718121598988 +18,0.05991433400097885,0.0038137653617278276 +19,0.09680220689800044,0.009988445608484704 +20,0.14355496557934094,0.020993533674753047 +21,0.11529938216096197,0.01374263393106552 +22,0.10566262667565897,0.01238181814526302 +23,0.09379300275676943,0.009945328988733735 +24,0.0281332625420735,0.0011131700892876445 +25,0.019329364572433404,0.0009053061791954354 +26,0.004286150376364822,8.029852496028882e-5 +27,0.005851756099337945,4.9676523331552915e-5 +28,0.007242528756998945,0.00011136173203160429 +29,0.013948222878959495,0.000271661158346557 +30,0.008372903754276921,0.00016801535185814945 +31,0.0014998760441463674,5.359098124143292e-6 +32,0.018783098508091643,0.0006557801839034459 +33,0.039923768865372404,0.0024398659812978336 +34,0.0949491507109371,0.010308100982742388 +35,0.08817184959557489,0.008550053049128647 +36,0.12184558514869423,0.01531538444893669 +37,0.09356588504385727,0.00926971486262301 +38,0.06394031350194418,0.005251854137050165 +39,0.11973319198373647,0.01475660085835064 +40,0.12654674881793035,0.016357474249555595 +41,0.1353115885928739,0.018771012717989696 +42,0.08559862725609273,0.007817923418774051 +43,0.05040336188677175,0.0029476832780305977 +44,0.008803322980887606,0.00017503052034450483 +45,0.03196035042405711,0.0014760339366985979 +46,0.05083010395936726,0.004109857357866118 +47,0.10960723402634903,0.012558242062446481 +48,0.10339007284428225,0.011233815623265359 +49,0.12679602675260976,0.016326470681602236 +50,0.10829096284627449,0.012184321444104857 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/metadata.txt" new file mode 100644 index 000000000..0a487fd91 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T21:00:39.697 +hostname=a01r05n01 +julia=1.12.6 +slurm_job=22991145 +cell=7 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/summary.csv" new file mode 100644 index 000000000..9125a4579 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/007/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.336985,51008,300000,1000000,1,1000000,0.07422139220600849,0.007857792650225121,0.7010639382092009,19456.69263845189,0.19372871102523803,7859.67869082835,50,28832.93585920334,3.999999999999997 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/blocks.csv" new file mode 100644 index 000000000..45d46f8a6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.10361336387504416,0.011363974436933457 +2,0.12434680480613024,0.01574456570938379 +3,0.12695414229833987,0.016688873380895017 +4,0.1016424957590818,0.010701846991168782 +5,0.10365921628515352,0.011413313669997394 +6,0.0189845346360642,0.000605251221868846 +7,0.046688376288994915,0.0037278635209961743 +8,0.053458112082030856,0.0032693272192160635 +9,0.013389018503334956,0.0003911549957005273 +10,0.005005344710403006,5.2734918440109766e-5 +11,0.011077117898935103,0.00018016447660613286 +12,0.03852830785163387,0.0019292706879807003 +13,0.09288853779874044,0.010313482825301092 +14,0.14913478779795697,0.022431357117639283 +15,0.09453456811349314,0.010028235590162507 +16,0.11752130665607984,0.014277659619441059 +17,0.10509771312497615,0.011343883202721282 +18,0.08754555757905765,0.008298195773544358 +19,0.10423498429720639,0.011124247300522742 +20,0.03661591189102619,0.002638558481667082 +21,0.0034537748158239992,2.8307203124308577e-5 +22,0.05004562514882709,0.002841372484322204 +23,0.07076523083307838,0.005585797942883112 +24,0.09577124777079735,0.01037184482078272 +25,0.02426144402169448,0.0007178022388544737 +26,0.01240568144322897,0.0004627141229177923 +27,0.003378201385991997,2.5414711353406804e-5 +28,0.030588521107609266,0.0010622576461950018 +29,0.0799424298981059,0.008358529802233313 +30,0.10735888307881541,0.011786203316606451 +31,0.10155086053397681,0.010498925927776466 +32,0.08625888305013941,0.007738028860198182 +33,0.1193902903905604,0.014927137646697543 +34,0.08410202805165026,0.008725121283444494 +35,0.09954581042927749,0.010310154194086188 +36,0.08601049361998449,0.008107931671460279 +37,0.08222543155423483,0.007171794030269959 +38,0.11004582100239349,0.012745017331852751 +39,0.1307821272256755,0.01768926917176943 +40,0.1072813123238593,0.012126644773474351 +41,0.11431547511939424,0.013460158720449988 +42,0.07547112976320204,0.006749216914528841 +43,0.13226340190657937,0.017919921363020556 +44,0.11346266088017729,0.013677656530124807 +45,0.12883584411290067,0.016850601459508046 +46,0.1287289430337434,0.016848552077009252 +47,0.09860102976376657,0.009901318848394897 +48,0.09899681279741634,0.0100433391235956 +49,0.05831488657226437,0.0038083481806604285 +50,0.03574414502792642,0.0015384092465624206 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/metadata.txt" new file mode 100644 index 000000000..ff1a6bb87 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T21:04:48.648 +hostname=a01r05n01 +julia=1.12.6 +slurm_job=22991146 +cell=8 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/summary.csv" new file mode 100644 index 000000000..ac31d4db4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/008/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.336985,62010,300000,1000000,1,1000000,0.08009637257833557,0.008572035055686874,0.7484137498891131,20996.7834931752,0.19363759735488892,7668.789081002723,50,29048.695846796036,3.999999999999997 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/blocks.csv" new file mode 100644 index 000000000..b1a39d884 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.2035350821495056,0.05013839199974211 +2,0.17702264828681946,0.04327727208954328 +3,0.17747669942379,0.04186183721572119 +4,0.20946543262004852,0.0529927443081345 +5,0.18989280638694764,0.047479230586043454 +6,0.1940585149526596,0.04893868881292106 +7,0.22030275925397874,0.05666439939890174 +8,0.2037421113371849,0.050289083846052185 +9,0.20573466680049896,0.05186400876705447 +10,0.19196864974498748,0.04755501677567293 +11,0.19133097915649414,0.04852568167862679 +12,0.18375259197950364,0.043113413827437226 +13,0.1655979167699814,0.03822205241609062 +14,0.16997214460372925,0.040953053372816864 +15,0.19465859487056733,0.049800022101841056 +16,0.21771056734323502,0.05631217808138365 +17,0.17276389578580856,0.04328510213559309 +18,0.2065774309873581,0.05180367098350308 +19,0.21695113236904146,0.05731050466160707 +20,0.22886485981941224,0.060363000199687204 +21,0.190353979241848,0.04692382128840871 +22,0.17369915767908095,0.04269302495747696 +23,0.18977490316629408,0.04700346854802338 +24,0.23698881648778916,0.06258384205236932 +25,0.2062267595410347,0.05217365810919937 +26,0.16289275633096695,0.03842177977516267 +27,0.1817927589058876,0.043307241723406824 +28,0.17755764088630677,0.041259622759006506 +29,0.22438115099668504,0.05739451217545495 +30,0.21061332688331605,0.055661767602712915 +31,0.21609167960882186,0.05543226923740676 +32,0.22078753447532654,0.05757994376161829 +33,0.20966146723031998,0.05435731032665801 +34,0.17342552217245102,0.0436846860094583 +35,0.21569038889408113,0.056156765269089075 +36,0.1910102464079857,0.04777222873447587 +37,0.2117945052742958,0.05385425514304576 +38,0.18306421371698378,0.044971867200421005 +39,0.17519792733192444,0.04035197584105876 +40,0.19474216688871385,0.04853705735239847 +41,0.21408596255779266,0.05427542881152356 +42,0.1950095736145973,0.05069010126518792 +43,0.1691520537376404,0.042308087801854265 +44,0.23109524284601213,0.0594546541929001 +45,0.1569950434446335,0.03638015176714641 +46,0.19046308747529983,0.047910076099102444 +47,0.21247811014652251,0.05608092459062857 +48,0.19289348908662796,0.04640007238544356 +49,0.2189073793053627,0.0575193606606529 +50,0.1868864464044571,0.045865506014093914 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/metadata.txt" new file mode 100644 index 000000000..60c2a7d69 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:45:47.808 +hostname=a02r04n02 +julia=1.12.6 +slurm_job=22991174 +cell=9 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/summary.csv" new file mode 100644 index 000000000..d992e4594 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/009/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.344439,51010,50000,1000000,1,1000000,0.19670185550761224,0.04935509629427518,0.7839437639720601,805.6908001591797,0.180858314453125,360.68674300764144,50,353.7959599494934,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/blocks.csv" new file mode 100644 index 000000000..24cc6bbc8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.20545713943243027,0.052960913551033606 +2,0.19782304981946947,0.0503022590485634 +3,0.2182957574367523,0.057584087789967826 +4,0.18935616056919097,0.045908864284863585 +5,0.18727811710834502,0.046563289070635026 +6,0.19918847534656525,0.04993421270517476 +7,0.19155207538604738,0.047964315441547944 +8,0.23298379697799682,0.06358748872158951 +9,0.2106050168633461,0.05389662301657295 +10,0.18836780618429183,0.04332701671219197 +11,0.18604838440418242,0.04348389598717857 +12,0.20135403674840927,0.0506671725253302 +13,0.19714267675876618,0.05147555465865027 +14,0.22054807773828505,0.056985652413110426 +15,0.20809459004402162,0.0560600055039201 +16,0.21318986144065857,0.053870916764276376 +17,0.17837953267097473,0.0445966313652335 +18,0.18879827657938003,0.0458319165652032 +19,0.21524302155971528,0.05439437993235929 +20,0.20984122215509415,0.053412808946736036 +21,0.17783638575077057,0.04193929806811049 +22,0.20776691249608994,0.05154963283833522 +23,0.23932841092348098,0.06270103448842776 +24,0.19943561474084853,0.04971662072772395 +25,0.22033582689762116,0.05770021941727431 +26,0.1390418036222458,0.030298649847720713 +27,0.21936590616703033,0.05696775539757938 +28,0.20391982798576355,0.05300707506707869 +29,0.19736607706546783,0.04905217244733949 +30,0.22651347564458846,0.05946690406481896 +31,0.18763196506500243,0.04588890155357079 +32,0.1719078272819519,0.041506116249110846 +33,0.20830845580101012,0.0537933805433883 +34,0.23001132674217223,0.06268505140749431 +35,0.2006429672241211,0.05146114735572587 +36,0.18243384877443314,0.04421306059158725 +37,0.22161958429813386,0.05773875900961991 +38,0.2085562657594681,0.05295554741091471 +39,0.197373217689991,0.049936683269428184 +40,0.19311522517204285,0.04863694925528273 +41,0.1762317658185959,0.045628480370301254 +42,0.22104261909723283,0.05773404912758365 +43,0.18625717591047286,0.04711619324226229 +44,0.20479551117420197,0.05221085401779587 +45,0.18804968707561492,0.04907979670450436 +46,0.192445248067379,0.048670942108092814 +47,0.16355203671455384,0.03689450815159054 +48,0.17247323536872863,0.04431416197538515 +49,0.2120568447828293,0.052372913378879865 +50,0.22252685022354127,0.06014329092978866 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/metadata.txt" new file mode 100644 index 000000000..ba36e13ed --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T10:51:47.154 +hostname=a04r02n06 +julia=1.12.6 +slurm_job=22991200 +cell=10 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/summary.csv" new file mode 100644 index 000000000..36aa62d24 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/010/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.344439,62012,50000,1000000,1,1000000,0.20022977949118614,0.0507637630804171,0.7897752680702097,820.1411767958984,0.18075718896484375,346.9092898739532,50,336.2103838920593,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/blocks.csv" new file mode 100644 index 000000000..18bf7db7a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.09979882626757025,0.016679545568176468 +2,0.12453305524215103,0.02262215119281919 +3,0.17569464329779147,0.03541496621622749 +4,0.18806088653951883,0.03981061120771554 +5,0.20035482030659915,0.04564150934666532 +6,0.1311203141979873,0.02499478737714785 +7,0.1500659729398787,0.03069788294032993 +8,0.17072165309265255,0.03474844377255648 +9,0.1805907513640821,0.035342736535380025 +10,0.18619343230873348,0.038226484888908945 +11,0.13086043238341807,0.025548443564559993 +12,0.12308479780554771,0.019954029102672858 +13,0.1443454071469605,0.027608526916127307 +14,0.19953121648430824,0.04321186784909259 +15,0.16234207862466574,0.031150186637762794 +16,0.15732503660172223,0.03060418826459479 +17,0.20655031919330358,0.045404982449947125 +18,0.1911254086330533,0.03941930462321641 +19,0.19852495638132095,0.041949566382883274 +20,0.16340956972837448,0.03043055239082152 +21,0.19622478973269464,0.04291217805337068 +22,0.12183522292524576,0.021896632518793722 +23,0.1627315651908517,0.031246773165209674 +24,0.1459749812722206,0.026080907598112744 +25,0.16380421368554235,0.03170358391048604 +26,0.14864246430546046,0.029522347573015452 +27,0.1799568375699222,0.03609293958666293 +28,0.1834472497664392,0.037602803213919636 +29,0.17886314316615462,0.03688221881329656 +30,0.144247331032902,0.0280498915275393 +31,0.16653583910614253,0.03189663587115557 +32,0.18792640739902855,0.03859572148079774 +33,0.16498954965174198,0.033554753467039726 +34,0.12685382297635078,0.024002471447395 +35,0.18632665415480734,0.03766339688594286 +36,0.13489961148649454,0.02628417750718113 +37,0.16925576575025916,0.03600980097061879 +38,0.1958483500830829,0.041887068487008614 +39,0.21015859490856528,0.04726088846947501 +40,0.1277290074840188,0.021701818384750403 +41,0.19656928356066347,0.04198636451654315 +42,0.17864402556046843,0.03763390369991576 +43,0.163563126219064,0.032117198029011196 +44,0.14201779064759612,0.027309858703294856 +45,0.1524295778900385,0.029942349559500963 +46,0.15815664449483155,0.03076839583442573 +47,0.16797874659523368,0.035543400695268214 +48,0.12853504160121082,0.023633147801553064 +49,0.17469569347724317,0.03397684208754515 +50,0.16000123643875122,0.03028377786054479 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/metadata.txt" new file mode 100644 index 000000000..1475d56ae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T11:13:14.904 +hostname=a02r04n02 +julia=1.12.6 +slurm_job=22991203 +cell=11 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/summary.csv" new file mode 100644 index 000000000..e51a6ba77 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/011/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.344439,51012,100000,1000000,1,1000000,0.16406152293345333,0.0328700602989396,0.8188662589132019,2687.9839917416994,0.18115994805908203,1157.1323734308003,50,1474.6514301300049,4.0000000000000036 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/blocks.csv" new file mode 100644 index 000000000..041fe9bfb --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.14841914039850235,0.028172181303372866 +2,0.15161754138246178,0.030198459040820375 +3,0.14686331441402437,0.029271601476731645 +4,0.18687248995453118,0.03832699536731684 +5,0.06978277757838368,0.011893623510160063 +6,0.10665520143657922,0.016709211305737465 +7,0.1753818377479911,0.03545597945829777 +8,0.203697114995867,0.044627029854365494 +9,0.17154692927151918,0.03276575526841418 +10,0.1685367673739791,0.03598997944642217 +11,0.12346172772869468,0.025451931827716382 +12,0.16751830954104663,0.031419899221161826 +13,0.15114532219171525,0.029517839237576025 +14,0.1446883875526488,0.028036352039941072 +15,0.1040496097534895,0.017496712167122244 +16,0.17101933430954813,0.03394637481008767 +17,0.15236382641047239,0.028381889657262935 +18,0.181975838624686,0.03977132110958011 +19,0.1560348824314773,0.0294130958730001 +20,0.1524800721295178,0.026915046684196604 +21,0.20122255345135928,0.04299965084222435 +22,0.1953673103712499,0.041477436626225224 +23,0.16545299788489937,0.03408707445390901 +24,0.14671075772717596,0.026329425925357343 +25,0.21096894165128469,0.04691805154810243 +26,0.16814237410500646,0.03207558673291003 +27,0.12855832869037986,0.021282631613491653 +28,0.19048884639441968,0.041486670508231085 +29,0.11085618077293038,0.02007794627522786 +30,0.20185399672463536,0.04352786402340583 +31,0.19851114661619068,0.0427111167175677 +32,0.20102970850393176,0.04419425395833779 +33,0.1554825468674302,0.03152034680768353 +34,0.11806889504641295,0.021678725198356553 +35,0.15236313918828964,0.026683770996729094 +36,0.17861360596641898,0.036324087634629645 +37,0.2116605654872954,0.047453357461596866 +38,0.130517300491035,0.02479915995074497 +39,0.16099483195766806,0.030254183748308402 +40,0.10034377691820263,0.017332760158428967 +41,0.17793784455358982,0.03485191504729672 +42,0.20714025899171828,0.04631861611160606 +43,0.17466186152547597,0.03732580185640359 +44,0.08488538749963045,0.014570247344628046 +45,0.1671855327308178,0.032414240413505435 +46,0.22012139839455486,0.05085259649542559 +47,0.12214475424811244,0.020557184799178237 +48,0.08405929449796677,0.01210645268944482 +49,0.18428462177738547,0.0376467487766338 +50,0.18801655767709016,0.0393501401821014 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/metadata.txt" new file mode 100644 index 000000000..5dbf2c80d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T11:17:50.026 +hostname=a02r04n02 +julia=1.12.6 +slurm_job=22991279 +cell=12 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/summary.csv" new file mode 100644 index 000000000..44684d830 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/012/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.344439,62014,100000,1000000,1,1000000,0.15943511483879388,0.031859386471139506,0.7978670859429836,2612.184921518799,0.1812963298339844,2059.423970923367,50,1469.3203790187836,4.0000000000000036 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/blocks.csv" new file mode 100644 index 000000000..aa4087ba2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.1678639409762807,0.029499235130320777 +2,0.12156430050404743,0.019750545104244528 +3,0.15579382455903104,0.02597037873941845 +4,0.15038370730346068,0.024385576888470418 +5,0.1378416968153324,0.02006400981997298 +6,0.11837155484412797,0.018565313533593947 +7,0.13300899352971465,0.020557046193135867 +8,0.10878124608830549,0.014471458953135076 +9,0.14130502922474406,0.02221644887529761 +10,0.18131596631631255,0.03385590158444541 +11,0.15872550701168367,0.028077457066988887 +12,0.16637071689707228,0.028966508428498412 +13,0.06104023627340793,0.00782742457658172 +14,0.13218814053544775,0.018811875903547912 +15,0.1398448154203128,0.022126871500703357 +16,0.14755166623140686,0.02327808192295235 +17,0.15763588047060184,0.027301152412405508 +18,0.17086227841041982,0.03048079857324975 +19,0.14390100082778373,0.022200912300953796 +20,0.17393335621696898,0.031055980998233725 +21,0.10781654722103849,0.015203575126135209 +22,0.1398924083896447,0.021021757342237494 +23,0.1798070901640691,0.03310283637502163 +24,0.050741963348910214,0.0060028710976810585 +25,0.11810395519277081,0.01652680306745454 +26,0.05986969524375163,0.005944889229432582 +27,0.044357319427561014,0.004237035169741754 +28,0.12739257188695483,0.01928993077135783 +29,0.163176854019193,0.027966890605643033 +30,0.1375488570973277,0.020590965053056864 +31,0.15780260773175395,0.026168452108684598 +32,0.1487246603057254,0.025842489697251652 +33,0.04661922717583366,0.00423840516565975 +34,0.15027651015776208,0.023912029087054306 +35,0.17965566710792483,0.03347854940738734 +36,0.1509656439186074,0.024092970833146498 +37,0.15108345755510963,0.02403750573451766 +38,0.16780287492172793,0.02990954883978843 +39,0.12313886177218519,0.01778964704406041 +40,0.12130179662788287,0.018777013262735343 +41,0.10566762241735123,0.013061802655943712 +42,0.1230595751203131,0.018851316453148467 +43,0.14572488713511267,0.02274344088027031 +44,0.1671324427140411,0.02877900727697371 +45,0.1399128512999043,0.021258669978561066 +46,0.16724835013546982,0.029174746863115195 +47,0.09996676534400321,0.012261272819893131 +48,0.1671666391987819,0.029628965287383152 +49,0.17736672979774884,0.03332601041082932 +50,0.10407288548704237,0.011875369016376971 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/metadata.txt" new file mode 100644 index 000000000..d877171a9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T13:01:44.498 +hostname=a02r08n03 +julia=1.12.6 +slurm_job=22991286 +cell=13 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/summary.csv" new file mode 100644 index 000000000..aaf585753 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/013/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.344439,51014,200000,1000000,1,1000000,0.1358336235274393,0.021771154903333874,0.8474871159806362,8901.992351494262,0.18146058303833007,3775.2322959738053,50,6497.016824960709,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/blocks.csv" new file mode 100644 index 000000000..b1d4d1ff5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.11907481486750766,0.016584255661616434 +2,0.12888890763954258,0.019197087280765867 +3,0.1732950817243196,0.03120193810660873 +4,0.09264714072598144,0.012085186227192036 +5,0.14833672392889857,0.025108934197942644 +6,0.11870478808996268,0.018880261140145772 +7,0.15200338502656668,0.0240467408599855 +8,0.12241636164993978,0.019229806911038604 +9,0.13892200497244483,0.02261889695988779 +10,0.018383392838668078,0.0007551894219433789 +11,0.15115482550510206,0.026383633590360712 +12,0.12819722731038927,0.020069222592711385 +13,0.1811379411587026,0.033887213162861446 +14,0.1424053208578378,0.023323235367943375 +15,0.15646614869469777,0.026602195790767395 +16,0.1265602755953558,0.019518753051933766 +17,0.04466342490212992,0.003759610921183517 +18,0.10827307508895173,0.017746066774877823 +19,0.06768694086433388,0.009301731288378011 +20,0.05266742246858776,0.005947629932926345 +21,0.0721589925610926,0.010676315864582921 +22,0.16063022238491104,0.02799167264356529 +23,0.1351911507477984,0.02071605441810282 +24,0.1629927741735708,0.027882314873546192 +25,0.07278884062296712,0.007540753721731209 +26,0.15228144546821715,0.0257037173586366 +27,0.1665215203506872,0.028832946521238426 +28,0.06869750375095755,0.00888690509897099 +29,0.14604675225578248,0.022255977555928102 +30,0.15991808716095984,0.027489567564293854 +31,0.1520570612722542,0.024977674741004468 +32,0.1587712335169781,0.026727579790772164 +33,0.1153463563138619,0.016509769018484718 +34,0.07841208712738007,0.010626562026557181 +35,0.11841346907299012,0.016277586673959045 +36,0.1163945823032409,0.015427685135885574 +37,0.13373921972974204,0.02004690880938951 +38,0.17626342391180805,0.03334104810247893 +39,0.1562799078089185,0.026935662881336236 +40,0.1359969661280513,0.0209415072772786 +41,0.17384536682064644,0.03150657917922939 +42,0.17478449249495753,0.03219495191253944 +43,0.13677438948731868,0.019718309141338722 +44,0.14863346225796267,0.02326549866883887 +45,0.1250340110438876,0.0169945198464383 +46,0.15675172466151416,0.026911092438242183 +47,0.1663731615871191,0.0286231377373003 +48,0.09877439745333977,0.014051930857670019 +49,0.013785710228048266,0.00047610978415057754 +50,0.058896250140434134,0.005960943161648198 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/metadata.txt" new file mode 100644 index 000000000..712abe3e9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T12:50:07.851 +hostname=a04r02n06 +julia=1.12.6 +slurm_job=22991297 +cell=14 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/summary.csv" new file mode 100644 index 000000000..8a9fc633d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/014/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.344439,62016,200000,1000000,1,1000000,0.12528879533494636,0.01991477744092419,0.7882228301595123,8210.926491071044,0.18157079562377929,4166.237480146815,50,5789.544665813446,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/blocks.csv" new file mode 100644 index 000000000..b36a24775 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.0813803092664748,0.007421753576283325 +2,0.012372228526591788,0.0003302844017128779 +3,0.02045395025393227,0.000492545485464022 +4,0.06584311613325554,0.005139006298763519 +5,0.03677240740664129,0.001498922261258119 +6,0.04992794841664436,0.0029259123176953936 +7,0.11993744255555794,0.015507419485800982 +8,0.16411722034036647,0.027274385022608403 +9,0.13628453846893682,0.01935884704555326 +10,0.10457344898052688,0.011203642977004213 +11,0.13641406063291361,0.01901809487238046 +12,0.1286598938318115,0.01830863414663482 +13,0.017878376795709482,0.0005483123320866299 +14,0.0788061096299265,0.009922589155943507 +15,0.1548336108108313,0.02450105247858807 +16,0.1336046658348758,0.01832007799764043 +17,0.07846491033917409,0.007031255113473174 +18,0.016628466553223552,0.0004908195947744268 +19,0.008249541731615318,0.00011958644537833591 +20,0.02795293973009975,0.0013264208247385839 +21,0.0167118819221796,0.0007300467212818814 +22,0.0017908365624083671,7.69067636312809e-6 +23,0.00317621512064361,2.2603534947109745e-5 +24,0.005038041696586879,6.244363641813401e-5 +25,0.0012665299207874341,3.6641769851371383e-6 +26,0.009369079898900236,0.00012334101328400943 +27,0.07799967846360523,0.0081695792686718 +28,0.15503318921297904,0.024454304953624804 +29,0.10222789287260384,0.011178970289159653 +30,0.0813873968682572,0.007513529607831859 +31,0.11496309437152231,0.013610324555410176 +32,0.14153030742647824,0.020467874116844077 +33,0.1473710163913667,0.022945891018717406 +34,0.15869479657727642,0.025683078165692517 +35,0.14793530590818263,0.022528041178496837 +36,0.1374234166730079,0.01993506204880571 +37,0.14356130682283838,0.021438575454888018 +38,0.16575224746113817,0.027873702632767696 +39,0.1561529545709549,0.024698582037789196 +40,0.14026099789011642,0.02024944361066759 +41,0.14912248469790793,0.023195042234825138 +42,0.13658678349429976,0.01910505769635221 +43,0.11885796637894819,0.01537103017798254 +44,0.12696713455418066,0.01693078276532275 +45,0.11878384043728583,0.015137599026462637 +46,0.13789501761010034,0.019587792705914642 +47,0.08097561774131028,0.007391946488790026 +48,0.14540277698471618,0.021581495916950934 +49,0.09589894017969781,0.009522655313761197 +50,0.10092922149774095,0.011292212020157722 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/metadata.txt" new file mode 100644 index 000000000..205fae4f6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T20:31:25.696 +hostname=a01r08n02 +julia=1.12.6 +slurm_job=22991671 +cell=15 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/summary.csv" new file mode 100644 index 000000000..1271be68f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/015/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.344439,51016,300000,1000000,1,1000000,0.0938444231289426,0.012431038497578982,0.7084505252010271,24600.75245671353,0.18172129278182983,8371.705644669155,50,26787.115754127502,3.999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/blocks.csv" new file mode 100644 index 000000000..44af7b4ab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4 +1,0.1292131217155198,0.0172581985311307 +2,0.13482862312090002,0.019100120243847052 +3,0.1199394003634603,0.015584749477372395 +4,0.0655135045202449,0.004563104748976247 +5,0.05918797260422143,0.00396064595606004 +6,0.13442346551447698,0.018502322758061313 +7,0.089834657646477,0.008388454288937811 +8,0.1281279234030284,0.01720646079716692 +9,0.15290885394899523,0.024001568543936428 +10,0.12395192965085153,0.015828318171244506 +11,0.11580846102597715,0.014889361014564886 +12,0.0754543923074234,0.0060246329062573776 +13,0.06695902111819596,0.004640785615312209 +14,0.09202832731274248,0.008869391333378204 +15,0.0708598044706392,0.005546260568305922 +16,0.0864447314535937,0.00920779613646016 +17,0.12796250342750864,0.01689668584143533 +18,0.12335146956964163,0.015507819041905827 +19,0.13635632832868724,0.019303413342325063 +20,0.09464377603475005,0.009316239394923107 +21,0.1203481542894704,0.015014734727437418 +22,0.11218076687488647,0.013067949081968445 +23,0.09348737087174086,0.009222630046835397 +24,0.07390174526777119,0.0061168839631694 +25,0.11560323201488064,0.014929685768462422 +26,0.058592089303815736,0.0036766675744995423 +27,0.07913173640765599,0.006973302644620814 +28,0.049314613126424954,0.0026083193790173566 +29,0.03853218994645868,0.001748017721165094 +30,0.05834097624688584,0.0037724981368771836 +31,0.10549853716798244,0.012143597712106307 +32,0.15197966579509667,0.02356815272827345 +33,0.13452634420707474,0.01882566252790193 +34,0.11053637553061708,0.012944143093233385 +35,0.10044437946830002,0.010475311435455114 +36,0.1488137041923881,0.023174490206619425 +37,0.15883830828394274,0.025721798846881996 +38,0.08974739032456419,0.008976985055968728 +39,0.049801877837444775,0.0034494914664272413 +40,0.024831696068053133,0.0008967819514097595 +41,0.037540767290096845,0.002361956600223855 +42,0.04231111160667206,0.0022991624903589652 +43,0.03159666489686351,0.0013161943107939447 +44,0.03883650508764549,0.001982753635223692 +45,0.04232766655887244,0.002614051110013144 +46,0.006580003264770494,0.0001449771945023502 +47,0.006608166765194619,8.972837954759694e-5 +48,0.002445031589688733,1.5339416369199098e-5 +49,0.07722483595117229,0.006804314127913889 +50,0.10740904632851889,0.012026966796038275 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/metadata.txt" new file mode 100644 index 000000000..65ef1a72e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/metadata.txt" @@ -0,0 +1,8 @@ +timestamp=2026-07-29T20:43:20.835 +hostname=a02r08n05 +julia=1.12.6 +slurm_job=22991082 +cell=16 +clock_acceptance_test=0.377645 +direct_acceptance_test=0.37727 +validation_tolerance=0.006504249819579503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/summary.csv" new file mode 100644 index 000000000..49b681f03 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/cells/016/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,sample_every,nsamples,mean_m2,mean_m4,Qm,chi,acceptance,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.344439,62018,300000,1000000,1,1000000,0.0879025844020457,0.010031177536818337,0.7702848759478296,23043.135085489866,0.18180448779296876,7581.616100211216,50,27171.618715047836,3.999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_cutoff.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_cutoff.csv" new file mode 100644 index 000000000..4dfaf242d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_cutoff.csv" @@ -0,0 +1,9 @@ +sigma,L,nseeds,clock_Qm,clock_Qm_se,fk_Qm,fk_Qm_se,Qm_z,clock_chi,clock_chi_se,fk_chi,fk_chi_se,chi_z,tau_max +1.875,64,2,0.7463836524343106,0.006112443200281979,0.7436036282,0.00140979864,0.44317882868124214,673.7576792548828,8.243086086257804,669.8967337,2.099522139,0.45389460172301815,457.244911323823 +1.875,128,2,0.7612555097218316,0.01037578421132903,0.7577009101,0.003150814099,0.32780502085911123,2117.3595015267338,41.04767406240377,2104.646045,13.63337843,0.29393562037724996,1209.3660461034651 +1.875,256,2,0.7834858539226666,0.014946539352728702,0.7740358906,0.001977490797,0.626788935618775,6780.422779078857,196.13834427115881,6734.120235,4.988536456,0.2359945246897233,3598.93967270053 +1.875,512,2,0.724738844049157,0.018794767694758848,0.7852295071,0.001586606964,-3.2070771810154,20226.738065813544,1093.8282904314515,21596.18047,69.0309382,-1.2494862521441301,7859.67869082835 +2.0,64,2,0.7868595160211349,0.005566651795782534,0.7753066219,0.0006890451702,2.0596569914245135,812.915988477539,7.950325569274701,795.6218933,0.9548946289,2.15974650478331,360.68674300764144 +2.0,128,2,0.8083666724280927,0.011015417991898108,0.7940175078,0.00535123564,1.1717014207136027,2650.0844566302494,51.88367018078666,2582.77262,29.21267426,1.1304860736603617,2059.423970923367 +2.0,256,2,0.8178549730700743,0.015450652942170073,0.8017268862,0.0001058507,1.043820507814213,8556.459421282652,255.35422324926677,8335.67395,1.575287407,0.8646078666211913,4166.237480146815 +2.0,512,2,0.7393677005744284,0.017438222148437172,0.8158937775,0.0008726370632,-4.382926132278782,23821.943771101698,1277.6271730307385,27586.98173,140.1853856,-2.9293182300363676,8371.705644669155 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_interim.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_interim.csv" new file mode 100644 index 000000000..b6064757c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/comparison_interim.csv" @@ -0,0 +1,7 @@ +sigma,L,nseeds,clock_Qm,clock_Qm_se,fk_Qm,fk_Qm_se,Qm_z,clock_chi,clock_chi_se,fk_chi,fk_chi_se,chi_z,tau_max +1.875,64,2,0.7463836524343106,0.006112443200281979,0.7436036282,0.00140979864,0.44317882868124214,673.7576792548828,8.243086086257804,669.8967337,2.099522139,0.45389460172301815,457.244911323823 +1.875,128,2,0.7612555097218316,0.01037578421132903,0.7577009101,0.003150814099,0.32780502085911123,2117.3595015267338,41.04767406240377,2104.646045,13.63337843,0.29393562037724996,1209.3660461034651 +1.875,256,2,0.7834858539226666,0.014946539352728702,0.7740358906,0.001977490797,0.626788935618775,6780.422779078857,196.13834427115881,6734.120235,4.988536456,0.2359945246897233,3598.93967270053 +2.0,64,2,0.7868595160211349,0.005566651795782534,0.7753066219,0.0006890451702,2.0596569914245135,812.915988477539,7.950325569274701,795.6218933,0.9548946289,2.15974650478331,360.68674300764144 +2.0,128,2,0.8083666724280927,0.011015417991898108,0.7940175078,0.00535123564,1.1717014207136027,2650.0844566302494,51.88367018078666,2582.77262,29.21267426,1.1304860736603617,2059.423970923367 +2.0,256,2,0.8178549730700743,0.015450652942170073,0.8017268862,0.0001058507,1.043820507814213,8556.459421282652,255.35422324926677,8335.67395,1.575287407,0.8646078666211913,4166.237480146815 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_1.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_1.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_1.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_1.out" new file mode 100644 index 000000000..2b55edf85 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_1.out" @@ -0,0 +1 @@ +SUCCESS cell=1 L=64 sigma=1.875 Qm=0.7436725925294905 chi=674.4367182226563 tau=433.0286170312758 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_10.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_10.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_10.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_10.out" new file mode 100644 index 000000000..ffefcb293 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_10.out" @@ -0,0 +1 @@ +SUCCESS cell=10 L=64 sigma=2.0 Qm=0.7897752680702097 chi=820.1411767958984 tau=346.9092898739532 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_11.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_11.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_11.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_11.out" new file mode 100644 index 000000000..a8f5c8e2f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_11.out" @@ -0,0 +1 @@ +SUCCESS cell=11 L=128 sigma=2.0 Qm=0.8188662589132019 chi=2687.9839917416994 tau=1157.1323734308003 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_12.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_12.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_12.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_12.out" new file mode 100644 index 000000000..2c22568de --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_12.out" @@ -0,0 +1 @@ +SUCCESS cell=12 L=128 sigma=2.0 Qm=0.7978670859429836 chi=2612.184921518799 tau=2059.423970923367 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_13.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_13.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_13.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_13.out" new file mode 100644 index 000000000..31b0c3296 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_13.out" @@ -0,0 +1 @@ +SUCCESS cell=13 L=256 sigma=2.0 Qm=0.8474871159806362 chi=8901.992351494262 tau=3775.2322959738053 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_14.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_14.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_14.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_14.out" new file mode 100644 index 000000000..254ee4381 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_14.out" @@ -0,0 +1 @@ +SUCCESS cell=14 L=256 sigma=2.0 Qm=0.7882228301595123 chi=8210.926491071044 tau=4166.237480146815 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_15.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_15.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_15.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_15.out" new file mode 100644 index 000000000..5bee6b534 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_15.out" @@ -0,0 +1 @@ +SUCCESS cell=15 L=512 sigma=2.0 Qm=0.7084505252010271 chi=24600.75245671353 tau=8371.705644669155 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_16.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_16.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_16.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_16.out" new file mode 100644 index 000000000..a8d2e268b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_16.out" @@ -0,0 +1 @@ +SUCCESS cell=16 L=512 sigma=2.0 Qm=0.7702848759478296 chi=23043.135085489866 tau=7581.616100211216 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_2.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_2.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_2.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_2.out" new file mode 100644 index 000000000..4382c75cc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_2.out" @@ -0,0 +1 @@ +SUCCESS cell=2 L=64 sigma=1.875 Qm=0.7490947123391308 chi=673.0786402871094 tau=457.244911323823 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_3.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_3.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_3.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_3.out" new file mode 100644 index 000000000..a6ecf7fd7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_3.out" @@ -0,0 +1 @@ +SUCCESS cell=3 L=128 sigma=1.875 Qm=0.7704407036749004 chi=2171.7072866364747 tau=1209.3660461034651 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_4.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_4.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_4.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_4.out" new file mode 100644 index 000000000..2a1faf888 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_4.out" @@ -0,0 +1 @@ +SUCCESS cell=4 L=128 sigma=1.875 Qm=0.752070315768763 chi=2063.0117164169924 tau=1172.0504878116883 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_5.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_5.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_5.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_5.out" new file mode 100644 index 000000000..58b909665 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_5.out" @@ -0,0 +1 @@ +SUCCESS cell=5 L=256 sigma=1.875 Qm=0.8008962141418468 chi=6871.137625886353 tau=2417.726005417021 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_6.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_6.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_6.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_6.out" new file mode 100644 index 000000000..a121505af --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_6.out" @@ -0,0 +1 @@ +SUCCESS cell=6 L=256 sigma=1.875 Qm=0.7660754937034863 chi=6689.707932271363 tau=3598.93967270053 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_7.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_7.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_7.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_7.out" new file mode 100644 index 000000000..72fe1ad0c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_7.out" @@ -0,0 +1 @@ +SUCCESS cell=7 L=512 sigma=1.875 Qm=0.7010639382092009 chi=19456.69263845189 tau=7859.67869082835 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_8.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_8.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_8.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_8.out" new file mode 100644 index 000000000..7350a2c85 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_8.out" @@ -0,0 +1 @@ +SUCCESS cell=8 L=512 sigma=1.875 Qm=0.7484137498891131 chi=20996.7834931752 tau=7668.789081002723 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_9.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_9.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_9.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_9.out" new file mode 100644 index 000000000..a89c1f463 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/clock_production_20260729/logs/22991082_9.out" @@ -0,0 +1 @@ +SUCCESS cell=9 L=64 sigma=2.0 Qm=0.7839437639720601 chi=805.6908001591797 tau=360.68674300764144 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/README.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/README.md" new file mode 100644 index 000000000..a12111cd4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/README.md" @@ -0,0 +1,49 @@ +# Exact nearest-neighbor control: completed seven-size dataset + +This directory freezes the completed part of Slurm array `23025326` for the +strict nearest-neighbor square-lattice Ising control: + +\[ +H=-\sum_{\langle i,j\rangle}s_i s_j,\qquad +\beta_c=\frac{\log(1+\sqrt{2})}{2}, +\] + +with periodic boundary conditions, exact Swendsen--Wang/FK updates, and four +independent seeds per lattice size. + +## Published cells + +This dataset contains exactly 28 completed numerical cells: + +| \(L\) | Seeds | Measurement sweeps per seed | Mean \(Q_m\) | Mean \(R_p\) | +|---:|---|---:|---:|---:| +| 64 | 73001, 84002, 95003, 106004 | 200000 | 0.8560859 | 0.0270663 | +| 128 | 73001, 84002, 95003, 106004 | 200000 | 0.8551993 | 0.0231513 | +| 256 | 73001, 84002, 95003, 106004 | 150000 | 0.8561858 | 0.0307917 | +| 512 | 73001, 84002, 95003, 106004 | 100000 | 0.8558562 | 0.0257625 | +| 1024 | 73001, 84002, 95003, 106004 | 50000 | 0.8568208 | 0.0280400 | +| 2048 | 73001, 84002, 95003, 106004 | 20000 | 0.8558951 | 0.0345500 | +| 4096 | 73001, 84002, 95003, 106004 | 5000 | 0.8517651 | 0.0094000 | + +The means in this table are unweighted means over the four seeds. Per-seed +estimates, block errors, autocorrelation estimates, and susceptibilities are +stored in each cell's `summary.csv` and `blocks.csv`. + +Each cell contains one non-empty `summary.csv`, `blocks.csv`, `metadata.txt`, +and `manifest.json`. The frozen `run_spec.json` records the complete +seven-size plan \(L=64,128,256,512,1024,2048,4096\). The \(L=4096\) +statistics are visibly noisier because the registered budget contains only +5,000 measurement sweeps per seed; these cells are retained without +selection or post-hoc extension. + +## Provenance note + +The numerical files for all 28 cells were written successfully before a +Python 2.7 text/byte incompatibility caused the original wrapper to exit while +writing manifests. Thus Slurm records the array cells as failed even though +the Julia simulation completed and wrote non-empty summaries, blocks, and +metadata. The numerical evidence was not recomputed or altered. +`scripts/nn_repair_manifests.py` rebuilt manifests deterministically from +those saved files and the frozen run specification. Repository-relative paths +in the published manifests, run specification, and Slurm scripts point to the +registered team directory. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/blocks.csv" new file mode 100644 index 000000000..cc8d2d8f9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.38287783074378967,0.17138043292403665,0.8553802249994759,1568.2675947265625,0.03725,2443.2935 +2,0.3740722042322159,0.16520641366909142,0.8470010992395764,1532.1997485351562,-0.01975,2418.7095 +3,0.3801656329035759,0.17013946014243045,0.849455548524652,1557.158432373047,-0.00575,2435.671 +4,0.3888464668393135,0.17566072148273007,0.8607591583203339,1592.7151281738281,0.05675,2463.3955 +5,0.38762563693523405,0.17424679116086103,0.8623035948520558,1587.7146088867187,0.05375,2464.39375 +6,0.3855181196928024,0.17219789033409588,0.8631012861023752,1579.0822182617187,0.04425,2459.49275 +7,0.39179493284225464,0.17771600162124657,0.8637560377259521,1604.792044921875,0.06825,2472.57975 +8,0.3848495522737503,0.1728761891397268,0.8567355552105393,1576.3437661132812,0.013,2444.353 +9,0.3770334320068359,0.1677165306582425,0.8475861520205322,1544.3289375,-0.04275,2420.72975 +10,0.39323755383491515,0.17934700696457082,0.8622155248825278,1610.7010205078125,0.0555,2472.247 +11,0.39366276770830155,0.17929836595778784,0.8643155995980734,1612.4426965332032,0.0875,2485.91975 +12,0.3855028848648071,0.1737498266665624,0.8553244460167782,1579.01981640625,0.02725,2449.63025 +13,0.39742488938570025,0.18275418897122658,0.8642567570809756,1627.8523469238282,0.0975,2494.629 +14,0.3777058270573616,0.1687685667092482,0.8453096128905381,1547.0830676269532,-0.00475,2421.44 +15,0.39312810879945753,0.17917659813144876,0.8625552194871804,1610.252733642578,0.06375,2474.2405 +16,0.3949630916714668,0.17976813984765794,0.8677613503420576,1617.768823486328,0.06975,2483.42525 +17,0.3842713119983673,0.17228706224234144,0.8570837490817484,1573.9752939453124,0.04025,2448.92675 +18,0.3946827381849289,0.17943246424086615,0.8681509473784239,1616.6204956054687,0.09175,2490.25225 +19,0.36871458727121353,0.16265149511471952,0.8358389006550128,1510.2549494628906,-0.06475,2394.51425 +20,0.3867741041183472,0.17566155297173833,0.8516047199048606,1584.22673046875,0.038,2452.44425 +21,0.3891844836473465,0.1768562458442119,0.8564275555485495,1594.0996450195312,0.04425,2457.11575 +22,0.3922573549151421,0.17785644169154965,0.865112508839393,1606.686125732422,0.05875,2478.322 +23,0.382379887342453,0.17377861759266938,0.8413830209349926,1566.2280185546874,-0.005,2432.375 +24,0.3825548431873321,0.1706216032727022,0.8577355108554332,1566.9446376953124,0.02075,2443.96275 +25,0.3766565811634064,0.16843237852502255,0.8422975521457077,1542.7853564453126,-0.02975,2410.64675 +26,0.37833883190155027,0.16821506001472414,0.850936127312859,1549.67585546875,-0.0225,2422.333 +27,0.37867259556055066,0.16899729529089227,0.8484924825675136,1551.0429514160155,0.002,2431.9675 +28,0.38372562944889066,0.1727878076036916,0.8521744719029669,1571.7401782226561,0.00625,2440.682 +29,0.37761951792240145,0.16834438234721766,0.8470523240973693,1546.7295454101563,0.00025,2423.3365 +30,0.3841982600092888,0.1718618755240489,0.8588775290859083,1573.676072998047,0.021,2442.77675 +31,0.38514271372556685,0.17439460534776327,0.8505705187387921,1577.5445554199218,0.03625,2446.066 +32,0.3708272157907486,0.16374081432142437,0.8398200811508107,1518.9082758789064,-0.0445,2406.54475 +33,0.3940395691990852,0.1793376981657407,0.8657810582084393,1613.986075439453,0.082,2485.901 +34,0.3887168197631836,0.17583098683301723,0.859352317178885,1592.18409375,0.0375,2464.785 +35,0.39668120914697647,0.18080870126264972,0.8702898731722313,1624.8062326660156,0.089,2495.00325 +36,0.3756859260201454,0.16638282645039884,0.8482841530023534,1538.8095529785155,-0.043,2414.16125 +37,0.3784435924887657,0.1700984308375091,0.8419804462077436,1550.1049548339843,-0.00275,2424.8405 +38,0.39304926013946534,0.1797896136598966,0.859269441383981,1609.92976953125,0.04925,2470.86175 +39,0.3897409944534302,0.1772407548011855,0.8570153231853237,1596.37911328125,0.05425,2460.865 +40,0.38964533859491346,0.17707150491587959,0.857413449786123,1595.9873068847655,0.03875,2461.37475 +41,0.3981367710828781,0.1820642129880588,0.8706427577763269,1630.7682143554687,0.10725,2501.073 +42,0.3803190320730209,0.17096133786275167,0.8460542480843187,1557.7867553710937,0.0035,2429.85825 +43,0.3776528843045235,0.16981855490709932,0.8398475720250252,1546.8662141113282,-0.0215,2414.20875 +44,0.37672663015127184,0.16775860607869322,0.8459950710281836,1543.0722770996094,-0.01325,2415.01425 +45,0.37147812664508817,0.164044467722519,0.841210925864103,1521.5744067382811,-0.04225,2401.3235 +46,0.3865356225371361,0.1743662816744116,0.8568731640969399,1583.2499099121094,0.0425,2460.17775 +47,0.37668386042118074,0.16885348764730632,0.8403186258028538,1542.8970922851563,-0.0305,2406.97325 +48,0.40360350877046586,0.18583446993686295,0.8765639245893142,1653.1599719238282,0.10125,2514.3345 +49,0.3867345927357674,0.17400038517598193,0.8595592766489163,1584.0648918457032,-0.0185,2452.42275 +50,0.3853985148668289,0.1727268234968108,0.859924430117826,1578.5923168945312,0.03675,2459.66375 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/manifest.json" new file mode 100644 index 000000000..ba1f60ff4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0001", + "params": { + "L": 64, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8548553604587362, + "se_Qm": 0.0013546541286803741, + "Rp": 0.025295000000000012, + "se_Rp": 0.0062133607275461035, + "chi": 1577.2616164453125, + "se_chi": 4.56495187189244, + "tau_m2": 4.347511653031617, + "runtime_s": 62.718934059143066 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/metadata.txt" new file mode 100644 index 000000000..5268aa59a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:41:40.139 +hostname=a03r03n08 +julia=1.12.6 +slurm_job=23025347 +slurm_array_task=1 +cell=cell-0001 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=64 +seed=73001 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/summary.csv" new file mode 100644 index 000000000..2bd150d18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0001/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +64,nearest_neighbor,0.44068679351,73001,5000,200000,0.5990518310546875,0.38507363682746887,0.1734582394148664,0.8548553604587362,0.0013546541286803741,1577.2616164453125,4.56495187189244,0.226905,0.479105,0.025295000000000012,0.0062133607275461035,2449.185175,4.347511653031617,50,62.718934059143066,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/blocks.csv" new file mode 100644 index 000000000..d62fc21da --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.38462494546175,0.1728703047285439,0.8557649557207457,1575.423776611328,0.02725,2449.36975 +2,0.3860198917984963,0.17549118784634674,0.849110195747215,1581.1374768066407,0.01625,2446.037 +3,0.37640494453907014,0.16805298850018782,0.843071483214368,1541.7546528320313,-0.045,2413.07425 +4,0.3995473771095276,0.18384736708646482,0.8683186987389601,1636.546056640625,0.10775,2495.18075 +5,0.3810322394967079,0.17065691933567917,0.8507452736229176,1560.7080529785155,-0.00325,2430.7965 +6,0.3877578229904175,0.17558218833359274,0.8563290543150243,1588.25604296875,0.00875,2447.458 +7,0.38911470770835876,0.17541649394746833,0.8631472009713296,1593.8138427734375,0.05325,2466.50475 +8,0.37163629531860354,0.1637159145479148,0.8436170446808613,1522.222265625,-0.03075,2405.891 +9,0.396088630259037,0.1811375297895231,0.8661164983467403,1622.3790295410156,0.103,2489.77 +10,0.38974808317422865,0.1761847616690805,0.8621833517208415,1596.4081486816406,0.05475,2465.3145 +11,0.3781643711328507,0.17046250992865597,0.8389427778234521,1548.9612641601564,0.001,2422.25125 +12,0.3933027111887932,0.18046213445124898,0.8571716338102122,1610.9679050292968,0.049,2472.44525 +13,0.3867321920394897,0.17378853621541232,0.8605963984545315,1584.05505859375,0.01925,2454.67075 +14,0.38614464753866196,0.17362590499709302,0.8587871079793878,1581.6484763183594,0.0485,2452.83125 +15,0.36790523540973663,0.16153750961660526,0.837912275378919,1506.9398442382812,-0.05875,2396.57625 +16,0.3802960234284401,0.1709495456035745,0.8460102360895694,1557.6925119628906,-0.04775,2414.44325 +17,0.3957037634253502,0.18174500339613564,0.8615448318416595,1620.8026149902344,0.07475,2483.27275 +18,0.37572791266441347,0.16729532219115173,0.8438458559759042,1538.9815302734376,-0.03125,2410.117 +19,0.3798071292638779,0.16927855375512715,0.85216616186561,1555.6900014648438,-0.005,2420.85375 +20,0.39427406454086306,0.1799529954717609,0.8638480152110997,1614.946568359375,0.083,2483.83425 +21,0.3912970969080925,0.1773294857834615,0.8634402641626626,1602.7529089355469,0.05175,2472.25975 +22,0.3832279010415077,0.17326482266913512,0.8476251663450984,1569.7014826660156,-0.0085,2444.69375 +23,0.3902802298069,0.17714139926905842,0.8598704673590802,1598.5878212890625,0.02125,2468.96925 +24,0.3789357023835182,0.16864505470141608,0.8514466480806007,1552.1206369628906,-0.01375,2422.5225 +25,0.3954572080373764,0.1797313599560658,0.8701119461119332,1619.7927241210937,0.0705,2479.0285 +26,0.3777614639401436,0.1685225808030949,0.8467928924310639,1547.3109562988282,-0.029,2420.151 +27,0.39252798223495483,0.1771188238190265,0.8699144083910385,1607.794615234375,0.03875,2475.6355 +28,0.39353197383880617,0.17946925464865843,0.8629189146444394,1611.90696484375,0.07125,2480.03125 +29,0.3820687603354454,0.17092308232651754,0.8540481229176662,1564.9536423339844,0.00875,2442.43925 +30,0.39406108045578003,0.18101304273607144,0.8578615815899571,1614.074185546875,0.06625,2476.6925 +31,0.3844487828016281,0.17309741371180862,0.8538594738551574,1574.7022143554686,0.01825,2449.7265 +32,0.38548446297645567,0.17412214189520664,0.8534139861757417,1578.9443603515624,0.00675,2448.34375 +33,0.3865569902062416,0.17547368946794797,0.8515596106195886,1583.3374318847657,0.024,2444.65425 +34,0.3806742642521858,0.16980801839355927,0.8533925360820267,1559.241786376953,0.0035,2436.28025 +35,0.392719662129879,0.1778815609837506,0.867030467747554,1608.5797360839845,0.0845,2481.16675 +36,0.37324083006381986,0.16481302931835207,0.8452530591961949,1528.7944399414062,-0.014,2415.26325 +37,0.39350207477807997,0.17837771598184496,0.8680674152729562,1611.7844982910156,0.1045,2487.21375 +38,0.3957834451198578,0.18169693887027313,0.8621198375982746,1621.1289912109376,0.08375,2482.11075 +39,0.3863619616627693,0.17315466042567068,0.8620938359552965,1582.5385949707031,0.028,2455.5625 +40,0.40945719194412233,0.1897597356420307,0.8835129932465566,1677.136658203125,0.16,2536.18 +41,0.3848827676773071,0.17252717716521726,0.8586168700429477,1576.47981640625,-0.00625,2443.569 +42,0.3879512814879417,0.17398336047075583,0.8650608678950893,1589.0484489746093,0.0805,2465.59425 +43,0.3978709535598755,0.1825291422565602,0.8672658717923448,1629.67942578125,0.06775,2495.69275 +44,0.3938056405186653,0.17843277061739257,0.8691390150347174,1613.027903564453,0.08225,2487.06275 +45,0.3843252369165421,0.17349740540749045,0.8513434963712676,1574.1961704101564,0.0385,2452.77825 +46,0.3889855442643166,0.1769116778183066,0.8552841480708021,1593.2847893066407,0.0255,2461.2305 +47,0.39433482313156126,0.17974731321136034,0.8651030713952937,1615.195435546875,0.04125,2477.27275 +48,0.39364534175395965,0.17787388121406203,0.8711602514486619,1612.3713198242187,0.0815,2484.27975 +49,0.3973378136754036,0.1809903800852515,0.8722968486059045,1627.4956848144532,0.09825,2497.57425 +50,0.3709256731271744,0.16299977875596883,0.8440861456065579,1519.3115571289063,-0.046,2403.862 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/manifest.json" new file mode 100644 index 000000000..7cc3c8036 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0002", + "params": { + "L": 64, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8575351646431275, + "se_Qm": 0.0013823224465831796, + "Rp": 0.033289999999999986, + "se_Rp": 0.006822144165906212, + "chi": 1586.0922064501954, + "se_chi": 4.84524608913774, + "tau_m2": 4.411198031224777, + "runtime_s": 69.51557612419128 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/metadata.txt" new file mode 100644 index 000000000..5eb4a940b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:41:53.442 +hostname=a03r06n02 +julia=1.12.6 +slurm_job=23025348 +slurm_array_task=2 +cell=cell-0002 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=64 +seed=84002 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/summary.csv" new file mode 100644 index 000000000..928b7a934 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0002/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +64,nearest_neighbor,0.44068679351,84002,5000,200000,0.6012221069335938,0.3872295425903797,0.17485780739633766,0.8575351646431275,0.0013823224465831796,1586.0922064501954,4.84524608913774,0.224555,0.4824,0.033289999999999986,0.006822144165906212,2456.17067,4.411198031224777,50,69.51557612419128,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/blocks.csv" new file mode 100644 index 000000000..5d111c0fd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.39062405878305434,0.17783612566170792,0.8580211401501676,1599.9961447753906,0.05575,2470.145 +2,0.4025780997276306,0.1850940918632467,0.8756039955076027,1648.959896484375,0.07975,2509.73425 +3,0.3981199707388878,0.18286357824235194,0.8667636968750059,1630.6994001464843,0.1135,2496.57525 +4,0.3881223404407501,0.17425427712999164,0.864477782871468,1589.7491064453125,0.0485,2466.09175 +5,0.37150049847364425,0.16357448087434215,0.8437295330448726,1521.6660417480468,-0.03175,2408.04725 +6,0.39048954290151594,0.17843946987533435,0.8545311372084076,1599.4451677246093,0.023,2468.10525 +7,0.39367227590084075,0.1790699221502032,0.8654600334441024,1612.4816420898437,0.03275,2477.5025 +8,0.3932879129052162,0.17849053193327177,0.8665747183450936,1610.9072912597655,0.079,2488.13975 +9,0.3846346391439438,0.17310491729887556,0.8546481979709357,1575.4634819335938,-0.00425,2446.19475 +10,0.39484628319740295,0.18023115863664838,0.8650201692877657,1617.2903759765625,0.114,2490.81425 +11,0.37914816242456434,0.16876597514686165,0.8517909427230721,1552.9908732910155,-0.05125,2426.88675 +12,0.3940451880097389,0.1777511970572238,0.8735334150444207,1614.0090900878906,0.03125,2476.25475 +13,0.38923460227251055,0.17658615009121023,0.8579584272491636,1594.3049309082032,0.0445,2457.11 +14,0.38740133452415465,0.1743118436285589,0.8609844911680299,1586.7958662109374,0.01575,2457.13625 +15,0.37898788970708847,0.16828654272588892,0.8534955809187004,1552.3343962402344,-0.0295,2427.33575 +16,0.37530214643478393,0.16664717245359487,0.8452090668251694,1537.237591796875,-0.02425,2413.14675 +17,0.38990239042043684,0.17581826494314895,0.8646648521115132,1597.0401911621093,0.04525,2474.27575 +18,0.38225691562891007,0.172668530958009,0.8462477136708975,1565.7243264160156,0.006,2434.581 +19,0.38085614305734633,0.17095909343304708,0.8484567787049275,1559.9867619628906,-0.00075,2439.46125 +20,0.3876401551961899,0.17428942664487462,0.8621572335922596,1587.7740756835938,0.03875,2463.293 +21,0.390991890668869,0.17812093203070567,0.858263298007352,1601.5027841796875,0.067,2467.58175 +22,0.3803752095103264,0.17082280723943846,0.8469905298255788,1558.0168581542969,-0.0165,2433.62975 +23,0.37174067163467406,0.1649217679400204,0.8379192672592295,1522.649791015625,-0.0365,2402.93675 +24,0.3839171932935715,0.17164826180992238,0.8586886330933606,1572.5248237304688,0.0445,2446.81875 +25,0.39942368310689924,0.1833852740905519,0.8699677736823265,1636.0394060058593,0.08225,2496.88325 +26,0.37612453562021253,0.16761714023214114,0.8440047724211992,1540.6060979003905,-0.0155,2415.1185 +27,0.38078856337070466,0.1697501576205181,0.854196143476209,1559.7099555664063,0.021,2433.8745 +28,0.3858031556606293,0.17296698253162765,0.8605346103582692,1580.2497255859375,0.021,2459.887 +29,0.37444181758165357,0.16620042737161606,0.843599965241708,1533.713684814453,-0.05025,2409.89325 +30,0.3812181874513626,0.17009908637218527,0.8543685303853946,1561.4696958007812,0.01225,2437.1025 +31,0.38219691026210784,0.17114138171203333,0.8535310206837654,1565.4785444335937,-0.01075,2438.90025 +32,0.3853626536130905,0.1742438460365901,0.8522790226320981,1578.4454291992188,-0.007,2439.67375 +33,0.3881932666897774,0.17596035623472517,0.8564088839548604,1590.0396203613282,0.032,2458.37425 +34,0.39562099093198777,0.1809444709478905,0.8649944795001908,1620.463578857422,0.06525,2482.64675 +35,0.3855669543147087,0.17450005040017647,0.8519302769173891,1579.282244873047,0.01375,2450.45525 +36,0.399741246342659,0.18364239045113553,0.870131692552221,1637.3401450195313,0.11075,2506.15775 +37,0.394291050195694,0.18182712442075014,0.8550178239890899,1615.0161416015626,0.06125,2473.3255 +38,0.3756392249464989,0.16767794053765112,0.841522903167588,1538.6182653808594,-0.033,2402.96125 +39,0.386989585518837,0.17276950631523172,0.8668250693892156,1585.1093422851563,0.04,2458.06075 +40,0.39044217264652253,0.17650728252921713,0.8636759231489657,1599.2511391601563,0.03525,2466.40125 +41,0.3848114567995071,0.1743375970943192,0.849385673269579,1576.1877270507812,0.05575,2454.9025 +42,0.38897437208890917,0.17441836631950433,0.867460608275643,1593.239028076172,0.03025,2464.59975 +43,0.387314681828022,0.17456388639490586,0.8593567997230358,1586.440936767578,0.03375,2452.02575 +44,0.38230307775735856,0.171951651048132,0.8499810404369867,1565.9134064941406,0.0095,2440.552 +45,0.38131061136722566,0.1710204581710303,0.8501777149716279,1561.8482641601563,-0.03225,2433.12025 +46,0.3794334635734558,0.16988335925673767,0.8474623642317639,1554.159466796875,-0.001,2424.41725 +47,0.37846968483924864,0.16894507760555053,0.8478453730197002,1550.2118291015624,-0.02425,2423.75725 +48,0.3905498326420784,0.17732208766245156,0.8601814572988129,1599.692114501953,0.078,2466.268 +49,0.39071114087104797,0.17678052749923115,0.8635294721666661,1600.3528330078125,0.06,2469.9375 +50,0.3793188858628273,0.16964502248811164,0.8481405175462757,1553.6901564941406,-0.02075,2428.06 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/manifest.json" new file mode 100644 index 000000000..431c614ba --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0003", + "params": { + "L": 64, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8564557837626892, + "se_Qm": 0.0012640980985917708, + "Rp": 0.024235000000000007, + "se_Rp": 0.006037034555515629, + "chi": 1581.442393774414, + "se_chi": 4.279482910965465, + "tau_m2": 4.2104535245012515, + "runtime_s": 70.880539894104 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/metadata.txt" new file mode 100644 index 000000000..c5a0652d3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:41:54.883 +hostname=g05r07 +julia=1.12.6 +slurm_job=23025349 +slurm_array_task=3 +cell=cell-0003 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=64 +seed=95003 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/summary.csv" new file mode 100644 index 000000000..0212d8e53 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0003/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +64,nearest_neighbor,0.44068679351,95003,5000,200000,0.6001601049804688,0.38609433441758156,0.1740531594222499,0.8564557837626892,0.0012640980985917708,1581.442393774414,4.279482910965465,0.227535,0.479305,0.024235000000000007,0.006037034555515629,2452.583085,4.2104535245012515,50,70.880539894104,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/blocks.csv" new file mode 100644 index 000000000..45e69039d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.38079821890592574,0.17022748784179634,0.8518441137819658,1559.7495046386719,0.02725,2436.73425 +2,0.3813365896940231,0.1705933157354335,0.8524225818143438,1561.9546713867187,0.01275,2444.85325 +3,0.38945861864089965,0.17702868430509164,0.8567990900970345,1595.222501953125,0.04375,2462.4825 +4,0.403266473710537,0.1847880069451651,0.8800562953589787,1651.7794763183595,0.095,2520.10125 +5,0.37847889536619184,0.16992722468515906,0.8429860165316023,1550.2495554199218,-0.01375,2418.52325 +6,0.3954699190855026,0.18077973404262726,0.8651216228950542,1619.8447885742187,0.0765,2483.491 +7,0.4023310998082161,0.18554374349785063,0.8724105206746777,1647.948184814453,0.141,2512.08875 +8,0.38131466472148895,0.1712845483073065,0.8488849401102643,1561.8648666992187,-0.01675,2431.4725 +9,0.38678120183944703,0.17434681521257267,0.8580581062749403,1584.255802734375,0.018,2454.5 +10,0.37401499211788175,0.1665116915289852,0.8401044577977189,1531.9654077148436,-0.0365,2403.564 +11,0.3878163611292839,0.1745384352906932,0.8617100852833125,1588.495815185547,0.03725,2455.9025 +12,0.3954322361946106,0.18034416032189637,0.8670458369307407,1619.690439453125,0.04825,2485.00175 +13,0.3889886862039566,0.17648908130646832,0.8573459438656765,1593.2976586914062,0.04125,2461.6775 +14,0.38558745259046556,0.17429494949967256,0.8530234755625197,1579.366205810547,0.02175,2450.39625 +15,0.3910021902322769,0.17837328153191295,0.8570942433387101,1601.5449711914061,0.075,2465.575 +16,0.3987840007543564,0.18295618476595402,0.8692172908015509,1633.4192670898437,0.09425,2499.39675 +17,0.397569822371006,0.18221769016419712,0.867433691633799,1628.4459924316407,0.08525,2490.32475 +18,0.3769808802008629,0.1701504802875624,0.8352288150867216,1544.1136853027344,-0.04225,2423.49375 +19,0.40118495166301726,0.18412099208412977,0.874150001143354,1643.2535620117187,0.066,2506.49425 +20,0.37520535773038866,0.16693687865707812,0.8433071326245257,1536.841145263672,-0.0415,2401.61725 +21,0.3749369887113571,0.1663027321056521,0.8453123031955441,1535.7419057617187,-0.0165,2418.2535 +22,0.3867553768157959,0.17612887926900622,0.8492628926995629,1584.1500234375,0.04775,2456.535 +23,0.3978906319141388,0.18053090579475878,0.8769520889958832,1629.7600283203126,0.096,2498.53575 +24,0.3874542662501335,0.17490457030104473,0.8583012335071765,1587.0126745605469,0.0215,2456.671 +25,0.3887521252632141,0.17568664339608234,0.8602145955737223,1592.328705078125,0.02875,2462.777 +26,0.3842810539007187,0.17209383485572258,0.8580895911282936,1574.0151967773438,0.0465,2442.3845 +27,0.38034120452404024,0.1707526553364523,0.8471870119604277,1557.8775737304688,-0.0005,2433.851 +28,0.3884145057201385,0.1755942154505376,0.8591731103825359,1590.9458154296874,0.038,2458.96175 +29,0.3808007760643959,0.16979696182367393,0.8540154634912218,1559.7599787597655,0.00675,2440.545 +30,0.3833352600932121,0.17401882307607416,0.8444254422206477,1570.1412253417968,0.00325,2433.5955 +31,0.37699158680438993,0.1674470074519963,0.8487619975056022,1544.1575395507812,-0.01675,2429.2975 +32,0.39266378647089006,0.178279377376998,0.8648496055694102,1608.3508693847657,0.0585,2476.1635 +33,0.38829945611953737,0.17524109993317233,0.8603944376075401,1590.474572265625,0.032,2459.4165 +34,0.373213361620903,0.1655756442046298,0.8412361248024676,1528.6819291992188,-0.0795,2399.99525 +35,0.37525632977485657,0.16721637178456347,0.842126351225469,1537.0499267578125,-0.038,2416.16925 +36,0.3871815758347511,0.17436512674664856,0.8597451535346216,1585.8957346191405,0.0595,2461.979 +37,0.3751076816916466,0.16697405828780534,0.8426804397456384,1536.4410642089845,-0.02675,2418.8365 +38,0.38486761116981505,0.1739541728825638,0.8515063230334672,1576.4177353515624,0.0235,2445.9305 +39,0.3880347562432289,0.1757918378004544,0.8565299386861116,1589.3903615722656,0.06525,2459.44525 +40,0.3820920015573502,0.1726520209731519,0.8455985445823702,1565.0488383789063,-0.00425,2427.97725 +41,0.39047863173484804,0.1770984825097164,0.8609535196505916,1599.4004755859376,0.0605,2466.99975 +42,0.3924920226931572,0.17838265427330843,0.8635928672848349,1607.6473249511719,0.062,2473.39125 +43,0.3775608461499214,0.16946300269350564,0.8411994965253126,1546.489225830078,-0.02075,2424.30375 +44,0.3804025260210037,0.16908725694173332,0.8558071401739367,1558.1287465820312,-0.048,2426.3375 +45,0.38720083636045455,0.1741125731525833,0.8610778932481193,1585.9746257324218,0.02725,2456.552 +46,0.38348646092414856,0.1729273378611093,0.8504257772720977,1570.7605439453125,0.0005,2442.912 +47,0.381735458791256,0.1709730635938228,0.8523094658042706,1563.5884392089845,0.00525,2441.23675 +48,0.39813679414987563,0.18264302781625735,0.8678837005232287,1630.7683088378906,0.093,2499.45125 +49,0.371036383330822,0.16433526904596504,0.8377264269224554,1519.765026123047,-0.076,2389.31525 +50,0.4010111311078072,0.18521472187460164,0.8682351253980672,1642.5415930175782,0.091,2501.70775 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/manifest.json" new file mode 100644 index 000000000..a8be84f98 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0004", + "params": { + "L": 64, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8554971534979016, + "se_Qm": 0.001505553992556899, + "Rp": 0.025444999999999995, + "se_Rp": 0.00684730801416267, + "chi": 1582.0401902197266, + "se_chi": 4.877457807253413, + "tau_m2": 4.21340025412515, + "runtime_s": 67.30888199806213 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/metadata.txt" new file mode 100644 index 000000000..2052dda57 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:41:50.871 +hostname=a04r06n05 +julia=1.12.6 +slurm_job=23025350 +slurm_array_task=4 +cell=cell-0004 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=64 +seed=106004 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/summary.csv" new file mode 100644 index 000000000..97c05000e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0004/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +64,nearest_neighbor,0.44068679351,106004,5000,200000,0.5999547045898438,0.38624028081536294,0.1743799542925029,0.8554971534979016,0.001505553992556899,1582.0401902197266,4.877457807253413,0.22758,0.480605,0.025444999999999995,0.00684730801416267,2452.544365,4.21340025412515,50,67.30888199806213,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/blocks.csv" new file mode 100644 index 000000000..f46d5e46a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.32464567762613294,0.1242121434913504,0.8485065392070162,5318.994782226562,0.03,9012.91425 +2,0.32153420439362523,0.12013540064739729,0.8605643635257761,5268.016404785156,-0.02875,8954.09675 +3,0.32669821429252627,0.12436919638368878,0.8581845531320282,5352.62354296875,0.0465,9008.122 +4,0.33032315649837257,0.12660492004478519,0.8618416067910363,5412.014596069336,0.069,9113.01325 +5,0.3229185706190765,0.12209103060185035,0.8540873374287588,5290.697861022949,0.021,8966.69275 +6,0.31371644357964396,0.11791208983190245,0.8346727389241118,5139.930211608887,-0.01675,8807.82175 +7,0.3181178677454591,0.11961104857155874,0.8460671400131895,5212.043145141602,-0.01075,8908.89925 +8,0.32568467409163715,0.12469417450033621,0.8506452475684011,5336.017700317383,0.048,9018.71075 +9,0.3230110411345959,0.12261452535496858,0.8509279988875942,5292.212897949219,-0.01175,8949.291 +10,0.31974314762651923,0.12083688306115278,0.846063535107695,5238.671730712891,-0.00775,8927.95275 +11,0.3356122993938625,0.12931240467541125,0.8710348847596155,5498.671913269043,0.06625,9152.138 +12,0.3167340377569199,0.11872295708797206,0.8449962259570901,5189.370474609375,-0.0235,8871.14825 +13,0.33225774521380663,0.12743903570179843,0.8662589813758684,5443.710897583008,0.07575,9140.501 +14,0.32468388825282457,0.12205737470479264,0.86368912608468,5319.620825134278,0.027,9016.8635 +15,0.3215357313975692,0.1215315746783424,0.850686143407583,5268.041423217774,0.004,8953.32775 +16,0.32460799209028485,0.12261185309647794,0.8593814208645478,5318.377342407227,0.0335,8979.65975 +17,0.3322776998765767,0.12793706629516968,0.8629904767437745,5444.037834777832,0.09825,9124.40425 +18,0.3176918887831271,0.11899517435589854,0.8481699929841553,5205.063905822754,-0.00775,8889.24175 +19,0.31435091884434224,0.11756226407919809,0.8405460795796905,5150.325454345703,-0.02625,8823.59325 +20,0.3280631798915565,0.12521976935081308,0.8594924791710687,5374.987139343261,0.04425,9072.3555 +21,0.3245634242668748,0.12296832735629337,0.8566548690755053,5317.647143188477,-0.012,8978.13825 +22,0.32574642182141544,0.1228062556742311,0.8640498869286928,5337.029375122071,0.05675,9012.06675 +23,0.3220417702496052,0.12195412106514017,0.8504091610820079,5276.332363769531,-0.00825,8946.71225 +24,0.32407266226783393,0.1229600227543897,0.8541238695046696,5309.606498596191,0.0285,8977.15275 +25,0.3268465233743191,0.124359474088736,0.859031051913683,5355.053438964844,0.066,9012.61075 +26,0.3321988839879632,0.12750741793708115,0.8654876736450245,5442.746515258789,0.0735,9115.263 +27,0.32759227277338504,0.12518491879400218,0.8572653816026091,5367.2717971191405,0.0765,9041.679 +28,0.3261419945061207,0.12312023729050373,0.8639408347585655,5343.510437988281,0.0595,9052.8015 +29,0.3273213844075799,0.12510197213693874,0.8564156652400188,5362.833562133789,0.044,9050.64325 +30,0.32090849842131136,0.12086181638811273,0.8520661647870911,5257.764838134765,0.006,8939.079 +31,0.3203270034976304,0.12028473005042789,0.8530541584684371,5248.237625305176,-0.01525,8941.57825 +32,0.32230305919796226,0.12130471311985558,0.8563497600107827,5280.613321899414,0.0005,8948.99725 +33,0.30888201347738503,0.11382434736117907,0.8382046588600371,5060.722908813476,-0.06225,8754.28175 +34,0.316067278817296,0.11875279687792262,0.8412309214212916,5178.446296142578,-0.036,8845.61575 +35,0.3122491441220045,0.11542206783164244,0.8447217229476397,5115.889977294922,-0.031,8830.353 +36,0.33011677975580095,0.12604009078657039,0.8646224197099003,5408.633319519043,0.078,9070.8995 +37,0.32019707653671503,0.1208675366142304,0.8482523156725607,5246.108901977539,0.00725,8926.2035 +38,0.33810101249814034,0.13061663242063312,0.8751741071086601,5539.446988769531,0.08325,9187.3465 +39,0.3204780233167112,0.12182820006556819,0.8430409656689488,5250.7119340209965,0.01375,8935.6065 +40,0.3106590595692396,0.11575973628570041,0.8337013748394826,5089.838031982422,-0.0515,8737.56475 +41,0.33060576041415335,0.1274545176270135,0.8575621394518134,5416.6447786254885,0.072,9080.22675 +42,0.3235630567483604,0.12304706267924968,0.8508374715554899,5301.257121765137,-0.0035,8956.246 +43,0.3351600199341774,0.12978537340430535,0.8655231018393926,5491.261766601562,0.08525,9161.32775 +44,0.3305691135078669,0.1267921810863502,0.861850769259628,5416.044355712891,0.0655,9099.0595 +45,0.32535961144417525,0.12308200314875657,0.8600678738642556,5330.691873901367,0.02475,9022.17475 +46,0.32954385513067247,0.1257919926925988,0.8633232539671444,5399.246522460938,0.05725,9087.053 +47,0.31600604521855713,0.11892760061996241,0.8396690094991369,5177.44304486084,-0.00975,8865.357 +48,0.31851602007076146,0.11970771830283665,0.8475013681662802,5218.566472839356,-0.006,8895.61075 +49,0.3279357956983149,0.12414915629067269,0.8662313084794321,5372.900076721191,0.05425,9089.79675 +50,0.32225337068736554,0.12157429842002301,0.8541874085967599,5279.799225341797,0.02125,8965.6125 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/manifest.json" new file mode 100644 index 000000000..9bfa69854 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0005", + "params": { + "L": 128, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8543685388481942, + "se_Qm": 0.001341588537744341, + "Rp": 0.023369999999999946, + "se_Rp": 0.005764030088153847, + "chi": 5305.314611962891, + "se_chi": 15.024823912453302, + "tau_m2": 4.957125883802857, + "runtime_s": 268.8651530742645 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/metadata.txt" new file mode 100644 index 000000000..1161b334a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:45:17.296 +hostname=a04r06n05 +julia=1.12.6 +slurm_job=23025351 +slurm_array_task=5 +cell=cell-0005 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=128 +seed=73001 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/summary.csv" new file mode 100644 index 000000000..1d0614278 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0005/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +128,nearest_neighbor,0.44068679351,73001,5000,200000,0.54925783203125,0.32381070629656317,0.12272616411371585,0.8543685388481942,0.001341588537744341,5305.314611962891,15.024823912453302,0.22795,0.47927,0.023369999999999946,0.005764030088153847,8984.35611,4.957125883802857,50,268.8651530742645,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/blocks.csv" new file mode 100644 index 000000000..ccbb05dab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.33278830774500967,0.12764238209985865,0.8676433011501272,5452.403634094238,0.08075,9139.017 +2,0.32382509533315895,0.12292604055210041,0.853055153298336,5305.550361938476,0.00625,8959.9215 +3,0.32925107213109733,0.12565775155612524,0.8627105543191039,5394.449565795899,0.06575,9076.11775 +4,0.3142346345819533,0.11631374366588755,0.8489401377578834,5148.4202529907225,-0.0305,8823.44825 +5,0.3264093628674746,0.12377339557190996,0.8607913815021032,5347.891001220703,0.02175,9033.411 +6,0.32773894047364593,0.12355412421281192,0.8693583786630886,5369.674800720215,0.05775,9082.3075 +7,0.32726090725511314,0.1250058027059205,0.8567578392292292,5361.842704467774,0.05525,9039.8545 +8,0.31631999859958887,0.11852544423869654,0.8441929254661806,5182.586857055664,-0.01,8883.4725 +9,0.31877625938504933,0.11992912083734343,0.8473196738042161,5222.830233764648,0.0245,8899.42225 +10,0.3112769355289638,0.11471170634205739,0.8446682006749833,5099.961311706543,-0.059,8821.01075 +11,0.31972970654070376,0.12114836713221654,0.8438172768192406,5238.45151196289,0.0065,8937.43525 +12,0.3197848518490791,0.12017054450312127,0.8509768504001524,5239.355012695312,-0.01325,8901.99825 +13,0.3292401038222015,0.1266057368234668,0.8561937925135308,5394.269861022949,0.0145,9058.5335 +14,0.31866149663180116,0.11873360158903702,0.8552351489099893,5220.94996081543,-0.026,8911.61825 +15,0.33262687950208786,0.12805440565442966,0.8640127639643548,5449.7587937622075,0.07275,9078.878 +16,0.3192429473660886,0.11903721429780588,0.8561697284684001,5230.476449645996,-0.00125,8923.128 +17,0.3211629758551717,0.12175086231476967,0.847186254775601,5261.934196411133,-0.0075,8924.993 +18,0.33451736602559684,0.1296477206895822,0.8631225260074702,5480.732524963379,0.079,9151.38025 +19,0.33864595970511435,0.13145328608914217,0.872409427230518,5548.375403808594,0.11725,9209.47825 +20,0.32409947880357504,0.12273437381382357,0.8558358094537186,5310.045860717773,0.0185,8990.79625 +21,0.3324574027135968,0.12739448852954283,0.8676036608399995,5446.98208605957,0.07975,9117.29325 +22,0.3217776651233435,0.12193412900241227,0.8491541016394367,5272.00526538086,-0.0055,8940.7405 +23,0.32708812851831315,0.1250400707090213,0.855618868503197,5359.011897644043,0.03975,9022.565 +24,0.3131523206979036,0.11658797000474841,0.8411191648202527,5130.687622314453,-0.04775,8828.033 +25,0.32283391393348576,0.1230807194963774,0.8467754853243348,5289.310845886231,0.0125,8944.986 +26,0.3212750755622983,0.12191106907575885,0.8466636783688462,5263.770838012695,-0.0235,8945.39125 +27,0.3276264618523419,0.12350671605428891,0.8690952357497855,5367.83195098877,0.0405,9041.39375 +28,0.32501111697778107,0.12307264750965978,0.8582916537230905,5324.982140563965,0.0325,8996.85225 +29,0.32547265059128405,0.12365790753886077,0.8566572764432854,5332.543907287598,0.0465,9020.10975 +30,0.32726655539870264,0.12440795057165305,0.8609047716837491,5361.935243652344,0.02925,9051.551 +31,0.3171560364253819,0.11911238730156803,0.8444793502995638,5196.2845007934575,-0.043,8863.76 +32,0.33352955571189524,0.12842452224880707,0.8662050096464934,5464.548240783692,0.08825,9126.14675 +33,0.32868936417996886,0.12622510075898583,0.855905025826182,5385.24654272461,0.0535,9040.87875 +34,0.31375310234725473,0.11758302799079952,0.8372042369943865,5140.5308288574215,-0.0435,8814.518 +35,0.32329030941426756,0.12297575593795998,0.8498961715177455,5296.78842944336,0.01525,8958.39125 +36,0.31690741116181015,0.11846887655178898,0.8477357950244191,5192.2110244750975,-0.00375,8882.3255 +37,0.32640819627791645,0.12461095564998272,0.8549995467225807,5347.871887817383,0.03075,9013.89825 +38,0.3294006187207997,0.1258598596696211,0.8621078070360786,5396.899737121582,0.0535,9064.61225 +39,0.31807629122585057,0.1201897628475866,0.8417732479286911,5211.361955444336,-0.002,8915.1115 +40,0.3247406676337123,0.12335219471054007,0.8549219692657666,5320.551098510742,0.0335,8991.6705 +41,0.31939420641586186,0.12052466483820404,0.8464048353004181,5232.954677917481,0.009,8905.933 +42,0.31219071577116847,0.11599329902322535,0.840247185263689,5114.932687194824,-0.077,8810.34425 +43,0.315430913977325,0.11786056383850814,0.8441895936362594,5168.020094604492,-0.03175,8828.98575 +44,0.3278592034392059,0.1254372334036262,0.8569358105492397,5371.645189147949,0.03975,9037.88325 +45,0.32166381664946675,0.12222907401601535,0.8465057252085922,5270.139971984863,0.046,8945.6625 +46,0.33364814285188915,0.12781188769037627,0.8709759728937692,5466.491172485352,0.08725,9155.976 +47,0.3170891144648194,0.11873277244943901,0.8468218541338238,5195.188051391601,0.01125,8878.76775 +48,0.3252694729194045,0.1229411907814425,0.8605759334261902,5329.215044311523,0.062,9036.987 +49,0.3204970997981727,0.12048176780736056,0.8525637766477437,5251.024483093262,0.00775,8949.6065 +50,0.32403859673067925,0.12260289796796295,0.8564317313170308,5309.048368835449,0.01175,8969.137 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/manifest.json" new file mode 100644 index 000000000..2683ea3a1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0006", + "params": { + "L": 128, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8540713344266799, + "se_Qm": 0.0012587278632116166, + "Rp": 0.020509999999999973, + "se_Rp": 0.00597094991246308, + "chi": 5301.399521685791, + "se_chi": 14.90081360315918, + "tau_m2": 4.829907505096042, + "runtime_s": 268.1264970302582 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/metadata.txt" new file mode 100644 index 000000000..1b58fcd71 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:45:16.625 +hostname=a04r06n05 +julia=1.12.6 +slurm_job=23025352 +slurm_array_task=6 +cell=cell-0006 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=128 +seed=84002 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/summary.csv" new file mode 100644 index 000000000..e30596392 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0006/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +128,nearest_neighbor,0.44068679351,84002,5000,200000,0.5489580780029297,0.3235717481497675,0.1225877417733246,0.8540713344266799,0.0012587278632116166,5301.399521685791,14.90081360315918,0.228915,0.47834,0.020509999999999973,0.00597094991246308,8978.91467,4.829907505096042,50,268.1264970302582,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/blocks.csv" new file mode 100644 index 000000000..f70479ecb --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.3227283853925765,0.12186654313543824,0.8546530332147575,5287.581866271973,0.03775,8986.3025 +2,0.3210868478342891,0.12045216080946247,0.8559146067561525,5260.6869149169925,0.0255,8942.979 +3,0.3205467360690236,0.12105621447774215,0.848780960546196,5251.837723754883,-0.02025,8909.08075 +4,0.33507815447077155,0.1299015250686945,0.8643268009683776,5489.920482849121,0.10075,9164.63125 +5,0.32752242795750497,0.12426183581541077,0.8632653791991978,5366.127459655761,0.044,9039.2885 +6,0.3364181640222669,0.1306565089343449,0.8662192339838543,5511.8751993408205,0.12225,9197.3425 +7,0.3202328313291073,0.12063532771793342,0.8500749175302462,5246.694708496094,0.0145,8936.72525 +8,0.32291227116063237,0.12184228348413785,0.8557976088792899,5290.594650695801,0.0135,8984.92325 +9,0.32446481185406445,0.12228937653472005,0.8608876511984128,5316.031477416992,0.01875,8996.5645 +10,0.32013062142580745,0.12079394212200646,0.8484168408955585,5245.020101440429,0.00875,8919.452 +11,0.32960574074834587,0.12610279617714087,0.8615189165326324,5400.260456420899,0.077,9082.96225 +12,0.323890130598098,0.12219856056434689,0.8584783340685309,5306.615899719238,0.0065,9009.954 +13,0.3228835103586316,0.12204129355391348,0.8542498872765305,5290.12343371582,0.01175,8963.41825 +14,0.3222985143400729,0.12131447979948633,0.8562566687629485,5280.538858947754,0.02925,8985.09725 +15,0.32016167243942617,0.12085518291012476,0.8481514324084738,5245.528841247558,0.03025,8932.00825 +16,0.32366599594429135,0.12247388089784446,0.8553634143266036,5302.9436775512695,-0.0055,8957.08525 +17,0.3235461424551904,0.12348054994749251,0.8477619053539057,5300.97999798584,-0.004,8971.65575 +18,0.3238742820397019,0.12279529341350241,0.8542228912105707,5306.356236938476,-0.0065,8945.5135 +19,0.31613397724926473,0.11925952021598835,0.8380101763820464,5179.539083251953,-0.037,8858.93 +20,0.32461322528496384,0.1231116603104372,0.85592011158161,5318.4630830688475,0.05225,9007.21475 +21,0.33176827611401677,0.12743800301050195,0.86371558275749,5435.691435852051,0.08225,9112.024 +22,0.31944694530591367,0.12003271439849443,0.8501544881047809,5233.8187518920895,-0.047,8907.8995 +23,0.3334727794714272,0.12803706692016026,0.8685304757702892,5463.618018859864,0.07225,9138.348 +24,0.3209434341676533,0.11901964686666416,0.8654427285498616,5258.337225402832,-0.001,8941.4535 +25,0.32097286357358096,0.1218320971595689,0.8456193528023248,5258.81939678955,0.0025,8924.95725 +26,0.3248989718109369,0.12304410103739485,0.8578984363640724,5323.14475415039,0.04575,9023.16125 +27,0.32811282029002903,0.12534741199247754,0.858877109047435,5375.800447631836,0.0455,9023.65975 +28,0.31777191163226964,0.1186303716549636,0.8512068740383311,5206.375000183106,-0.0295,8873.11875 +29,0.3212585059069097,0.12141318470659127,0.8500479405671749,5263.499360778808,0.01375,8948.98675 +30,0.32763284134864806,0.12348026248737415,0.8693152781495281,5367.93647265625,0.0875,9109.082 +31,0.3246696568392217,0.12314198860441335,0.8560068524694926,5319.387657653809,0.0455,9007.51875 +32,0.3391647170819342,0.13083283761856604,0.8792341999692634,5556.87472467041,0.12675,9238.81425 +33,0.3210297492556274,0.11920772886172523,0.8645420971544164,5259.751411804199,0.0145,8963.63425 +34,0.32852318054810165,0.1252205688258282,0.8618989768969912,5382.523790100097,0.0765,9047.6345 +35,0.31951998161152007,0.11993555009861587,0.8512323374102266,5235.015378723145,-0.001,8929.88075 +36,0.32421804625168443,0.12240419253856936,0.8587723944352402,5311.988469787598,0.042,8984.2695 +37,0.31295233969017866,0.11708194473332512,0.8365010261883742,5127.411133483887,-0.06,8792.8445 +38,0.3236756946519017,0.12298424348172125,0.8518648596148183,5303.102581176758,0.01975,8983.6265 +39,0.3378081836216152,0.13087048701502813,0.8719641190655224,5534.649280456543,0.05775,9185.62725 +40,0.32328632183372974,0.12111220768733173,0.862952198465407,5296.723096923828,0.01075,8976.10225 +41,0.32124053182825446,0.12145533490071499,0.8496578546644992,5263.204873474121,0.0065,8927.47625 +42,0.32820605297386646,0.12588137317882134,0.8557200361618509,5377.327971923828,0.035,9042.2455 +43,0.33256874821707605,0.12769925746228264,0.8661128849816563,5448.806370788574,0.086,9146.14425 +44,0.3247331744842231,0.12218291636047036,0.8630636569476867,5320.428330749512,0.019,9010.979 +45,0.3291791023276746,0.1255750248352249,0.8629015327804105,5393.270412536621,0.072,9062.038 +46,0.3191389317885041,0.118819595799191,0.857178961921708,5228.772258422851,0.01275,8936.435 +47,0.3348841271772981,0.12818670906224192,0.874875246082235,5486.741539672852,0.0985,9194.4365 +48,0.32560599195584655,0.12481654173739651,0.8494007326417231,5334.72857220459,0.03975,8983.20075 +49,0.3313175533898175,0.12735536351104929,0.8619293146196458,5428.30679473877,0.0735,9104.9775 +50,0.3247092076912522,0.12356614654321496,0.8532763423403066,5320.035658813476,0.00925,8994.61775 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/manifest.json" new file mode 100644 index 000000000..37e51e859 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0007", + "params": { + "L": 128, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8572654151594419, + "se_Qm": 0.0012051101168211054, + "Rp": 0.03152499999999997, + "se_Rp": 0.005867204989409787, + "chi": 5326.276226519775, + "se_chi": 13.156910227378283, + "tau_m2": 4.944921450626317, + "runtime_s": 269.53019094467163 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/metadata.txt" new file mode 100644 index 000000000..fe39de129 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:45:18.165 +hostname=a04r06n05 +julia=1.12.6 +slurm_job=23025353 +slurm_array_task=7 +cell=cell-0007 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=128 +seed=95003 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/summary.csv" new file mode 100644 index 000000000..0b8fc9aaf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0007/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +128,nearest_neighbor,0.44068679351,95003,5000,200000,0.5509087554931641,0.3250901017162949,0.12327987617960183,0.8572654151594419,0.0012051101168211054,5326.276226519775,13.156910227378283,0.225335,0.482195,0.03152499999999997,0.005867204989409787,9006.12645,4.944921450626317,50,269.53019094467163,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/blocks.csv" new file mode 100644 index 000000000..f830f030b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.31046556144207715,0.11439710058349434,0.8425813622015133,5086.667758666992,-0.06475,8766.1885 +2,0.33062404963374137,0.1267865044318323,0.8621758497568425,5416.944429199219,0.06075,9096.0225 +3,0.32420122608169916,0.12245973492804417,0.858293830659002,5311.712888122559,0.011,9005.94025 +4,0.33005440955609083,0.1257768834693439,0.8661044085574845,5407.611446166992,0.068,9077.76075 +5,0.3278421115204692,0.12630638965176844,0.8509502201949363,5371.365155151368,0.03475,9031.635 +6,0.3187799018137157,0.11987499948123008,0.8477215953295907,5222.889911315918,-0.0395,8902.687 +7,0.32220743006840347,0.12138276383793167,0.8552913503427945,5279.046534240722,-0.00925,8942.71775 +8,0.3172202209495008,0.11888577102562181,0.846431559564542,5197.336100036621,-0.0095,8890.13125 +9,0.32815363370254635,0.12468025862585234,0.8636877120645996,5376.4691345825195,0.0395,9056.7495 +10,0.33092895083129403,0.12600699785256522,0.8691102269291274,5421.939930419921,0.05425,9091.99175 +11,0.33333888692781327,0.1266037920931788,0.8776578623845199,5461.424323425293,0.095,9142.9035 +12,0.320359391130507,0.12026708729415604,0.8533518337771876,5248.7682642822265,0.00725,8933.68825 +13,0.3316430452466011,0.12660263608854289,0.8687584465738669,5433.639653320312,0.0785,9106.528 +14,0.33022037890180944,0.12644028660177045,0.8624268543893645,5410.330687927246,0.0365,9077.02175 +15,0.32727135103568433,0.12597560514574815,0.8502164929853255,5362.013815368652,0.035,9018.0315 +16,0.31440828303992746,0.11780935981462766,0.8390892591187922,5151.2653093261715,-0.023,8833.10175 +17,0.3184644622839987,0.11963254114711011,0.8477594203497062,5217.721750061035,-0.025,8899.4325 +18,0.3280353725105524,0.12490745806415457,0.86149544059145,5374.531543212891,0.0325,9070.6645 +19,0.3281301955021918,0.12551937433515553,0.8577912833823814,5376.0851231079105,0.052,9062.98325 +20,0.33394447273761035,0.12804775095051463,0.870916592007135,5471.346241333008,0.08225,9154.888 +21,0.33171285551041363,0.12735950740091218,0.8639592030181208,5434.783424682617,0.07875,9088.362 +22,0.3281501128077507,0.1256688290567314,0.8568751483084781,5376.411448242187,0.04225,9034.47425 +23,0.3109453552737832,0.11576358279321994,0.8352109673302374,5094.528700805664,-0.0555,8785.1595 +24,0.313926682241261,0.1170284617941982,0.8421025134578961,5143.374761840821,-0.06325,8796.79775 +25,0.3290956075079739,0.12646890707652325,0.8563679514958593,5391.902433410644,0.02125,9041.908 +26,0.3184036410525441,0.11853469401421791,0.8552844336305199,5216.7252550048825,-0.0105,8913.6015 +27,0.3260743305869401,0.12388604920730448,0.858244085981007,5342.401832336426,0.02575,9036.33 +28,0.3287396621145308,0.12614176996844234,0.8567325912282059,5386.070624084473,0.0505,9040.4135 +29,0.32116792449727655,0.12051591985179021,0.8558938591079103,5262.015274963379,0.0095,8961.532 +30,0.31399331817403436,0.11773435842248893,0.8374089363458742,5144.466524963379,-0.02325,8826.60525 +31,0.3149734716452658,0.11821005125469798,0.8392542494251584,5160.525359436035,-0.03875,8837.01775 +32,0.326810922536999,0.12501549049270644,0.8543371598875223,5354.470154846192,0.041,9025.61875 +33,0.32426697359234097,0.12248716183276374,0.8584497231334324,5312.790095336914,0.0035,8952.907 +34,0.329435901992023,0.12599261479558324,0.8613839287118462,5397.477818237305,0.04825,9075.82775 +35,0.3253868349008262,0.12247564199824264,0.8644706049248284,5331.1379030151365,0.02625,9020.73325 +36,0.3282107697613537,0.12443498260738889,0.8656915212277599,5377.405251770019,0.04225,9050.16125 +37,0.3224765430726111,0.12179451348872418,0.8538243460506056,5283.45568170166,0.014,8963.17875 +38,0.31072941041737795,0.11436517376564771,0.8442497249746952,5090.99066027832,-0.05675,8765.925 +39,0.32304668571427464,0.12304801870394069,0.8481173630440192,5292.796898742676,0.03075,8972.57275 +40,0.32464104034751656,0.12203994588773724,0.8635844953165274,5318.918805053711,0.04875,9040.15125 +41,0.32352560630068183,0.12260073316659899,0.8537372920110683,5300.643533630371,0.0105,9008.89125 +42,0.322427162643522,0.12091715847048115,0.8597561878344271,5282.6466327514645,0.02675,9015.86475 +43,0.32574583338946106,0.12397572075685699,0.8558961974393333,5337.01973425293,0.03175,9002.398 +44,0.31296622395515444,0.11647691692183021,0.840920758595306,5127.63861328125,-0.0395,8818.919 +45,0.3246625836268067,0.1231472157613098,0.8559332223274633,5319.271770141601,0.03375,8998.25 +46,0.32797644986957314,0.12553627080770452,0.8568722885979406,5373.566154663086,0.0435,9030.40275 +47,0.3162146049998701,0.11806194051577339,0.846942511518898,5180.8600883178715,-0.046,8881.85375 +48,0.32954386846721173,0.12613586160667273,0.8609697500856484,5399.246740966797,0.0405,9047.96275 +49,0.3178090444020927,0.11836368681291876,0.8533241184301081,5206.983383483886,-0.00925,8904.94725 +50,0.3241143126003444,0.1232195430515326,0.8525440448067556,5310.288897644043,0.017,8989.13875 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/manifest.json" new file mode 100644 index 000000000..3e7463c26 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0008", + "params": { + "L": 128, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 200000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8550920525625025, + "se_Qm": 0.0013085450876444103, + "Rp": 0.017199999999999993, + "se_Rp": 0.0056972872169702895, + "chi": 5302.998489143067, + "se_chi": 14.84205053810166, + "tau_m2": 4.950041919015835, + "runtime_s": 267.36644101142883 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/metadata.txt" new file mode 100644 index 000000000..105f38e08 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:45:15.826 +hostname=a04r06n06 +julia=1.12.6 +slurm_job=23025354 +slurm_array_task=8 +cell=cell-0008 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=128 +seed=106004 +thermalization_sweeps=5000 +measurement_sweeps=200000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/summary.csv" new file mode 100644 index 000000000..6768a0321 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0008/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +128,nearest_neighbor,0.44068679351,106004,5000,200000,0.5492183142089844,0.323669341378361,0.12251528035415167,0.8550920525625025,0.0013085450876444103,5302.998489143067,14.84205053810166,0.229915,0.47703,0.017199999999999993,0.0056972872169702895,8981.779455,4.950041919015835,50,267.36644101142883,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/blocks.csv" new file mode 100644 index 000000000..5d6e6a913 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.2592018530601636,0.07983465927071494,0.8415593082448058,16987.05264215088,-0.059,32126.937 +2,0.27017406619588535,0.08641809936252791,0.8446613219136576,17706.127602213543,0.0013333333333333333,32735.585333333333 +3,0.2733006642948215,0.0867826240327045,0.8606936461824684,17911.032335225424,0.049666666666666665,32960.676666666666 +4,0.2742386689282333,0.08844709778292614,0.8503031690209636,17972.505406880697,0.036333333333333336,33043.65866666667 +5,0.26972985756987083,0.0857589443328513,0.8483569455132994,17677.015945699055,-0.008666666666666666,32847.99166666667 +6,0.2853095505454888,0.09317447017226417,0.8736463913556026,18698.046704549153,0.10933333333333334,33818.212666666666 +7,0.2680008728119234,0.08469432900051012,0.8480434130072646,17563.705200602213,0.007666666666666666,32697.268333333333 +8,0.2823888769155989,0.09179124963879946,0.8687481445066447,18506.63743754069,0.11466666666666667,33676.013333333336 +9,0.271807424936754,0.08759349871313865,0.8434333293695415,17813.171400655112,0.03833333333333333,32864.531 +10,0.26742951504824064,0.08378231385694965,0.8536234227315362,17526.2606982015,0.006333333333333333,32587.306666666667 +11,0.2732409235574305,0.08670267070021456,0.8611107559150749,17907.117166259766,0.048666666666666664,33138.33233333333 +12,0.27386753565010924,0.08847399095098907,0.8477454930750513,17948.18281636556,0.034333333333333334,32789.247 +13,0.2698142510854329,0.08467043655318758,0.8598010480678493,17682.54675913493,0.041666666666666664,32924.80233333333 +14,0.28373274601437154,0.09329604035826598,0.8628905455334605,18594.709242797853,0.11033333333333334,33659.302 +15,0.27303986796798807,0.08806827486386229,0.8465110689998008,17893.940787150066,0.046,32919.621333333336 +16,0.27268714988790455,0.08858094048993337,0.839438837550374,17870.825055053712,0.008666666666666666,32734.486 +17,0.2697551497084399,0.08496045602733347,0.8564907039907125,17678.673491292317,0.0023333333333333335,32781.797 +18,0.2835634624271964,0.09183103456645404,0.8756107083331631,18583.61507362874,0.10433333333333333,33769.21566666666 +19,0.27021347456114986,0.08551420570914775,0.8538385082210788,17708.710268839517,0.029,32835.857 +20,0.27254837078042327,0.08619763965596947,0.8617708641621576,17861.73002746582,0.029,33106.01533333334 +21,0.27676330132068444,0.08757085148516228,0.8746965874929569,18137.959715352375,0.059333333333333335,33351.12533333333 +22,0.2591224425683419,0.08069490909762077,0.8320777728537443,16981.848396158854,-0.07933333333333334,31977.209333333332 +23,0.2682425704952329,0.08500489422797557,0.8464698095255029,17579.545099975585,0.008666666666666666,32605.764 +24,0.27828136836799483,0.08991034349051719,0.8613082430157912,18237.44775736491,0.07133333333333333,33380.40933333334 +25,0.27627096116170285,0.08940063610450083,0.8537483323048587,18105.69371069336,0.06966666666666667,33121.918666666665 +26,0.25936875194869935,0.08065925750597908,0.8340288711737672,16997.99052770996,-0.077,31978.137666666666 +27,0.26606056111616394,0.08367650956439697,0.8459748446721453,17436.54493330892,-0.03233333333333333,32445.254333333334 +28,0.28448209915620587,0.09270064999220927,0.8730258606290555,18643.818850301108,0.113,33734.20166666667 +29,0.27081048335973174,0.08685794460867843,0.8443478397738176,17747.83583746338,0.018333333333333333,32810.551666666666 +30,0.2745627698004246,0.08713260298440784,0.8651723003612191,17993.745681640627,0.057666666666666665,33032.26866666666 +31,0.26423682107186564,0.08233435794520189,0.8480189723060084,17317.024305765786,-0.051,32283.506 +32,0.26962430532866466,0.08627179533455138,0.8426539142028278,17670.098474019367,0.010666666666666666,32715.423666666666 +33,0.2758741479531551,0.08798213684066235,0.8650226993998794,18079.688160257974,0.075,33292.56533333333 +34,0.2837595404051244,0.09236921325597108,0.8717133548360321,18596.465239990233,0.09633333333333334,33710.535 +35,0.2721464098303889,0.08618386655366032,0.8593681317077602,17835.387114644367,0.008666666666666666,32893.76966666667 +36,0.2745375162285442,0.08785437874877228,0.8579065595861544,17992.090663553874,0.012333333333333333,33101.466 +37,0.266661849920017,0.08360674907696482,0.8505119860276612,17475.950996358235,-0.021,32625.956666666665 +38,0.277318867017515,0.08770023101417712,0.8769162077970586,18174.369268859864,0.084,33421.248 +39,0.27390306440678736,0.08723914471465245,0.8599681821367978,17950.511228963216,0.011666666666666667,33096.198 +40,0.27613851813475293,0.08897910776298215,0.8569706205728047,18097.013924479168,0.03666666666666667,33193.16966666667 +41,0.2620467210421339,0.08109548613369269,0.8467608652808147,17173.493910217287,-0.06466666666666666,32333.947333333334 +42,0.2857591489857684,0.09279156371004221,0.8800184840535588,18727.511587931316,0.14066666666666666,34014.272333333334 +43,0.28681591064296663,0.09452497041735489,0.8702818549927901,18796.76751989746,0.15266666666666667,33948.37566666667 +44,0.27921929173730314,0.09071075148012024,0.8594726821921139,18298.9155032959,0.042666666666666665,33392.96566666666 +45,0.2807583865765482,0.09032622633463552,0.8726731408111644,18399.781622680664,0.101,33488.95933333333 +46,0.2716011986192316,0.08652299389865993,0.852573492519262,17799.656152709962,0.017666666666666667,32930.10166666667 +47,0.2649587601379802,0.082818560720991,0.8476740474923781,17364.33730440267,-0.034666666666666665,32408.127333333334 +48,0.2813792059992751,0.09061001923674701,0.8737914221374898,18440.46764436849,0.10033333333333333,33626.32 +49,0.25960753339529036,0.07962695369659883,0.8463977116641289,17013.63930859375,-0.081,32001.495333333332 +50,0.280024988812084,0.09073032758105547,0.86425340291156,18351.717666788736,0.06133333333333333,33399.594 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/manifest.json" new file mode 100644 index 000000000..3ee434f37 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0009", + "params": { + "L": 256, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 150000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8564019017426933, + "se_Qm": 0.0016898288099990054, + "Rp": 0.03317999999999999, + "se_Rp": 0.008142914007041773, + "chi": 17910.178483389078, + "se_chi": 67.82182864194435, + "tau_m2": 5.759104118078387, + "runtime_s": 809.8130481243134 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/metadata.txt" new file mode 100644 index 000000000..cbf834425 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:54:39.005 +hostname=a04r06n06 +julia=1.12.6 +slurm_job=23025355 +slurm_array_task=9 +cell=cell-0009 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=256 +seed=73001 +thermalization_sweeps=5000 +measurement_sweeps=150000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/summary.csv" new file mode 100644 index 000000000..2749b1a16 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0009/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +256,nearest_neighbor,0.44068679351,73001,5000,150000,0.5048798305257162,0.2732876355497601,0.08720920819115371,0.8564019017426933,0.0016898288099990054,17910.178483389078,67.82182864194435,0.22508,0.48334,0.03317999999999999,0.008142914007041773,33006.63389333333,5.759104118078387,50,809.8130481243134,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/blocks.csv" new file mode 100644 index 000000000..91b421ace --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.2943594910133009,0.097750648591436,0.8864136575887723,19291.143603047687,0.186,34507.534 +2,0.274383091035299,0.08727563965749545,0.862624220705089,17981.970254089356,0.029,33192.69266666667 +3,0.28433853735184916,0.0927323542304994,0.8718467733756523,18634.410383890787,0.11,33771.18066666667 +4,0.27230926242688047,0.08623650125370436,0.8598717866036615,17846.05982240804,0.03233333333333333,33089.227666666666 +5,0.270316790633214,0.08583356189375559,0.8513123035565975,17715.481190938313,0.02,32757.000333333333 +6,0.282909914880991,0.09170258676913291,0.8728000240546143,18540.784181640625,0.10066666666666667,33685.115666666665 +7,0.26889235828040786,0.08468135772923083,0.8538254732852637,17622.12959226481,-0.008,32774.94733333333 +8,0.2671345152569314,0.08469741252715166,0.8425387165006887,17506.927591878255,-0.030333333333333334,32411.749666666667 +9,0.2835490311958517,0.09242572359484297,0.8698882731451194,18582.669308451335,0.10566666666666667,33719.06 +10,0.2640132994484156,0.08288211972291454,0.840989860281866,17302.375592651366,-0.09233333333333334,32425.952666666668 +11,0.26583461672098685,0.08329014813544121,0.8484562103584933,17421.737441426594,-0.035,32563.117666666665 +12,0.25446995022923996,0.07810077900904544,0.8291204824240244,16676.94265822347,-0.128,31771.21 +13,0.27275003140792253,0.0864764077756008,0.860264453006251,17874.94605834961,0.025666666666666667,32981.568 +14,0.26959663707452514,0.08542077462065212,0.8508743574929004,17668.28520731608,-0.0023333333333333335,32741.047333333332 +15,0.2694500625456373,0.08548851188983063,0.8492759389637294,17658.679298990886,-0.031,32755.980666666666 +16,0.27188680848355096,0.08607484324832944,0.8588158146753968,17818.373880777996,0.02266666666666667,32963.293 +17,0.274031748315009,0.08811114173534884,0.8522577009628524,17958.94465757243,0.049666666666666665,33044.325666666664 +18,0.27144272416085,0.08641117082482094,0.8526808721205172,17789.270370605467,0.047,32948.76233333333 +19,0.2861920958931247,0.09336571988249509,0.8772589752939487,18755.88519645182,0.09933333333333333,33895.25666666667 +20,0.2787311263323451,0.08940106863852842,0.8690169141112019,18266.923095316568,0.08333333333333333,33561.715 +21,0.27241976619760194,0.08717072976333208,0.8513468823381726,17853.30179752604,0.050666666666666665,33022.21133333333 +22,0.2568287094924599,0.07971075659599605,0.8275042018968322,16831.52630529785,-0.061,31872.666 +23,0.26871797773366174,0.08508909014696367,0.8486323150541463,17610.701388753256,0.0,32728.635 +24,0.2710841577701891,0.08628392379176289,0.851683805795909,17765.771363627115,0.01633333333333333,32805.11066666667 +25,0.28438789857613544,0.0930148377032725,0.8695008114141435,18637.645321085613,0.098,33649.67333333333 +26,0.28238629100068163,0.09199359714357007,0.8668213856304808,18506.46796702067,0.086,33526.21233333334 +27,0.27429462915596864,0.08755758957780573,0.8592920836057567,17976.17281636556,0.0026666666666666666,33061.39033333334 +28,0.26824177450904,0.08556385868085209,0.8409350711980084,17579.492934224447,0.0023333333333333335,32507.527666666665 +29,0.2674117312592765,0.08373985589328949,0.8539426447808576,17525.095219807943,-0.015333333333333332,32536.513666666666 +30,0.2686350595566134,0.08527249051561106,0.8462845964346944,17605.267263102214,0.024,32720.924666666666 +31,0.2887028664257377,0.09420546353742293,0.8847612649273467,18920.431054077148,0.16633333333333333,34194.628666666664 +32,0.2776962258297329,0.08848322845661319,0.8715232839621199,18199.099855977376,0.08166666666666667,33361.022666666664 +33,0.2722939966088161,0.08690778273778679,0.853134417350228,17845.05936175537,0.05266666666666667,33054.221666666665 +34,0.27656317759212107,0.089080801382178,0.8586271117129122,18124.844406677246,0.055,33297.128 +35,0.27538392566423864,0.08803563977419539,0.8614273345290746,18047.560952331543,0.01633333333333333,33093.649666666664 +36,0.268994326981095,0.08560684177415487,0.8452355728634936,17628.81221303304,-0.008,32611.860333333334 +37,0.2732568962580214,0.08701937999961522,0.8580770324138973,17908.16395316569,0.047,33022.704333333335 +38,0.27050632920426626,0.0854672367075662,0.8561605237096545,17727.902790730794,0.018,32726.558666666668 +39,0.2721027788684393,0.08534950228604081,0.867490966962982,17832.52771592204,0.059666666666666666,33058.206333333335 +40,0.2766509400429204,0.08893404809664501,0.860589889526448,18130.59600665283,0.06533333333333333,33281.216 +41,0.28560211887800446,0.09354939669981283,0.8719304793525088,18717.2204627889,0.144,33847.256 +42,0.26528526761879523,0.0848026942015052,0.829882515859109,17385.735298665364,-0.038,32366.449 +43,0.2637225651688253,0.08176491036135997,0.8506043860606088,17283.322030904135,-0.015666666666666666,32428.248333333333 +44,0.2837991662748779,0.09167269100871173,0.8785818970958519,18599.062160990397,0.081,33699.00033333333 +45,0.2749392560574537,0.08722475926141256,0.8666300160815361,18018.419084981284,0.041666666666666664,33226.20333333333 +46,0.2719440911952406,0.08646442423317645,0.855306554017731,17822.127960571288,0.004333333333333333,32815.823333333334 +47,0.2745842047830423,0.08836470030420376,0.853242134662102,17995.15044466146,0.024,33015.80333333334 +48,0.26478385366840906,0.08344601299949429,0.8401898022847222,17352.874634012856,-0.026333333333333334,32395.717333333334 +49,0.2634967808307459,0.08244084264744303,0.8421863639250367,17268.525028523763,-0.057,32326.717 +50,0.26991767111855247,0.08556900240953738,0.8514245477979616,17689.324494425455,-0.018666666666666668,32671.332666666665 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/manifest.json" new file mode 100644 index 000000000..483a4c06c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0010", + "params": { + "L": 256, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 150000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.856461311160152, + "se_Qm": 0.001876932268023034, + "Rp": 0.02962666666666669, + "se_Rp": 0.008758755334597369, + "chi": 17906.042833479005, + "se_chi": 73.24018126356724, + "tau_m2": 5.826347946523522, + "runtime_s": 828.4542551040649 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/metadata.txt" new file mode 100644 index 000000000..04106b698 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:54:57.981 +hostname=a04r06n06 +julia=1.12.6 +slurm_job=23025356 +slurm_array_task=10 +cell=cell-0010 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=256 +seed=84002 +thermalization_sweeps=5000 +measurement_sweeps=150000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/summary.csv" new file mode 100644 index 000000000..a9dd7471b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0010/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +256,nearest_neighbor,0.44068679351,84002,5000,150000,0.5048994710286459,0.27322453054014595,0.08716289120843175,0.856461311160152,0.001876932268023034,17906.042833479005,73.24018126356724,0.22608666666666666,0.4818,0.02962666666666669,0.008758755334597369,33009.70698,5.826347946523522,50,828.4542551040649,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/blocks.csv" new file mode 100644 index 000000000..bc642aaf6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.2816968876728788,0.09104998653085579,0.8715337535793555,18461.287230529786,0.099,33594.48733333333 +2,0.26879328555831067,0.084509250147118,0.8549339893024179,17615.636762349448,0.04733333333333333,32843.24566666667 +3,0.2634641788344209,0.08189290092868276,0.8476116090861776,17266.38842409261,-0.04933333333333333,32396.096 +4,0.26873227127982924,0.0856481522957533,0.8431826220586953,17611.63813059489,-0.010333333333333333,32602.425666666666 +5,0.27501730268821123,0.08895104557092141,0.8502937350814518,18023.53394897461,0.0026666666666666666,32966.08466666667 +6,0.2790635613963629,0.08995450994646122,0.8657317053427541,18288.70955967204,0.057,33297.62066666667 +7,0.2689588999294986,0.08556889884366436,0.8453876446797599,17626.49046577962,-0.025333333333333333,32679.62 +8,0.2728072160920128,0.08777946063906411,0.8478495608203098,17878.69371380615,0.030666666666666665,32905.04433333333 +9,0.2746277152647575,0.0882295841724336,0.854819646935444,17998.001947591147,0.04466666666666667,33052.00033333333 +10,0.2786457479009405,0.0902341806698109,0.8604660921939438,18261.327734436036,0.08766666666666667,33416.05233333333 +11,0.28001834656919045,0.090552618772183,0.8659084130146684,18351.282360758465,0.08566666666666667,33471.19633333333 +12,0.27110547414949787,0.08643457680426021,0.8503330591907458,17767.168353861493,0.006666666666666667,32759.256 +13,0.2716096391575411,0.08639933619102176,0.8538467925284329,17800.209311828614,0.028666666666666667,32958.944 +14,0.2779578974917531,0.08903521575629296,0.8677531931804768,18216.24877001953,0.05633333333333333,33257.938 +15,0.27552934995200484,0.0882577028136878,0.8601676710896734,18057.09147845459,0.068,33264.47866666667 +16,0.2694029337487494,0.08545662578407875,0.8492956519932584,17655.59066615804,-0.0036666666666666666,32691.444333333333 +17,0.2652969578821212,0.0835991904558977,0.8419037968870988,17386.501431762696,-0.055,32396.424 +18,0.2669605646313479,0.08403207896758395,0.8481040091341814,17495.527563680014,-0.008,32512.2 +19,0.27483865338688096,0.08855615732219585,0.8529760965201858,18011.82598836263,0.05366666666666667,33154.575 +20,0.26673750556943315,0.08352141770404425,0.8518640946627303,17480.90916499837,-0.042,32581.146333333334 +21,0.268563352484256,0.08414222049877446,0.8571948050578636,17600.5678684082,-0.0016666666666666668,32773.710333333336 +22,0.2772369439030687,0.08926516397833276,0.8610337968277243,18169.00035563151,0.027,33206.632 +23,0.27275256997098524,0.08655356442368467,0.859513584693225,17875.11242561849,0.023333333333333334,33022.43633333333 +24,0.2741288113072515,0.08711386106372872,0.8626251238451328,17965.305777832033,0.059,33074.10166666667 +25,0.27707951647074275,0.08910628305358304,0.8615897310125035,18158.683191426597,0.04533333333333334,33251.40433333333 +26,0.270859344114239,0.08580957953912427,0.8549719587024149,17751.037975870768,0.031,32871.791 +27,0.2672597405621782,0.0850363926500877,0.8399670623291561,17515.13435748291,-0.03133333333333333,32600.612 +28,0.28179766025425246,0.09100422138169967,0.8725960193835568,18467.89146242269,0.09366666666666666,33683.012 +29,0.2739843894097333,0.08798393735601727,0.853194888704199,17955.84094435628,0.025,33024.49 +30,0.2698689515873169,0.08618740954733488,0.8450103259089035,17686.1316112264,0.01,32707.103333333333 +31,0.281079243883801,0.09099349105696686,0.8682548655356848,18420.809327168783,0.107,33482.414 +32,0.28077695150114595,0.09071013391050824,0.8690946986370198,18400.9982935791,0.08166666666666667,33634.183333333334 +33,0.27871798660233615,0.09041119397091311,0.8592267466421499,18266.061969970702,0.04566666666666667,33351.714 +34,0.2782100512518858,0.09027596507625693,0.8573802844665879,18232.773918843588,0.059666666666666666,33194.18066666667 +35,0.26534140000989037,0.08375693449262236,0.8405997543452391,17389.413991048175,-0.02033333333333333,32453.914333333334 +36,0.271160130080767,0.08566095305837115,0.8583586047112399,17770.750284973146,0.021333333333333333,32859.217333333334 +37,0.27384590107078355,0.0881465138839535,0.8507605602190593,17946.76497257487,0.063,33058.450333333334 +38,0.27355331001089267,0.08720285793771107,0.8581302859519532,17927.589724873862,0.004,32988.881 +39,0.2762811070103198,0.08930825346767146,0.8546942429960162,18106.35862902832,0.041666666666666664,33171.456 +40,0.2705288026360795,0.08665559280634609,0.8445598337693351,17729.375609558105,0.012,32886.55533333333 +41,0.2748903868847216,0.08842201975887076,0.8545917069944678,18015.216394877116,0.034666666666666665,33176.16066666667 +42,0.27390288937216006,0.08754075784397673,0.8570041504567546,17950.499757893882,0.041666666666666664,32960.168666666665 +43,0.27891159254591913,0.09022555263877001,0.8621911884313984,18278.750129089356,0.043666666666666666,33356.791666666664 +44,0.28259476684437446,0.09145973659923409,0.8731689508112483,18520.130639912924,0.10433333333333333,33627.369 +45,0.284025174897785,0.09172481777886933,0.8794817142095364,18613.873862101238,0.12566666666666668,33859.656 +46,0.27575616746023296,0.08862102656734125,0.858052167050601,18071.956190673827,0.04066666666666666,33267.64266666667 +47,0.28119327428098767,0.09094987294797768,0.8693762282228774,18428.282423278808,0.09066666666666667,33544.384333333335 +48,0.2813925146323939,0.09086993946123416,0.8713744915052086,18441.339838948566,0.112,33671.33066666667 +49,0.27432583444720754,0.08786876052389828,0.8564438942403106,17978.217886332193,0.017,32923.76966666667 +50,0.26955206716867786,0.08414452992056813,0.8634942400117557,17665.364273966472,-0.007333333333333333,32831.46666666667 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/manifest.json" new file mode 100644 index 000000000..87c7d374c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0011", + "params": { + "L": 256, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 150000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8570547288291313, + "se_Qm": 0.0013157505346371094, + "Rp": 0.035486666666666666, + "se_Rp": 0.006158424055557766, + "chi": 17971.065941933593, + "se_chi": 48.02948599238814, + "tau_m2": 5.804121412605313, + "runtime_s": 817.722403049469 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/metadata.txt" new file mode 100644 index 000000000..52f4d2a55 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:54:46.807 +hostname=a04r06n06 +julia=1.12.6 +slurm_job=23025357 +slurm_array_task=11 +cell=cell-0011 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=256 +seed=95003 +thermalization_sweeps=5000 +measurement_sweeps=150000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/summary.csv" new file mode 100644 index 000000000..f60faf924 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0011/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +256,nearest_neighbor,0.44068679351,95003,5000,150000,0.505884198811849,0.2742167044362426,0.0877362885502088,0.8570547288291313,0.0013157505346371094,17971.065941933593,48.02948599238814,0.22435333333333332,0.4841933333333333,0.035486666666666666,0.006158424055557766,33066.30558,5.804121412605313,50,817.722403049469,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/blocks.csv" new file mode 100644 index 000000000..2e614e870 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.2762591368906821,0.08861480100527012,0.8612456367311118,18104.918795267742,0.06766666666666667,33245.295666666665 +2,0.2763069008563956,0.08859853037302585,0.8617016912067166,18108.04905452474,0.06166666666666667,33239.689 +3,0.2856495598902305,0.09383847864993858,0.8695331833956133,18720.329556966146,0.09433333333333334,33695.68466666667 +4,0.2742231214595959,0.0881195100531973,0.853367435856684,17971.486487976075,0.04833333333333333,33060.93033333333 +5,0.27479163474248103,0.08854455303338432,0.8527960211846696,18008.744574483237,0.051333333333333335,33081.654 +6,0.27313431122588616,0.08809631442190251,0.8468271625026302,17900.130220499675,0.050666666666666665,32943.97233333333 +7,0.27551642812384913,0.08781553718601481,0.8644176713891716,18056.244633524577,0.027,33203.566333333336 +8,0.27144672366107503,0.08570638079282397,0.8597180642179374,17789.532481852213,0.043666666666666666,33095.227333333336 +9,0.27452027637294185,0.08756623747742409,0.8606214485269587,17990.960832377117,0.06233333333333333,33212.40266666667 +10,0.2701530415757249,0.08549641179874382,0.853634255954677,17704.749732706707,0.008333333333333333,32929.242 +11,0.2755515274753173,0.0891502003680256,0.8516934788764978,18058.544904622395,0.028666666666666667,33056.436 +12,0.26114043352597704,0.08106546550832969,0.8412253676027814,17114.09945155843,-0.04933333333333333,32234.477333333332 +13,0.26773006831047436,0.08418149865263108,0.8514862603398298,17545.957756795247,-0.007,32711.272666666668 +14,0.27916109440568837,0.09044331400931711,0.8616548108990514,18295.101482971193,0.07666666666666666,33359.524333333335 +15,0.27170938519512616,0.08607297250492033,0.857713958918907,17806.74626814779,0.05633333333333333,32988.72266666667 +16,0.27601824155946575,0.08876208207379814,0.858317739890749,18089.131478841147,0.04766666666666667,33139.47633333333 +17,0.26667808419000355,0.08383001883624586,0.8483500489982169,17477.014925476073,-0.021333333333333333,32549.740333333335 +18,0.2738545533781871,0.08830777680261633,0.849260610122668,17947.33201019287,0.059333333333333335,33047.117666666665 +19,0.2762449232923488,0.08806793216023817,0.866504478678443,18103.98729288737,0.023666666666666666,33260.068 +20,0.28885121569409966,0.09431767604461072,0.8846170549038538,18930.153271728515,0.14733333333333334,34095.54033333333 +21,0.2792578611920277,0.09040124298970803,0.8626535483192883,18301.44319108073,0.049666666666666665,33379.323 +22,0.2764612943151345,0.08847222759504435,0.8638964942110329,18118.167384236654,0.031,33280.89566666666 +23,0.2736833206349984,0.08689618607991303,0.861977531728678,17936.110101135255,0.04733333333333333,33132.348666666665 +24,0.27423307864492136,0.08721887686762815,0.8622420297524376,17972.139042073566,0.05433333333333333,33095.30766666667 +25,0.2553433274049312,0.0782197442753161,0.8335518794427613,16734.18030480957,-0.13633333333333333,31579.810666666668 +26,0.27185493291262536,0.08602794912134114,0.8590824877701778,17816.284883361815,0.05,33020.73133333334 +27,0.2584317605163281,0.07968832285824783,0.8381024025611832,16936.58385719808,-0.075,31926.860666666667 +28,0.2702551937028766,0.08570117078919888,0.8522388790117262,17711.44437451172,-0.015,32702.886 +29,0.27252484620176254,0.08719229885715253,0.8517930226724588,17860.18832067871,0.041666666666666664,32906.21433333333 +30,0.27669586313826344,0.08972743466439635,0.8532574341859313,18133.540086629233,0.08533333333333333,33176.18066666667 +31,0.2800032020205011,0.090589942548567,0.8654580291813393,18350.28984761556,0.11566666666666667,33548.20566666667 +32,0.2738462831247598,0.08742510398419066,0.8577832151598823,17946.790010864257,0.03833333333333333,33192.471666666665 +33,0.2724638988341515,0.0869571101541673,0.8537148490364024,17856.194073994953,0.009,32941.914333333334 +34,0.2718612341471016,0.08608673609160468,0.8585356349593662,17816.69784106445,0.01633333333333333,32983.44066666667 +35,0.2714142002022515,0.08658933085987855,0.8507476306825358,17787.401024454753,-0.019666666666666666,32782.58033333333 +36,0.2712321651087453,0.08640634845738471,0.8514060448447326,17775.471172566733,0.005,32782.34766666667 +37,0.26607596294892333,0.08393057384446023,0.8435116646574635,17437.55430782064,-0.006333333333333333,32526.557 +38,0.27262346014225236,0.0866635427797643,0.8576103472807554,17866.65108388265,0.014333333333333333,32849.59133333333 +39,0.2780496647367254,0.08966638341154415,0.8622140552426012,18222.262828186034,0.086,33420.058666666664 +40,0.2647742517727117,0.08257903503127882,0.8489491839574679,17352.245364176433,-0.0016666666666666668,32588.41 +41,0.2699089023526758,0.0864759500278164,0.8424401876567141,17688.74982458496,0.014333333333333333,32729.04 +42,0.2586358250929043,0.0794845963682496,0.8415780299314424,16949.957433288575,-0.036,32019.007333333335 +43,0.27712301120130967,0.08881692513876374,0.8646681160972035,18161.53366208903,0.07266666666666667,33299.83033333333 +44,0.26039509739136946,0.08076637697145522,0.8395276510846204,17065.25310264079,-0.07566666666666666,32021.377 +45,0.26812749035004524,0.08537793325370421,0.8420483881681977,17572.003207580565,0.005666666666666667,32679.417666666668 +46,0.27510515606434394,0.0878639569915801,0.861363970899235,18029.291507832844,0.026333333333333334,33183.973666666665 +47,0.2699268903871998,0.08525006829415707,0.8546682438153207,17689.928688415526,-0.012333333333333333,32832.51866666666 +48,0.2621143589823817,0.08125341406553738,0.8455513897462777,17177.92663026937,-0.07533333333333334,32232.96 +49,0.27593262388619283,0.0887942967008699,0.8574741368943489,18083.520439005533,0.051666666666666666,33170.450666666664 +50,0.27126541229741025,0.08576492951880564,0.8579838439994174,17777.650060323078,0.005,32884.525 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/manifest.json" new file mode 100644 index 000000000..fd4122625 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0012", + "params": { + "L": 256, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 5000, + "measurement_sweeps": 150000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8548253385046192, + "se_Qm": 0.0013203870032969297, + "Rp": 0.02487333333333336, + "se_Rp": 0.00731025366295726, + "chi": 17837.013377395426, + "se_chi": 60.01856716288002, + "tau_m2": 5.625869133595595, + "runtime_s": 811.923152923584 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/metadata.txt" new file mode 100644 index 000000000..3ef558bfe --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T16:54:40.838 +hostname=a02r05n04 +julia=1.12.6 +slurm_job=23025358 +slurm_array_task=12 +cell=cell-0012 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=256 +seed=106004 +thermalization_sweeps=5000 +measurement_sweeps=150000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/summary.csv" new file mode 100644 index 000000000..076fd7b7c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0012/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +256,nearest_neighbor,0.44068679351,106004,5000,150000,0.5037504339599609,0.2721712246306675,0.08665767400688368,0.8548253385046192,0.0013203870032969297,17837.013377395426,60.01856716288002,0.22738,0.47963333333333336,0.02487333333333336,0.00731025366295726,32940.385526666665,5.625869133595595,50,811.923152923584,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/blocks.csv" new file mode 100644 index 000000000..7ec544ead --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.23555786973517387,0.06429562328423746,0.8630060206256109,61750.08220385742,0.046,123352.866 +2,0.22555598359327997,0.05959068985303555,0.8537491655190225,59128.147763076784,-0.006,119992.404 +3,0.22347896144591506,0.0586968030590308,0.850861437184539,58583.66886927796,-0.0225,119358.9795 +4,0.22618968293600483,0.059769557057870515,0.85598380153887,59294.26824357605,0.0075,120061.931 +5,0.2267563170923968,0.06122784447357876,0.8397882986636227,59442.807987869266,-0.046,119474.4905 +6,0.22743560753911152,0.06083758523774895,0.8502466916551585,59620.87990273285,0.0265,120306.1305 +7,0.23395131537609268,0.06329941386113828,0.86467179753471,61328.93361795044,0.052,122486.507 +8,0.23628961759951198,0.06382296100997492,0.8748071619020851,61941.90551600647,0.094,123569.02 +9,0.22906890270346775,0.06112856645858382,0.8583967402756335,60049.03843029785,0.0135,120620.607 +10,0.22340537932582083,0.05982379017739305,0.8342828724779542,58564.379757987976,-0.066,118715.943 +11,0.23175450308524886,0.06222372739056901,0.8631779540168024,60753.05245677948,0.054,121752.836 +12,0.22114517387698288,0.0572018680614186,0.8549578813854588,57971.8804608078,-0.0835,118054.89 +13,0.2313937249017763,0.06227578994108178,0.8597732116216468,60658.47662065124,0.032,121583.234 +14,0.21822381613843025,0.057364292967559294,0.8301616121539307,57206.06405779266,-0.082,117603.301 +15,0.23174759860461927,0.06196651677547186,0.8667091883445431,60751.242488609314,0.0915,122512.9345 +16,0.22450301379247686,0.060212858997299876,0.8370571343268257,58852.118047615055,-0.0015,119212.7315 +17,0.2244609154278005,0.05900104805364643,0.8539289422261782,58841.082213905334,-0.0225,119463.8565 +18,0.21906953219368006,0.05716849989128051,0.8394738365852696,57427.763447380064,-0.071,117599.22 +19,0.21448159719514662,0.05506670121270629,0.8353933415711194,56225.063815124515,-0.133,115962.3155 +20,0.24227654037301544,0.06700231992562927,0.8760580541132076,63511.34139954376,0.1485,124745.2635 +21,0.23027402446750783,0.06291210282279681,0.842860498461162,60364.95387001037,-0.007,120802.833 +22,0.22506433006140286,0.060359406132453504,0.8392056170140634,58999.26373961639,0.008,119695.1955 +23,0.23288327166711678,0.06238054657381575,0.8694155662487433,61048.95236790466,0.0425,122206.126 +24,0.2223246362832433,0.05912754162813809,0.8359597327644368,58281.069453834534,-0.0345,118613.0165 +25,0.22358020804740955,0.059418036726636654,0.8412952057049985,58610.21005838013,-0.095,118746.97 +26,0.22512711029310595,0.05971330847612179,0.848759130624811,59015.721200675966,0.0065,119724.285 +27,0.23886326783889672,0.06535072654270727,0.8730684988695595,62616.57248435974,0.112,124232.625 +28,0.23654879787639949,0.0642335355106183,0.8711233677542137,62009.84807051087,0.07,123625.61 +29,0.21911465113147277,0.05811378348670469,0.8261590875674282,57439.5911062088,-0.0645,116986.349 +30,0.23535126277655946,0.06426488580907008,0.8619048519760008,61695.9214292984,0.0255,122628.357 +31,0.21169318653678057,0.054941303747969406,0.8156705824031791,55494.098691497806,-0.1585,114706.136 +32,0.22637037888579653,0.05950970186476458,0.8610957008883983,59341.636602638246,0.02,120569.0675 +33,0.22787226642650785,0.06070452717842855,0.8553854583815172,59735.34741011047,0.009,121066.7165 +34,0.23051410000224132,0.06156469002591247,0.863104326156408,60427.88823098755,-0.011,121192.3165 +35,0.2400914028553234,0.06582983336026485,0.8756498198859375,62938.5207101059,0.1575,124505.1185 +36,0.23765253011105233,0.06332044875010542,0.891950802355781,62299.1848534317,0.106,123902.76 +37,0.2225192506352323,0.05785400709710784,0.8558580362489812,58332.08643852234,-0.039,118895.8225 +38,0.23963761311574489,0.06601660589191088,0.8698748571508724,62819.56245261383,0.106,123753.951 +39,0.22933892993992777,0.061382177974738335,0.8568667082428548,60119.824450172426,0.033,121104.449 +40,0.24240077336362448,0.06714644677875299,0.87507437468569,63543.908332633975,0.192,125115.209 +41,0.21949307508923813,0.057320075420742723,0.8404945328228891,57538.79267619324,-0.064,117778.1695 +42,0.22842223884884152,0.06021710643343303,0.8664766922734145,59879.51938079071,0.0165,121126.0875 +43,0.22533995487951325,0.06033184260176182,0.8416466839953308,59071.51713193512,-0.038,119252.642 +44,0.24255392630409914,0.06593738077803599,0.8922466508577434,63584.056457061764,0.142,125049.179 +45,0.21885163560594084,0.0576127360507594,0.8313446243066283,57370.643164283756,-0.079,117886.7295 +46,0.24133187471790007,0.066538734717741,0.875295780749609,63263.7029660492,0.119,124682.1155 +47,0.2507689336687908,0.07065913837375934,0.8899777090508086,65737.5713476715,0.1945,126760.811 +48,0.22301832252697204,0.05811881642703146,0.8557843266679365,58462.91514051056,-0.0515,119185.894 +49,0.2291888848406961,0.061223635246380755,0.8579618757222854,60080.49102767944,0.0585,121472.82 +50,0.22843697068517213,0.06065530077452018,0.8603279335767335,59883.38124329376,0.018,120825.8945 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/manifest.json" new file mode 100644 index 000000000..c789d8eb3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0013", + "params": { + "L": 512, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 4000, + "measurement_sweeps": 100000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8557605805707813, + "se_Qm": 0.0024168960436939425, + "Rp": 0.01651999999999998, + "se_Rp": 0.01137091671496962, + "chi": 60038.17899579651, + "se_chi": 301.6427215394015, + "tau_m2": 5.938388597124834, + "runtime_s": 2277.554984807968 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/metadata.txt" new file mode 100644 index 000000000..ff105bcf0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T17:20:10.743 +hostname=a02r05n04 +julia=1.12.6 +slurm_job=23025359 +slurm_array_task=13 +cell=cell-0013 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=512 +seed=73001 +thermalization_sweeps=4000 +measurement_sweeps=100000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/summary.csv" new file mode 100644 index 000000000..0429d2051 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0013/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +512,nearest_neighbor,0.44068679351,73001,4000,100000,0.462055203704834,0.22902747724836925,0.06129469681784878,0.8557605805707813,0.0024168960436939425,60038.17899579651,301.6427215394015,0.23116,0.47884,0.01651999999999998,0.01137091671496962,120850.45434,5.938388597124834,50,2277.554984807968,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/blocks.csv" new file mode 100644 index 000000000..4ce17d169 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.23376765518839238,0.06381715724181407,0.8563107316925938,61280.78820170593,0.0745,122443.3675 +2,0.2328161000526743,0.06294356716985447,0.8611417954350771,61031.343732208254,0.043,122322.7995 +3,0.23308442972117335,0.0627074275948852,0.86637824994875,61101.68474482727,0.0675,122218.7725 +4,0.23756696188036586,0.0644754112460727,0.8753424024186419,62276.75365516663,0.0685,123808.608 +5,0.23128613541706,0.062368113949404856,0.8577023265374706,60630.27268276978,0.0545,121425.6045 +6,0.22853806690470083,0.060307147388404515,0.8660606625638524,59909.88301066589,0.0455,121380.109 +7,0.2305260797671508,0.06190250289419244,0.8584834371502686,60431.02865447998,0.0315,121188.9605 +8,0.2257789716401603,0.05993763833642499,0.8504863629888693,59186.602741638184,-0.0485,119738.924 +9,0.23306614423907013,0.0626920253354281,0.8664551400251251,61096.8913154068,0.036,121966.6735 +10,0.2286461912668019,0.06078440810854977,0.8600738644596841,59938.22716344452,0.0555,121247.1525 +11,0.23095364000170956,0.06235587763514119,0.8554058711536646,60543.11100460815,0.069,121358.3415 +12,0.2199000358643243,0.057619451435003556,0.8392309292926563,57645.47500161743,-0.1155,117385.493 +13,0.2323366203228652,0.06251357966675125,0.8634972662069681,60905.650997917175,0.0205,121785.0025 +14,0.22993342687556287,0.061353137336184645,0.8617225310751744,60275.66825486755,0.0085,121350.9865 +15,0.23129105489444918,0.06257119789688008,0.85495489733711,60631.562294250485,0.0065,121285.985 +16,0.2378931589673739,0.06491895770260646,0.8717508272811355,62362.26426434326,0.094,123547.313 +17,0.22920498043994303,0.061459851781809696,0.8547844086084089,60084.710392448425,0.0065,120826.171 +18,0.23011009686873876,0.06081057021838303,0.870747577119962,60321.981233558654,0.085,121427.523 +19,0.22172209410954383,0.05716757637923739,0.8599400242228217,58123.11663825226,-0.0545,119147.125 +20,0.22048082204337696,0.05790682082797609,0.8394830210647277,57797.72461373901,-0.0495,118510.348 +21,0.22173089077568148,0.05799095595713331,0.8477975076065217,58125.422631500245,-0.0225,118865.8995 +22,0.21203520369008766,0.05465257962277553,0.8226313911294517,55583.75643613434,-0.106,115810.3705 +23,0.23869631546351594,0.06546781773811487,0.8702891433432852,62572.80692086792,0.1205,123360.3015 +24,0.23085128075571265,0.06216564941061997,0.8572630436874156,60516.27814242554,0.05,120954.8375 +25,0.23977008926766574,0.0654629411861223,0.8782021501901571,62854.29028098297,0.127,123790.9365 +26,0.2238802627539553,0.06045325805156846,0.829109524717827,58688.86759937286,-0.0305,119510.6905 +27,0.22765562633424996,0.06160357199342278,0.841299985123802,59678.55650976562,-0.0015,119896.4995 +28,0.23100622187324915,0.0627425146155527,0.8505217693478434,60556.895026741026,0.0805,121786.614 +29,0.2288293028449698,0.061193805023902405,0.8556887387548769,59986.22876499176,0.01,120670.012 +30,0.22564581554726465,0.0601512705103645,0.8464664776318728,59151.696670822144,-0.0205,120068.0 +31,0.22914811927758275,0.061966803862068494,0.847370806558499,60069.80457990265,0.0735,120846.755 +32,0.22940597543519106,0.061383343760231725,0.8573514953981194,60137.400024482726,0.0525,121103.2125 +33,0.2301960316893237,0.062033380351997076,0.8542209485413956,60344.50853116607,0.052,120996.849 +34,0.23570207889113226,0.0634602122076121,0.8754378225501367,61787.885768836975,0.0865,123068.5005 +35,0.2352222493076988,0.06417515845418377,0.8621639260754503,61662.101322517396,0.0625,122632.8835 +36,0.22986096112575616,0.06191770230325271,0.8533272308924286,60256.67179335022,0.044,121070.1245 +37,0.22777464706654427,0.060880366293566156,0.8521842591438485,59709.75708061218,0.046,120603.2135 +38,0.2245021658448095,0.058612631422259885,0.8599037655536652,58851.89576322174,0.0,120241.0595 +39,0.22327393952113925,0.05929892146247339,0.8406772136797988,58529.92360182953,-0.0375,118986.9065 +40,0.2351028984900331,0.06348425942833508,0.8706626394659416,61630.81422177124,0.103,122906.167 +41,0.22104183214029763,0.05896657529677911,0.8285963922786667,57944.79004458618,-0.067,118157.8675 +42,0.24033316970488522,0.06581590353385297,0.8775999319174855,63001.89843911743,0.1415,124216.0765 +43,0.2302538416388852,0.06234029082102668,0.8504424809578022,60359.663062583924,0.041,121801.329 +44,0.21790389411608338,0.057290613100359974,0.8287938372692145,57122.19841916656,-0.08,117277.451 +45,0.2375051109494816,0.06522345017408153,0.8648527113571988,62260.5398047409,0.1115,123329.1225 +46,0.2285693887785601,0.06150215182969122,0.8494656517267234,59918.093851966856,0.0215,120494.85 +47,0.22243912334385096,0.05779697006895897,0.8560857694606854,58311.08154985047,-0.0165,119814.765 +48,0.2260026738443994,0.0605599057914304,0.8434162490399004,59245.244932266236,-0.024,119726.7195 +49,0.23995905486834818,0.06658684177737449,0.8647406375845885,62903.826479408264,0.1395,124245.3355 +50,0.23143478017585584,0.06262044112263322,0.8553446209386013,60669.23901441955,0.0465,121676.241 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/manifest.json" new file mode 100644 index 000000000..34386cba0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0014", + "params": { + "L": 512, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 4000, + "measurement_sweeps": 100000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8554230699139957, + "se_Qm": 0.0018252028567556492, + "Rp": 0.03004000000000001, + "se_Rp": 0.008655514226815889, + "chi": 60160.137557346345, + "se_chi": 224.8218163703492, + "tau_m2": 6.054496976235895, + "runtime_s": 2302.593829870224 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/metadata.txt" new file mode 100644 index 000000000..c9ac84cad --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T17:20:36.870 +hostname=a02r05n04 +julia=1.12.6 +slurm_job=23025360 +slurm_array_task=14 +cell=cell-0014 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=512 +seed=84002 +thermalization_sweeps=4000 +measurement_sweeps=100000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/summary.csv" new file mode 100644 index 000000000..ac0605369 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0014/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +512,nearest_neighbor,0.44068679351,84002,4000,100000,0.4625117565155029,0.22949271223963297,0.061568254146335,0.8554230699139957,0.0018252028567556492,60160.137557346345,224.8218163703492,0.22502,0.48008,0.03004000000000001,0.008655514226815889,121045.49701,6.054496976235895,50,2302.593829870224,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/blocks.csv" new file mode 100644 index 000000000..229fdb26e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.22378338989775512,0.059239934430490665,0.8453588964196276,58663.47296135712,-0.025,119289.27 +2,0.22347334412825876,0.058880064202965286,0.84817053466039,58582.19632315826,-0.0385,118980.1865 +3,0.22667809025832686,0.06000604423067247,0.8562963491750629,59422.301292678836,0.006,120524.3945 +4,0.2338639208021632,0.06371529853113084,0.858386207297423,61306.02365476227,0.073,122251.4175 +5,0.22629338892080705,0.060448950209102736,0.8471395730136658,59321.454145256044,0.018,119845.9965 +6,0.22633919351431542,0.06059443830314532,0.8454477334110633,59333.4615446167,0.041,119894.946 +7,0.22820756369197626,0.06051310512022356,0.8606184069179856,59823.243576469424,0.0375,121237.962 +8,0.21721683586732252,0.05648092404562578,0.8353821149614401,56942.090221603394,-0.0775,116977.9895 +9,0.22392804565190455,0.05863518040035717,0.8551823203596045,58701.39359937287,-0.0385,119531.1355 +10,0.2356780530337419,0.06446298063902967,0.8616440650301792,61781.587534477236,0.063,122472.6325 +11,0.23470751689764438,0.06304678022741414,0.8737578396478477,61527.16730961609,0.0865,123230.252 +12,0.21465738911411608,0.055914396889150314,0.8240774695761768,56271.146611930846,-0.1155,116402.6855 +13,0.24418130152017692,0.0680844036224876,0.8757440006773324,64010.66310570526,0.117,124732.9795 +14,0.222964237900218,0.05977926365556068,0.8316103000007542,58448.737180114746,-0.059,118724.772 +15,0.2287067539797863,0.0618700835883466,0.8454292653618237,59954.1033152771,0.007,120118.763 +16,0.22549543115639245,0.05951553035965722,0.8543684172035024,59112.27430506134,0.004,119526.896 +17,0.23976053126819896,0.06544183318336297,0.8784153737402215,62851.78470877075,0.12,124512.546 +18,0.22653713598742614,0.060428391547969806,0.8492543433105784,59385.35097628784,0.003,119580.8885 +19,0.24104199096758383,0.06561238197498413,0.885522513597645,63187.711680206296,0.1335,124465.826 +20,0.23494764987882807,0.06444273118643246,0.8565806750786205,61590.11672983551,0.0485,121365.1705 +21,0.23333393175515812,0.06370032186384188,0.8547009201098742,61167.09020602417,0.0945,121838.556 +22,0.22569266199372942,0.060065354166447704,0.848029257209793,59163.977185684205,-0.008,119817.3565 +23,0.23216281535386224,0.06319640030779185,0.8528899204783653,60860.08906812286,0.0175,121546.6705 +24,0.22875281002296832,0.0609146296228317,0.8590358082681503,59966.17663066101,0.037,120928.466 +25,0.21823431828519096,0.0576899767216656,0.8255544616906719,57208.8171325531,-0.0945,116637.986 +26,0.23565873321011896,0.06460262769095516,0.8596405521438771,61776.522958633424,0.066,122763.2905 +27,0.23143575071246597,0.062271040677193606,0.8601511412906198,60669.49343476868,0.053,121525.485 +28,0.24108439466301934,0.06621336922799545,0.8777938055062788,63198.82755454254,0.1055,124219.2555 +29,0.22335729800522677,0.059103371366161374,0.84408860982097,58551.77552828217,-0.0525,119153.9385 +30,0.2304711554796668,0.061458916942162094,0.8642676465991124,60416.63058206177,0.026,121712.643 +31,0.22533681034998154,0.05925978759109102,0.8568488035947196,59070.69281238556,-0.0145,119400.5685 +32,0.23815314075758215,0.0652419743431252,0.8693317304349361,62430.416930755615,0.0935,123213.5995 +33,0.22968475234156358,0.060948335252971435,0.8655705728342008,60210.47971782684,0.0475,121342.4125 +34,0.2374540958396974,0.06439898812593929,0.875548658012797,62247.166499801635,0.0855,123639.044 +35,0.23124356211393024,0.061412528671595294,0.8707276214775354,60619.11234679413,0.0665,121899.712 +36,0.22693353695925908,0.0604724819493335,0.85160768231718,59489.26511264801,-0.0465,120141.671 +37,0.22980414383296738,0.061528475757291194,0.8583008740720368,60241.7774809494,0.0325,120875.178 +38,0.22330390485021054,0.05805390166813609,0.8589368240295374,58537.77883305359,-0.008,119633.051 +39,0.24249640462116803,0.06651034331810975,0.884140771502854,63568.97749301147,0.167,125460.033 +40,0.22630221135390458,0.059392196530116396,0.8622797918864398,59323.76689315796,-0.0145,120477.1885 +41,0.21834537316739444,0.05787294441510023,0.8237822088618223,57237.92950359345,-0.088,117383.942 +42,0.23270390357726137,0.06334500898814671,0.8548598793352173,61001.932099357604,0.006,121658.403 +43,0.2374320483842748,0.06447146288665126,0.8744020234047579,62241.38689164734,0.0875,123478.355 +44,0.23356324309346382,0.06347348962212014,0.859442089116296,61227.20279749298,0.039,122037.4715 +45,0.24044187715678708,0.06636639174233418,0.8711080227946436,63030.39544538879,0.1245,124210.206 +46,0.22333966774118016,0.05886647806310413,0.8473516477963802,58547.15386034393,-0.012,118570.293 +47,0.23124292392865756,0.062124148492130986,0.8607488579718424,60618.94505035401,0.047,122038.3305 +48,0.23222069068509155,0.062348500261777684,0.8649197487645136,60875.26073895264,0.016,121504.856 +49,0.21937494557636092,0.05703936603684732,0.8437219781780608,57507.82573316956,-0.0545,118155.9885 +50,0.23957622546801577,0.06597668659241634,0.8699552944221205,62803.470049087526,0.0745,123823.1425 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/manifest.json" new file mode 100644 index 000000000..03bedf73d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0015", + "params": { + "L": 512, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 4000, + "measurement_sweeps": 100000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8568963810822351, + "se_Qm": 0.0020439770584385207, + "Rp": 0.025949999999999973, + "se_Rp": 0.009047473996331002, + "chi": 60280.532346953274, + "se_chi": 263.44969202751065, + "tau_m2": 6.1967842825993555, + "runtime_s": 2346.276829957962 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/metadata.txt" new file mode 100644 index 000000000..a2ed3f25e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T17:21:22.424 +hostname=a02r05n04 +julia=1.12.6 +slurm_job=23025361 +slurm_array_task=15 +cell=cell-0015 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=512 +seed=95003 +thermalization_sweeps=4000 +measurement_sweeps=100000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/summary.csv" new file mode 100644 index 000000000..872696f08 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0015/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +512,nearest_neighbor,0.44068679351,95003,4000,100000,0.46320489448547364,0.22995198191434202,0.061708644304869886,0.8568963810822351,0.0020439770584385207,60280.532346953274,263.44969202751065,0.2268,0.47955,0.025949999999999973,0.009047473996331002,121055.07606,6.1967842825993555,50,2346.276829957962,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/blocks.csv" new file mode 100644 index 000000000..d2bd9ab91 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.23347940388781718,0.06327911332814291,0.8614632723617253,61205.22485276795,0.1095,121836.781 +2,0.23822206251128228,0.0645059838436795,0.8797594840914871,62448.48435495758,0.092,123879.0845 +3,0.23093770784762455,0.06211509382824577,0.858603305878979,60538.93448600769,0.065,121559.2455 +4,0.22038324620999628,0.057197845180229065,0.849136450106062,57772.14569447326,-0.0235,119032.158 +5,0.21459089226298966,0.05516938523418867,0.8346884933872554,56253.71486138916,-0.063,116680.88 +6,0.22123284115578282,0.05775517768694218,0.8474386533993044,57994.86191194153,-0.02,119063.8835 +7,0.21883647232924705,0.05658538745781327,0.8463209986361377,57366.66820227814,-0.062,118366.6785 +8,0.22325136254748212,0.058761363445144654,0.848196296973868,58524.005183647154,-0.0145,119360.821 +9,0.21457582851895132,0.05475768458220873,0.8408461120277925,56249.765991271976,-0.0775,116575.3085 +10,0.21546525374101475,0.05611060208178722,0.8273886546790222,56482.92347668457,-0.0995,116452.3555 +11,0.22444936487809172,0.059344763938921914,0.8488957416028764,58838.05430660248,-0.013,119912.837 +12,0.2320780545748712,0.06322140184710508,0.8519302299799159,60837.86953847504,0.063,122000.6075 +13,0.23142662879382261,0.062057693469081146,0.8630402053463038,60667.102178527835,0.0555,121259.089 +14,0.23376353797130286,0.0635077090553071,0.8604528882827689,61279.70889794922,0.038,122595.3765 +15,0.2343887036817614,0.06401975438238526,0.8581423803264779,61443.59233795166,0.0485,122124.049 +16,0.21801397112180712,0.057287112905320486,0.8296820906798715,57151.054445755006,-0.045,117257.3765 +17,0.23560448482554056,0.06385290931006048,0.8693335021018762,61762.3020701065,0.0545,122471.8405 +18,0.23485378319676967,0.06443432502339218,0.8560080277369462,61565.51014233399,0.0665,122144.0105 +19,0.23853910147948773,0.06479855763481664,0.8781198997563514,62531.59421823883,0.114,124085.385 +20,0.23716050340709627,0.06471362027786068,0.8691385852747519,62170.203005149844,0.1095,123262.9915 +21,0.22385819065896795,0.059804014055529535,0.8379452502732698,58683.081532104494,-0.031,118359.918 +22,0.23533306006906787,0.06423306908188772,0.8621983964500909,61691.14969874573,0.078,122799.5055 +23,0.22312021057098172,0.058902318919657914,0.845172639690844,58489.62447991943,0.003,119468.666 +24,0.22310756629132084,0.05836940596663413,0.8527924057491741,58486.30985787201,-0.0215,119206.417 +25,0.21917743302418966,0.057131019041210325,0.8408522717303774,57456.04900269317,-0.0205,117616.7655 +26,0.23148163038349595,0.062470502800051904,0.8577447403698008,60681.52051525116,0.096,122462.09 +27,0.24899796610709746,0.06962639064667701,0.8904667691320326,65273.322827178956,0.242,127268.5015 +28,0.23229900597126107,0.06174173176234152,0.8740089828214025,60895.79062133026,0.06,121759.724 +29,0.22875393970296137,0.06040757458952713,0.8662550232350872,59966.472769493106,0.078,121168.7585 +30,0.2182628080440918,0.05655169877050875,0.8423911997518141,57216.2855519104,-0.0515,118345.6615 +31,0.22359867235345882,0.05934672699349341,0.8424452166285576,58615.05036542511,-0.085,118651.866 +32,0.236900457084761,0.06454669554914466,0.8694763703935637,62102.03342202759,0.1205,123925.4235 +33,0.2260750769227161,0.06013812964703179,0.8498757893800679,59264.22496482849,0.0135,119923.7175 +34,0.24587980456015793,0.06882949989020284,0.8783570763550885,64455.91548661804,0.1835,126184.7715 +35,0.23454373220860725,0.0630131046786933,0.8730051089982832,61484.23213609314,0.05,122604.239 +36,0.23920667883145508,0.06644449290236477,0.861167460208556,62706.59561559296,0.1325,124325.2685 +37,0.22342588409170275,0.059014541345569015,0.84587839783164,58569.754959335325,-0.0585,118327.17 +38,0.2334785979015578,0.06361092106179972,0.856963784962604,61205.01356830597,0.0965,122107.7 +39,0.2358685944407771,0.06354639307099913,0.8754862574388608,61831.53682108307,0.0365,122706.0935 +40,0.22278916900834883,0.059110825733132775,0.8396941374413793,58402.843920524596,-0.037,119233.3155 +41,0.2344431571450259,0.06383174065841164,0.8610699530545277,61457.86698662567,0.0845,122352.9045 +42,0.22448130497633248,0.058650609764896104,0.8591872528840785,58846.4272117157,-0.009,119638.263 +43,0.2284350529143121,0.06087878301713859,0.8571553308691164,59882.87851116943,0.006,120564.6305 +44,0.2319701862220536,0.06352513740700773,0.8470688847334661,60809.59249699402,0.026,121086.092 +45,0.2230990912731795,0.05912524125232207,0.8418266627362591,58484.08818271637,-0.05,118829.2005 +46,0.2208128789050388,0.05859669047955386,0.832100364223549,57884.771327682494,-0.074,117627.1875 +47,0.23786210980504985,0.06552418665187153,0.8634732634150687,62354.12491273499,0.1085,123469.1025 +48,0.23362761343468447,0.06294890347572153,0.8670820100978849,61244.077096221925,0.069,122385.1475 +49,0.23556389138085068,0.06382743537157273,0.8693808015229034,61751.66074214172,0.0905,122573.544 +50,0.22508650302750174,0.05976184462812097,0.8477638894919519,59005.07624964142,-0.0075,119918.6125 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/manifest.json" new file mode 100644 index 000000000..69fd99f75 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0016", + "params": { + "L": 512, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 4000, + "measurement_sweeps": 100000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8553447340261774, + "se_Qm": 0.0020058713185308044, + "Rp": 0.03054000000000001, + "se_Rp": 0.010462341018712623, + "chi": 60045.621839809726, + "se_chi": 297.87262098998156, + "tau_m2": 6.02561539200786, + "runtime_s": 2314.6155729293823 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/metadata.txt" new file mode 100644 index 000000000..92f2acad0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T17:20:49.130 +hostname=a02r05n05 +julia=1.12.6 +slurm_job=23025362 +slurm_array_task=16 +cell=cell-0016 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=512 +seed=106004 +thermalization_sweeps=4000 +measurement_sweeps=100000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/summary.csv" new file mode 100644 index 000000000..e5d73f4c0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0016/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +512,nearest_neighbor,0.44068679351,106004,4000,100000,0.4620300830841064,0.22905586944507494,0.06133970227451415,0.8553447340261774,0.0020058713185308044,60045.621839809726,297.87262098998156,0.22529,0.48112,0.03054000000000001,0.010462341018712623,120896.22032,6.02561539200786,50,2314.6155729293823,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/blocks.csv" new file mode 100644 index 000000000..284314e5e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.18440981402194667,0.04012430881180648,0.8475405686640137,193367.70514787675,-0.04,435306.222 +2,0.21908245638285734,0.054114656708827424,0.8869523639963716,229724.60578411102,0.275,474705.371 +3,0.18004303383090156,0.03980267089655626,0.814404995968242,188788.80424227144,-0.133,422788.01 +4,0.1800348767798714,0.039059341279200015,0.8298285581790878,188780.25095433043,-0.104,428857.407 +5,0.18881492772677666,0.041257882770210134,0.8641034037308724,197986.80165603256,0.026,439394.636 +6,0.19429268976456296,0.04360910824857154,0.8656368087321582,203730.65146256637,0.019,444900.423 +7,0.18720404572010738,0.041614622387227206,0.8421403997824702,196297.6694450073,-0.06,435603.109 +8,0.20383950849419852,0.04751394388113773,0.8744916087601672,213741.2164588127,0.159,459215.698 +9,0.18892721487175368,0.041607390635490495,0.8578642393582777,198104.543261364,-0.025,437210.349 +10,0.18425772352285638,0.04041530471872017,0.8400507905140076,193208.22670070265,-0.044,431883.524 +11,0.20297816917176534,0.04698355211438043,0.8769055404755468,212838.036717453,0.119,458009.227 +12,0.19764084819545677,0.04573010310688571,0.8541836169518263,207241.45003739928,0.082,451151.118 +13,0.1895983121581121,0.0417700916068694,0.8606042886267715,198808.23976950455,0.013,437235.967 +14,0.19972827020563272,0.04591854994185597,0.8687421961243639,209430.27065914153,0.081,450026.681 +15,0.20926021097618286,0.0490655861241563,0.8924755486868148,219425.23498456192,0.228,468026.1 +16,0.1823524080598363,0.040303883300062515,0.8250421051901338,191210.3586337509,-0.145,427145.577 +17,0.19306086132252312,0.04359569381879629,0.854958205953003,202438.985722126,0.038,440190.995 +18,0.19300857949951022,0.04323116062713874,0.8617004776187593,202384.16425727843,0.041,444292.16 +19,0.1989588493068877,0.044984727352270534,0.8799569553359285,208623.47437081908,0.168,454516.329 +20,0.18120666584739228,0.03888531852127704,0.8444281028471339,190008.9608475952,-0.082,429470.13 +21,0.18971777721410035,0.042329911654100785,0.8502931753124069,198933.5079600525,0.084,441119.655 +22,0.18766693234747436,0.040813195923109745,0.8629286851993244,196783.04125318528,-0.091,436684.458 +23,0.1934441248468902,0.0444616734126715,0.8416378999157154,202840.86665545273,0.015,441799.626 +24,0.19014001449922216,0.04241232021833773,0.8524227141464642,199376.25584353638,0.049,438912.424 +25,0.19025361786405484,0.04213172732712908,0.8591254478914878,199495.37760541917,-0.033,440591.562 +26,0.18487915351866832,0.04159308716261351,0.8217784189028109,193859.84327999115,-0.044,434636.882 +27,0.1913086681691384,0.04282692731144246,0.8545793222683762,200601.67803412248,-0.013,440109.085 +28,0.19791126396912295,0.04455270455111918,0.8791580399101031,207525.00152768707,0.055,450440.89 +29,0.19657941945107812,0.044990880109116636,0.8589178086314535,206128.4613303337,0.093,448828.635 +30,0.19369989362766138,0.043787453792812146,0.8568584272768632,203109.05966051866,0.011,445811.26 +31,0.18715945729612576,0.04142182701504065,0.8456571083323073,196250.91509374237,0.007,436839.716 +32,0.19778959100599605,0.04571133098024805,0.8558211163709788,207397.41817870332,0.064,451033.899 +33,0.18732799956305463,0.042137714532150594,0.8327879148149141,196427.64446982957,-0.024,437961.918 +34,0.18683217503834385,0.04145056623633733,0.842117847812608,195907.73477300644,-0.017,436458.253 +35,0.19663671917339162,0.04449408165201607,0.8690144372386049,206188.5444439583,0.044,447241.031 +36,0.16536588025920354,0.03373847623458366,0.8105248785915923,173398.6932586746,-0.251,408388.019 +37,0.20056158923334078,0.046043133628299066,0.8736362603061454,210304.06899193954,0.103,451853.67 +38,0.18819812873317643,0.04166234420116173,0.8501330479066422,197340.0410345192,-0.004,439275.691 +39,0.19709693393453198,0.04464242184106481,0.8701857955801863,206671.1145973358,0.095,450562.631 +40,0.19710486216427672,0.04443350192067052,0.8743476208145842,206679.42794876863,0.096,452640.629 +41,0.18122212952938935,0.03927183628229667,0.8362598579575805,190025.17569340896,-0.094,425598.153 +42,0.1621201039095722,0.032678280570190316,0.8042934827980583,169995.2500770836,-0.319,401434.954 +43,0.19517696307693405,0.04392939474618305,0.8671653032334301,204657.8792353592,0.004,445417.529 +44,0.18921317103851107,0.04239149104956089,0.8445474128898255,198404.39003487778,-0.025,437292.39 +45,0.18911715463861764,0.04188338538506412,0.8539256760118763,198303.70954234313,-0.044,438455.998 +46,0.18290998269569536,0.04000055906845376,0.8363898542639253,191795.01801512146,-0.065,430072.146 +47,0.2053291898563657,0.046821366233308445,0.9004452368388823,215303.26058282852,0.156,465574.734 +48,0.1969263155464796,0.04524484462469277,0.8571136463478349,206492.2082504654,0.111,447536.689 +49,0.193528530750551,0.04294730975956379,0.872075397135361,202929.37266028975,0.024,449601.4 +50,0.1959027494464608,0.0445255298287905,0.8619299397054542,205418.92140357208,0.055,447582.375 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/manifest.json" new file mode 100644 index 000000000..a5f4cf92f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0017", + "params": { + "L": 1024, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 3000, + "measurement_sweeps": 50000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8539393048752147, + "se_Qm": 0.0028527147983416117, + "Rp": 0.01315999999999995, + "se_Rp": 0.015087076778298894, + "chi": 200693.67065097665, + "se_chi": 1427.2131455661847, + "tau_m2": 6.855154659751575, + "runtime_s": 4816.958219051361 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/metadata.txt" new file mode 100644 index 000000000..19c59c850 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T18:05:48.133 +hostname=a02r05n05 +julia=1.12.6 +slurm_job=23025363 +slurm_array_task=17 +cell=cell-0017 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=1024 +seed=73001 +thermalization_sweeps=3000 +measurement_sweeps=50000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/summary.csv" new file mode 100644 index 000000000..3a6fcd353 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0017/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +1024,nearest_neighbor,0.44068679351,73001,3000,50000,0.42232940341949465,0.19139639916513124,0.042898343482071395,0.8539393048752147,0.0028527147983416117,200693.67065097665,1427.2131455661847,0.23064,0.47444,0.01315999999999995,0.015087076778298894,441793.7067,6.855154659751575,50,4816.958219051361,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/blocks.csv" new file mode 100644 index 000000000..607aed59a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.20337131130857597,0.04646784861001856,0.8900754285071946,213250.27612670136,0.166,459306.706 +2,0.20199231715247878,0.04719384690798115,0.8645384697751257,211804.2959504776,0.112,453776.91 +3,0.19473408283013122,0.04378452991436305,0.8660904454121523,204193.48563768767,0.081,446640.482 +4,0.18794020752210416,0.041190013791975004,0.8575263359181788,197069.5910426979,-0.036,439131.314 +5,0.20005439684738666,0.04607454294631104,0.8686306827743804,209772.2392286453,0.092,452807.592 +6,0.20710539607021564,0.04794321044200747,0.8946552532873078,217165.74778972243,0.176,460993.391 +7,0.18648666021835014,0.04185236938955119,0.830951149161864,195545.43622511672,-0.07,431416.034 +8,0.18985716773336753,0.04194795683051774,0.8592967777994912,199079.6695131836,-0.071,438908.227 +9,0.18561093910201817,0.040077930525856446,0.8596107698751215,194627.1760798378,-0.007,437067.196 +10,0.19580411693674615,0.04479848741321057,0.8558157746654891,205315.49772106553,0.045,448730.315 +11,0.20081778516941268,0.04528157453228977,0.8906002774172771,210572.70990180207,0.159,456209.266 +12,0.19487395111481964,0.04427556856783834,0.857715847621812,204340.14816417312,0.05,444299.969 +13,0.19335354631532756,0.04280318779384884,0.8734301298485561,202745.8881811409,0.022,443998.962 +14,0.18184508597473178,0.039357432448743235,0.8401878180499427,190678.39287104036,-0.06,430121.111 +15,0.18933889898333656,0.04304712889001768,0.8327900046438474,198536.2253403511,-0.015,439628.737 +16,0.18926280565007983,0.042191828941831,0.8489892593166498,198456.4356973381,-0.015,439119.247 +17,0.193152311742484,0.04339139485479122,0.8597975625424323,202534.87843768692,0.048,444341.835 +18,0.20518613074457243,0.04692243305144592,0.897254159940272,215153.25223162078,0.14,461691.554 +19,0.1873993537127244,0.040877444248045305,0.8591172569118263,196502.4647186737,0.034,441887.238 +20,0.18236173616939413,0.03904312885605641,0.8517709464659629,191220.13986555862,-0.067,433441.1 +21,0.19150319414041223,0.042492250104993474,0.8630626355479993,200805.6532989769,-0.064,440563.769 +22,0.20434053975540883,0.04708703476621422,0.8867633393107992,214266.58581456757,0.124,457337.124 +23,0.20213213733813246,0.04679680005024806,0.8730810846256797,211950.90804146958,0.116,455493.595 +24,0.1896452026939951,0.04260553204276679,0.8441463157588328,198857.4080600586,0.042,439741.319 +25,0.1981427624385833,0.04548939045623138,0.8630705734465329,207767.74526679993,0.045,451036.37 +26,0.17132706263805814,0.03657155796289052,0.8026172257132115,179649.44603276445,-0.201,414361.465 +27,0.19489249311739695,0.043840868336723716,0.8663853001674633,204359.59086306763,0.07,447170.613 +28,0.2019330333152684,0.04610634632813208,0.8844107848776771,211742.13234159088,0.109,458434.661 +29,0.17857530428298196,0.03836032182426484,0.8313053119274955,187249.7782638321,-0.154,424943.079 +30,0.18954507915674912,0.04276701527404164,0.8400711810801806,198752.42092186736,-0.002,437182.8 +31,0.1915444479855687,0.042108992612154124,0.8712931200236413,200848.91109091567,0.084,447075.104 +32,0.20312762441777887,0.04669157279219614,0.8836890542377792,212994.7519014969,0.088,457571.277 +33,0.1942656230703178,0.04462256427142455,0.8457410039760136,203702.26997658156,0.047,444158.945 +34,0.1967716392382754,0.044430765606626905,0.8714474639334823,206330.01838591386,0.024,447819.804 +35,0.2050122787145374,0.048184112108965005,0.8722799400906086,214970.95516537476,0.2,460533.829 +36,0.1832071260463599,0.039987312382934126,0.8393875215402496,192106.5954011879,-0.103,431673.462 +37,0.20235087502192983,0.047300311926496266,0.8656576448326543,212180.2711269951,0.099,452729.069 +38,0.19493016072921818,0.04375474253520858,0.8684262633094636,204399.08821680068,0.058,446953.956 +39,0.19910242955730065,0.04616572852998216,0.8586841087079273,208774.02917547608,0.117,453198.25 +40,0.19123132249740957,0.04343131434040538,0.8420058029440453,200520.57521904373,-0.016,441343.085 +41,0.19307135005890813,0.043284596550764685,0.8611965730083928,202449.98395936965,0.068,444286.712 +42,0.19786748311444172,0.045703875184648836,0.8566350384046695,207479.09397420884,0.084,452877.895 +43,0.19749150608183116,0.04495609960805586,0.8675773769190793,207084.8534812622,0.114,450514.349 +44,0.1974794385271889,0.044511043964925924,0.876145000592297,207072.19973308564,0.046,450640.757 +45,0.20339959261078547,0.047074242959439176,0.8788541604350503,213279.93122144698,0.141,458515.768 +46,0.18506952949176048,0.04082617249954962,0.8389405288159072,194059.46695635223,-0.073,429800.483 +47,0.19215537126892013,0.04412837673762896,0.8367334000756735,201489.5105836792,0.028,441049.791 +48,0.18857892918642027,0.04251894816579236,0.8363803449330741,197739.33925057983,-0.065,434153.931 +49,0.1788241327882679,0.03875140653474726,0.8252105749710598,187510.6938625908,-0.112,424941.968 +50,0.1934733228465302,0.04336243702792076,0.8632339236186278,202871.48297712326,0.061,446413.653 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/manifest.json" new file mode 100644 index 000000000..7783674dd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0018", + "params": { + "L": 1024, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 3000, + "measurement_sweeps": 50000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8589695602052705, + "se_Qm": 0.002763363413724107, + "Rp": 0.035180000000000045, + "se_Rp": 0.012512742566304648, + "chi": 203036.59282578004, + "se_chi": 1168.7902913534858, + "tau_m2": 6.33668200440111, + "runtime_s": 4801.937427043915 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/metadata.txt" new file mode 100644 index 000000000..e1934c412 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T18:05:31.985 +hostname=a02r05n05 +julia=1.12.6 +slurm_job=23025364 +slurm_array_task=18 +cell=cell-0018 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=1024 +seed=84002 +thermalization_sweeps=3000 +measurement_sweeps=50000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/summary.csv" new file mode 100644 index 000000000..2487001b7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0018/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +1024,nearest_neighbor,0.44068679351,84002,3000,50000,0.42540618293762206,0.1936307838685799,0.04364867184886147,0.8589695602052705,0.002763363413724107,203036.59282578004,1168.7902913534858,0.22404,0.48326,0.035180000000000045,0.012512742566304648,444920.68138,6.33668200440111,50,4801.937427043915,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/blocks.csv" new file mode 100644 index 000000000..4b7eaa7e7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.18866013453065533,0.04245366580763076,0.8383880563437098,197824.48922561645,-0.039,436049.984 +2,0.19427506646786788,0.04383011188583588,0.8611157906555886,203712.17209661103,0.061,448157.864 +3,0.19147318288243695,0.04324539441268544,0.8477661092247284,200774.1842141342,0.033,443544.607 +4,0.2029985857991487,0.04621961675483716,0.8915787003392153,212859.44510292815,0.136,456591.968 +5,0.1899292931511918,0.04258889993518466,0.8470079399047749,199155.2984953041,-0.003,440479.786 +6,0.1983491965241119,0.04593185125409066,0.856538604205659,207984.20709446716,0.043,448700.705 +7,0.19865636719358007,0.04589374116807281,0.8599070640596399,208306.2988863754,0.151,449815.641 +8,0.1843835835377613,0.04047330232016655,0.8399933766038862,193340.2004916916,-0.099,433591.292 +9,0.1921452051241431,0.0430103513558107,0.8583928912082965,201478.85060825347,0.037,443638.354 +10,0.19521640026105888,0.04416451946708836,0.8628972621175085,204699.23212014008,0.08,449217.98 +11,0.17456477750090926,0.03761356927137064,0.8101560722432212,183044.43613279343,-0.126,418375.173 +12,0.2015090052673586,0.04704047071426631,0.8632115832872718,211297.5067072258,0.15,453114.258 +13,0.19425660236289696,0.0443109968868812,0.8516086347122728,203692.81107927705,-0.046,440415.944 +14,0.17549711498503529,0.03825344765734269,0.8051362492593221,184022.06284254836,-0.16,417950.758 +15,0.19283743390360542,0.0432836511566989,0.8591298312589825,202204.70509290695,-0.027,441908.39 +16,0.20261988581132026,0.047174298574372955,0.8702793547945861,212462.34938449095,0.165,454670.435 +17,0.19957880545604711,0.04594527560938497,0.8669378746555286,209273.54550988006,0.084,455037.691 +18,0.20356271893302982,0.04657453761600995,0.8897088980474066,213450.98156792068,0.153,460469.761 +19,0.19282439295936638,0.042943800484655625,0.8658117376787245,202191.03067176056,0.058,443280.794 +20,0.2036849826403377,0.047054398464071376,0.8816938162512631,213579.18435707473,0.079,455572.14 +21,0.1929525538578746,0.04325195392287526,0.8607862689085427,202325.41711407472,0.039,446396.522 +22,0.19021241140313214,0.04158229232478706,0.8701002140333463,199452.16949945068,0.074,445036.04 +23,0.18187788239733346,0.03970761724109723,0.8330785477377132,190712.78241266633,-0.108,430313.1 +24,0.19304529081456712,0.04294988365236668,0.867673696332057,202422.65886117553,0.052,446639.217 +25,0.21241545361925818,0.05043479205235335,0.8946269648428113,222733.74669426726,0.246,470353.622 +26,0.19519689473821564,0.04421266812964005,0.861785305598842,204678.7790970192,0.055,447349.392 +27,0.1903582813035755,0.04308020847276131,0.8411350953364721,199605.12517617797,-0.012,440834.1 +28,0.18674043896754666,0.041375280399728175,0.8428218783991883,195811.5425308342,0.023,436366.939 +29,0.2080007301121914,0.049200657764492374,0.8793440106897941,218104.5735781212,0.217,464100.445 +30,0.190922807023122,0.0438272297202953,0.8317093841938291,200197.07329707718,-0.01,436756.514 +31,0.19413899624326222,0.04374964194151374,0.8614916188966029,203569.49212477493,0.045,446858.824 +32,0.2049413512364954,0.046779105148860196,0.8978572230696884,214896.5823141594,0.105,458353.436 +33,0.20112592654312902,0.047209935958648384,0.8568458631942245,210895.81955088806,0.079,452643.325 +34,0.19105309043569288,0.04258420806321984,0.8571553875286309,200333.6853566971,0.003,441960.06 +35,0.1924813502215984,0.04344678231867796,0.8527460080099433,201831.32428996277,0.012,441210.641 +36,0.20013671484249063,0.045366530021309796,0.8829131213943343,209858.55590267945,0.114,454581.922 +37,0.18451640635230432,0.03992500079677404,0.8527565067930982,193479.47530727385,-0.076,436262.394 +38,0.20740949472216744,0.048170344822564055,0.893053571847256,217484.61833779144,0.189,463851.979 +39,0.1700304469300645,0.035793716333053796,0.8076935240317626,178289.8459201393,-0.224,410951.403 +40,0.18385786890553937,0.04013834757481735,0.8421800597415432,192788.94874549485,-0.105,429394.579 +41,0.20025849666499562,0.04548278629885431,0.8817284240902861,209986.25339899445,0.159,457855.225 +42,0.19286639421993096,0.043558628316848494,0.853962749901604,202235.07218555833,0.014,442479.202 +43,0.18746077954012072,0.04152838333867765,0.8462054392823066,196566.87436706162,-0.081,434511.054 +44,0.1944654084954527,0.04326713536110479,0.8740304803099789,203911.76017852782,0.059,448923.35 +45,0.18648162051600958,0.04155489342567461,0.8368543852116125,195540.15171419526,-0.127,431983.619 +46,0.1904340012584653,0.04301636609014195,0.843053752130402,199684.5233035965,0.001,439691.251 +47,0.19516734331072438,0.04419515940545327,0.8618656976778811,204647.79217938613,0.041,447627.181 +48,0.19682544135703575,0.04469226258967857,0.8668224010287356,206386.43399639512,-0.009,445685.947 +49,0.19513596068070183,0.043938142782925994,0.8666284175665528,204614.8851067276,0.063,445760.39 +50,0.19807754892497906,0.045821901732616126,0.8562437154414331,207699.36394155884,0.052,446624.095 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/manifest.json" new file mode 100644 index 000000000..e7b70257d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0019", + "params": { + "L": 1024, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 3000, + "measurement_sweeps": 50000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8575646374219666, + "se_Qm": 0.0029349265349284306, + "Rp": 0.032399999999999984, + "se_Rp": 0.013948505881510413, + "chi": 203121.96636328255, + "se_chi": 1245.7236854929074, + "tau_m2": 6.720386937431193, + "runtime_s": 4841.091346025467 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/metadata.txt" new file mode 100644 index 000000000..eeaff8b0a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T18:06:13.568 +hostname=a02r05n05 +julia=1.12.6 +slurm_job=23025365 +slurm_array_task=19 +cell=cell-0019 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=1024 +seed=95003 +thermalization_sweeps=3000 +measurement_sweeps=50000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/summary.csv" new file mode 100644 index 000000000..4fdd5f703 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0019/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +1024,nearest_neighbor,0.44068679351,95003,3000,50000,0.425185159034729,0.1937122024185968,0.04375695513596539,0.8575646374219666,0.0029349265349284306,203121.96636328255,1245.7236854929074,0.22412,0.48064,0.032399999999999984,0.013948505881510413,444638.78586,6.720386937431193,50,4841.091346025467,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/blocks.csv" new file mode 100644 index 000000000..de46fe075 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.20427224647906406,0.04712191438118299,0.8855147595248432,214194.97512403107,0.097,458290.833 +2,0.18555476596092194,0.042085312355024496,0.8181137134105625,194568.27427223968,-0.055,431506.321 +3,0.20423472013473293,0.046863064948763765,0.8900788062862933,214155.6258999977,0.149,460727.451 +4,0.19615183685091325,0.043449614403025735,0.8855209333528157,205680.10847778321,0.09,450535.158 +5,0.20637486978249217,0.04737849759884705,0.8989433822565333,216399.7354570465,0.227,465540.502 +6,0.19326315040992267,0.04343923929862896,0.8598365420166847,202651.10120423508,0.013,444317.772 +7,0.19830516717728824,0.04506579625029375,0.872611661198728,207938.0389780922,0.107,451755.182 +8,0.18204158493249997,0.040337541924395454,0.821545812257207,190884.4369621811,-0.124,426368.231 +9,0.19406461926407792,0.04338886714693876,0.867989392822132,203491.50220944977,0.077,444908.27 +10,0.18279145854280796,0.03945463587876821,0.8468641662002392,191670.7364329834,-0.092,430744.572 +11,0.20357387093231955,0.04646815002663525,0.8918435724816722,213462.6752867279,0.161,462762.112 +12,0.1910779023885916,0.043356730677030345,0.8421014271854892,200359.70257501982,-0.016,442471.368 +13,0.19894698024268292,0.046006882825589436,0.8603039049119793,208611.0287549515,0.095,452966.934 +14,0.20596130284113678,0.0482553913255235,0.8790739667171948,215966.07908794784,0.208,461333.515 +15,0.19394968502131815,0.04406065792365544,0.8537430463486759,203370.9849209137,0.004,446335.351 +16,0.19619806828470973,0.04420861584870422,0.8707280528842862,205728.5856497078,0.078,449363.342 +17,0.1786870152896736,0.03854808000520939,0.8282915628694647,187366.91574438478,-0.134,424585.339 +18,0.20492386384575,0.04836867806460616,0.8682021434900553,214878.24545592116,0.202,458823.025 +19,0.17059683476600548,0.035821355083814156,0.8124561442213577,178883.74661159897,-0.253,413497.375 +20,0.20003473686901999,0.04576680041978512,0.8742996142889626,209751.6242471695,0.12,452649.815 +21,0.19274900662647634,0.04439937728712908,0.8367725365883331,202111.98237236406,-0.022,438863.404 +22,0.19780364102138628,0.04569571282999354,0.8562352566176826,207412.15068764114,0.063,452095.356 +23,0.17508385244260352,0.03734034130399048,0.820944702582764,183588.72565885543,-0.128,420533.083 +24,0.1718120875546083,0.035639101707623674,0.8282866855636207,180158.03151966096,-0.25,415914.952 +25,0.2001370791724621,0.046425097494351204,0.8627844123441648,209858.9379303436,0.045,454400.236 +26,0.18904286245045296,0.04156936984369452,0.8597003990639446,198225.80853684616,-0.055,437757.388 +27,0.18373880064799233,0.04078607637235694,0.8277321543595135,192664.0966282692,-0.097,431139.406 +28,0.17901074156639515,0.03890149620829814,0.8237432674714238,187706.36734872437,-0.134,425791.616 +29,0.19179832462562263,0.04287191024309668,0.8580582745346451,201115.12004263687,0.063,444919.344 +30,0.20926637878697146,0.04953627713561925,0.8840474057167917,219431.7024029274,0.204,462300.979 +31,0.19327510363702094,0.043527647077335085,0.8581963003773785,202663.63507129287,0.04,447096.681 +32,0.20407685437433976,0.048018234200550645,0.867323906942998,213990.09165242768,0.097,457662.612 +33,0.1941657355562711,0.044280461976521204,0.851398815217818,203597.53032665252,-0.021,443800.289 +34,0.18258111001653016,0.04028995357164338,0.8273988619915045,191450.17001669313,-0.129,429258.501 +35,0.1931273626638249,0.04346477662201687,0.8581242354893718,202508.71743258287,0.049,443243.402 +36,0.20344147561860518,0.0470063992908303,0.8804850962058118,213323.84873825454,0.103,456522.615 +37,0.20259146987047644,0.04637300617977472,0.8850688589212258,212432.5531109047,0.147,456125.833 +38,0.19047513081716896,0.04247518559453896,0.8541640242881542,199727.65077174376,-0.024,439794.55 +39,0.19785177448981267,0.04532521158659749,0.8636545379159979,207462.6222874298,0.096,450709.108 +40,0.19032858958695215,0.04255340114891676,0.8512826480635053,199573.99115472793,0.023,443038.756 +41,0.19963741027190554,0.04593183971327727,0.8677008329921615,209334.99711327362,0.103,453896.158 +42,0.19169209753891484,0.04326418191126893,0.8493367639363065,201003.73286896516,0.022,442543.897 +43,0.18950832401617299,0.04254158247705554,0.8441953209142704,198713.8803635826,0.003,440496.524 +44,0.19327081656311929,0.04354544517537013,0.8578074787050882,202659.13974848937,0.038,446432.859 +45,0.19503156941451016,0.044715494568068136,0.8506517357285318,204505.4229303894,-0.063,442273.749 +46,0.19748170233571363,0.045223086440578604,0.8623697723209277,207074.57350837326,0.077,450711.662 +47,0.19126497182342428,0.041881973168677096,0.8734614603586689,200555.85909471894,0.043,445240.687 +48,0.20279830459657022,0.04656424912762963,0.8832345225736676,212649.43504065322,0.187,457791.658 +49,0.1871890356296426,0.04224401707099585,0.8294602996932646,196281.9302243881,-0.023,437485.702 +50,0.20197721809497307,0.046855478491213895,0.8706515853217454,211788.46344115448,0.16,459202.917 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/manifest.json" new file mode 100644 index 000000000..a62b466fa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0020", + "params": { + "L": 1024, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 3000, + "measurement_sweeps": 50000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8568095906106789, + "se_Qm": 0.00307082020523664, + "Rp": 0.031420000000000003, + "se_Rp": 0.016007449541270667, + "chi": 203071.705827547, + "se_chi": 1361.5995188370136, + "tau_m2": 6.186527207545499, + "runtime_s": 4819.915848970413 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/metadata.txt" new file mode 100644 index 000000000..bbdab46a0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T18:05:49.997 +hostname=a02r05n06 +julia=1.12.6 +slurm_job=23025366 +slurm_array_task=20 +cell=cell-0020 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=1024 +seed=106004 +thermalization_sweeps=3000 +measurement_sweeps=50000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/summary.csv" new file mode 100644 index 000000000..f5aa6683a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0020/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +1024,nearest_neighbor,0.44068679351,106004,3000,50000,0.4250615659332275,0.19366427023653698,0.04377384424410873,0.8568095906106789,0.00307082020523664,203071.705827547,1361.5995188370136,0.22482,0.48106,0.031420000000000003,0.016007449541270667,445130.52784,6.186527207545499,50,4819.915848970413,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/blocks.csv" new file mode 100644 index 000000000..ac12c6823 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.16780858357388864,0.03262160948394211,0.8632229116388725,703840.2133182954,0.0675,1.66156747e6 +2,0.1621940084937438,0.03073079738178055,0.8560434037700979,680290.9786013436,0.03,1.620488695e6 +3,0.15135327918871042,0.028631290413413158,0.8000971940281074,634821.6643143249,-0.12,1.5434506975e6 +4,0.14943486971275888,0.0264821902152908,0.8432376666932724,626775.2717757034,-0.1725,1.545490925e6 +5,0.14400652319830157,0.025617997064196287,0.8095042977675342,604007.136276729,-0.165,1.53793688e6 +6,0.15171353216320427,0.028020323082213947,0.8214393450747105,636332.6748062563,-0.16,1.550718425e6 +7,0.17042842086392965,0.03284957696875815,0.8842076312214618,714828.6073432636,0.1375,1.6742705825e6 +8,0.17120233680965669,0.03318582506754349,0.8832156521476161,718074.6460900903,0.0675,1.6888396075e6 +9,0.14203142502477079,0.02462626531830552,0.8191630128979355,595722.9741070962,-0.27,1.49849048e6 +10,0.18779624488652416,0.038502450542142054,0.9159788298378079,787674.5411125278,0.2975,1.78039078e6 +11,0.1670200709120172,0.03242515087439406,0.8603106950994736,700532.9515065574,0.06,1.657543055e6 +12,0.16122218296484334,0.03043680233625823,0.853985645166983,676214.8468981743,0.0875,1.63337841e6 +13,0.1755470431628885,0.035004175548090107,0.8803739519845499,736297.6653262759,0.1875,1.6977401225e6 +14,0.14479071471770966,0.025951555126379436,0.8078263890688839,607296.2739033485,-0.1725,1.534537655e6 +15,0.148541035863106,0.027738355865761184,0.795448707993532,623026.2608847689,-0.175,1.5439818275e6 +16,0.17010871380146228,0.031943353470519915,0.9058840530908361,713487.6587323284,0.1725,1.6829210575e6 +17,0.1607352781049434,0.031005489111032715,0.8332663140695402,674172.6198966765,-0.0275,1.60315108e6 +18,0.14917874673748258,0.02706468177120927,0.8222634452639134,625701.0141560101,-0.06,1.55198721e6 +19,0.14838761429130215,0.02663718594822734,0.8266220057126409,622382.7641724658,-0.08,1.545485335e6 +20,0.1623736948070018,0.030523745512541525,0.8637608629794299,681044.6376237869,0.05,1.633960145e6 +21,0.15600573822279387,0.02944566737118746,0.8265321363459188,654335.4918508172,0.01,1.5893744725e6 +22,0.16634454581092087,0.03164994527555591,0.8742671647654385,697699.5938729286,0.015,1.6482543325e6 +23,0.15443770004829105,0.028553897627332753,0.8352976363330145,647758.6630633473,-0.0175,1.58538933e6 +24,0.14143176998471405,0.02526976393308069,0.7915762732877442,593207.8385739661,-0.2375,1.5112954725e6 +25,0.145064476772813,0.0261973582363937,0.8032757437402915,608444.5151861167,-0.29,1.523316165e6 +26,0.15221094121768602,0.027649968422230255,0.8379094786866711,638418.9595931054,-0.0875,1.577340385e6 +27,0.16946727404087483,0.03320051227191237,0.8650215013441637,710797.2653787375,0.05,1.6569224575e6 +28,0.1650387258879249,0.03163376614930946,0.8610350381345343,692222.588146627,-0.03,1.6315306325e6 +29,0.1747499347601058,0.03481880659434485,0.8770415383398302,732954.3503640508,0.1525,1.6947090125e6 +30,0.17143077848747112,0.03323396803816821,0.8842913906358872,719032.7999331141,0.1675,1.690754305e6 +31,0.15960222325414292,0.029445075953606663,0.8650977741677438,669420.2434037447,0.0425,1.602245215e6 +32,0.14869874884150988,0.026396188589087956,0.837670856624018,623687.7570609403,-0.2375,1.549768395e6 +33,0.18168079337270795,0.03690625470936018,0.8943717248059072,762024.4783663225,0.3525,1.750774815e6 +34,0.17867271703986262,0.03478086512698066,0.9178592797463904,749407.691771164,0.3175,1.7417101925e6 +35,0.17321325483505176,0.03400653886816733,0.8822665478208216,726509.0476076769,0.19,1.6982080375e6 +36,0.1776557852615565,0.03473884894445886,0.908538394215696,745142.3707456875,0.205,1.7169624325e6 +37,0.1447065590454224,0.025290463716785606,0.82797960785781,606943.2994304514,-0.1875,1.533708035e6 +38,0.17549287673370997,0.03466876161012986,0.8883429448854133,736070.4748557067,0.255,1.701602205e6 +39,0.15868026797162885,0.02994499104172456,0.8408560686648258,665553.2826744748,-0.0725,1.60816803e6 +40,0.16002227953677958,0.030217253562785488,0.8474340626271897,671182.0871502327,-0.075,1.6100080925e6 +41,0.15404619587744264,0.029273038353628055,0.8106514321350021,646116.5755535412,-0.02,1.58829446e6 +42,0.16539791414825913,0.03099183974012218,0.8826991309321688,693729.1329036999,0.1725,1.66677476e6 +43,0.1457999688575552,0.026614419445407406,0.7987260801412029,611529.3925791192,-0.2,1.53455753e6 +44,0.15273382045414166,0.027923064646713392,0.8354247718028937,640612.0740660882,-0.1075,1.574009935e6 +45,0.14240731136686577,0.025237009577948336,0.8035754897228249,597299.5556952906,-0.1625,1.51031479e6 +46,0.16725644347838853,0.03203799973588619,0.8731730481196216,701524.3699071789,0.1,1.650513585e6 +47,0.15860669787321002,0.02850544807024697,0.8825009362508777,665244.7073163963,0.01,1.6164084975e6 +48,0.1586572840741428,0.029757326618358348,0.845913818556996,665456.8812213135,0.0275,1.61370398e6 +49,0.169874231813057,0.03225150439403272,0.8947568547969963,712504.1699904322,0.1425,1.68951068e6 +50,0.1589112141310568,0.031158585324370013,0.810459580039267,666521.941074748,0.0025,1.5740453675e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/manifest.json" new file mode 100644 index 000000000..2daa017b4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0021", + "params": { + "L": 2048, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 2000, + "measurement_sweeps": 20000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8496765777208306, + "se_Qm": 0.004909297929954397, + "Rp": 0.0048499999999999654, + "se_Rp": 0.022598470464766828, + "chi": 672277.5400036608, + "se_chi": 6981.939140395116, + "tau_m2": 6.750937005474047, + "runtime_s": 7887.243815898895 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/metadata.txt" new file mode 100644 index 000000000..c37021002 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:05:16.334 +hostname=a02r05n06 +julia=1.12.6 +slurm_job=23025367 +slurm_array_task=21 +cell=cell-0021 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=2048 +seed=73001 +thermalization_sweeps=2000 +measurement_sweeps=20000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/summary.csv" new file mode 100644 index 000000000..582035ae8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0021/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +2048,nearest_neighbor,0.44068679351,73001,2000,20000,0.38583020405769347,0.16028345584956666,0.030235959061026323,0.8496765777208306,0.004909297929954397,672277.5400036608,6981.939140395116,0.23275,0.47035,0.0048499999999999654,0.022598470464766828,1.6165301208e6,6.750937005474047,50,7887.243815898895,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/blocks.csv" new file mode 100644 index 000000000..df66aa673 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.1452516817526134,0.02515646720227539,0.8386730490541286,609229.7097817134,-0.1975,1.5292857925e6 +2,0.14790274538563097,0.02652037353552058,0.8248459269741347,620349.0765819335,-0.1575,1.54375322e6 +3,0.17020592024957126,0.03364146738704905,0.8611412503116916,713895.3721264577,0.085,1.663279975e6 +4,0.15994797404334749,0.02925138166903711,0.8746032816511914,670870.4273219085,0.0425,1.6270413325e6 +5,0.17095756956345554,0.03270280384818156,0.8936998407452723,717048.0178502798,0.175,1.6929614075e6 +6,0.1499352807099018,0.02635004127315199,0.8531519236921457,628874.147622664,-0.2125,1.548819195e6 +7,0.16437158955151687,0.03192034242550208,0.8464201007476303,689424.4155422854,0.0675,1.6480251825e6 +8,0.17383101478662297,0.0341636383501164,0.8844848839597959,729100.1206435919,0.2725,1.6930285975e6 +9,0.17251736359879316,0.034370760958433784,0.8659174226334736,723590.2682118725,0.0125,1.67415748e6 +10,0.1610951599680885,0.030602314033071364,0.8480290260762161,675682.0738347935,0.0725,1.6193223525e6 +11,0.17375902838115906,0.03422223850820392,0.8822391889042157,728798.187775209,0.075,1.687922735e6 +12,0.1727685588650428,0.033653380599792,0.8869532391788374,724643.8575218845,0.175,1.70406214e6 +13,0.14812552093261275,0.02728248473547721,0.8042218355216874,621283.4649497414,-0.145,1.5413517e6 +14,0.16684270559978756,0.03168325942042756,0.8785866391609319,699789.0274680114,0.135,1.650841815e6 +15,0.16457990336063688,0.030850417252428524,0.8779960532969564,690298.1469851327,0.1875,1.656994665e6 +16,0.16709105591787932,0.03109675817709364,0.897824165745925,700830.6842005849,0.1325,1.67252352e6 +17,0.15600709946165864,0.028736306252857093,0.8469500174546628,654341.2013004327,0.035,1.615269705e6 +18,0.1580641187925704,0.029554529648980307,0.8453616398707877,662968.9657081532,0.0075,1.605433845e6 +19,0.15309388199253304,0.02835403374569958,0.8266103127953851,642122.2816168093,-0.11,1.568570335e6 +20,0.16741167501764095,0.03355159812525891,0.835330371673494,702175.4581731915,0.0175,1.6467321475e6 +21,0.15729078067085822,0.029004314924910478,0.852989968840796,659725.3505309033,-0.1175,1.605267355e6 +22,0.1673555968740294,0.032617729369654076,0.8586709236455865,701940.249391129,0.1125,1.6525713675e6 +23,0.16759649145864217,0.032271814548937065,0.8703751041532887,702950.6345109487,0.145,1.6722617275e6 +24,0.18110084546536315,0.03658958404716165,0.8963620954530511,759592.0005387545,0.19,1.7268925825e6 +25,0.1707779774515899,0.03414901330149986,0.8540544736961635,716294.7539371133,0.045,1.6614096425e6 +26,0.15738168391946544,0.029602245000744196,0.836726891244358,660106.6263901496,-0.0625,1.5848899875e6 +27,0.1618380177167222,0.03058475301228775,0.8563595059262162,678797.8450613188,-0.0175,1.62308291e6 +28,0.15962330011896939,0.030418162750407447,0.8376442111228193,669508.6461821938,-0.0725,1.596140485e6 +29,0.17169695519336073,0.033035717580600574,0.8923627691980951,720149.2259553337,0.22,1.700888595e6 +30,0.17087581411250427,0.03417308259443168,0.8544310794300091,716705.1106353331,0.185,1.6712111675e6 +31,0.16277258697585809,0.03053134161085697,0.8677940002935106,682717.7126431895,-0.02,1.6399444275e6 +32,0.13795976408394098,0.024113399258883717,0.7893078989717579,578645.19033633,-0.2375,1.478922615e6 +33,0.1606333845334302,0.030966408859350442,0.83326046439103,673745.2472821045,0.0925,1.6177704575e6 +34,0.1655287207308339,0.0313257514715336,0.8746719902852184,694277.7754762196,0.17,1.6694256e6 +35,0.15444665149425874,0.02870048455259121,0.8311277154251178,647796.2081489754,-0.0025,1.582020395e6 +36,0.1587815688335479,0.030525491289650864,0.825919110097673,665978.1692848253,-0.0125,1.5937547975e6 +37,0.16334718265140055,0.030822479308219557,0.8656766969759806,685127.7415834999,0.0025,1.64274077e6 +38,0.14045931145088275,0.023368350920258497,0.8442537618755447,589129.0518556833,-0.295,1.50893254e6 +39,0.15471156042710732,0.02896565663550971,0.8263464291863197,648907.3167456579,-0.0375,1.5852977625e6 +40,0.17332931095869525,0.033961438372841324,0.884622426988877,726995.8222712993,0.215,1.68718111e6 +41,0.14095815873003117,0.02528400359874328,0.7858408354896866,591221.3689940047,-0.3,1.480835335e6 +42,0.1692942964467545,0.03350405672695436,0.8554354788428912,710071.7447638082,0.1075,1.6530022e6 +43,0.17305970946322988,0.03318148144824502,0.9026017444764083,725865.0316404629,0.1925,1.6826733475e6 +44,0.1766820354260784,0.03475141251535764,0.8982812318350094,741058.1679157424,0.24,1.7145897775e6 +45,0.17544111992570607,0.034896021147908865,0.8820371362776538,735853.3910688687,0.2025,1.701582305e6 +46,0.1849371166962527,0.037827339552223456,0.9041539145174444,775682.4883075595,0.315,1.7503845e6 +47,0.1795593829110777,0.03657848035658038,0.8814355237588989,753126.6379814649,0.245,1.723111005e6 +48,0.1653331601402175,0.03169425289556664,0.8624608988897924,693457.5349087549,0.0575,1.6462588525e6 +49,0.1734479344309756,0.03393329591868364,0.8865683436841655,727493.3651755786,0.265,1.689668675e6 +50,0.15565255191459643,0.02921246830004266,0.8293621979725265,652854.1211055994,-0.0425,1.59955579e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/manifest.json" new file mode 100644 index 000000000..63f2067c2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0022", + "params": { + "L": 2048, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 2000, + "measurement_sweeps": 20000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8567956889879538, + "se_Qm": 0.004012262288597763, + "Rp": 0.04909999999999998, + "se_Rp": 0.021502818989374298, + "chi": 685821.7887167891, + "se_chi": 6366.523343969256, + "tau_m2": 6.963886092894838, + "runtime_s": 7940.384490966797 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/metadata.txt" new file mode 100644 index 000000000..b3e67b045 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:06:13.705 +hostname=a02r05n06 +julia=1.12.6 +slurm_job=23025368 +slurm_array_task=22 +cell=cell-0022 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=2048 +seed=84002 +thermalization_sweeps=2000 +measurement_sweeps=20000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/summary.csv" new file mode 100644 index 000000000..44956807d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0022/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +2048,nearest_neighbor,0.44068679351,84002,2000,20000,0.39054368281364443,0.16351265638274887,0.031205092580383894,0.8567956889879538,0.004012262288597763,685821.7887167891,6366.523343969256,0.22115,0.4914,0.04909999999999998,0.021502818989374298,1.6346329045e6,6.963886092894838,50,7940.384490966797,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/blocks.csv" new file mode 100644 index 000000000..567dbd86f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.15773043860173913,0.028558789937800973,0.871146547724237,661569.4095490288,-0.0475,1.6220719525e6 +2,0.17355582931045888,0.033759234911570006,0.8922484756109748,727945.9091001749,0.1,1.68576998e6 +3,0.15687563406248273,0.030368373313190408,0.8103813895035573,657984.0994508076,-0.0325,1.5947061375e6 +4,0.14964385461661492,0.027251261067212828,0.8217338335017791,627651.8179938864,-0.025,1.5702187525e6 +5,0.1764162051322961,0.03509639078145414,0.8867771511629744,739943.1948512101,0.265,1.7155592475e6 +6,0.16424197639823773,0.031236075827065276,0.8635984545736616,688880.7785750341,0.085,1.6323086625e6 +7,0.18640453975571575,0.038805393576252206,0.895407809052713,781837.3067155576,0.3725,1.76106324e6 +8,0.16797126403896698,0.03231068077214904,0.8732203985986079,704522.5446436953,0.1325,1.65733821e6 +9,0.15241775685400796,0.027860728104725604,0.8338322141863597,639286.407243793,-0.0725,1.5707499525e6 +10,0.1672905653605011,0.03165931187102081,0.8839779390231491,701667.4874538112,0.155,1.6677762425e6 +11,0.16734833938341012,0.0322241879309536,0.8690821551311707,701909.8092691946,0.0675,1.6717747275e6 +12,0.15966709598529008,0.02953760466610242,0.8630889954875882,669692.3393594861,0.0475,1.621968225e6 +13,0.16518931223642938,0.03172096610396731,0.8602357440094404,692854.1930705047,0.0825,1.6388854125e6 +14,0.16614648198024157,0.0321127018069392,0.8596179057236994,696868.8539556551,0.1125,1.6553062575e6 +15,0.17123615958600397,0.03323799940269763,0.8821777145643618,718216.5090962148,0.06,1.6804385725e6 +16,0.16795739482321723,0.032025848317023466,0.8808411941677469,704464.3729365993,0.12,1.66218328e6 +17,0.15079768307802,0.02762528654795788,0.8231567546719237,632491.3253248716,-0.0975,1.5645593e6 +18,0.16238841195672818,0.031109601330067987,0.8476481603877382,681106.3658237528,-0.0175,1.6095295225e6 +19,0.18546847230205174,0.03818958222634474,0.9007313568967873,777911.1552503848,0.395,1.767530675e6 +20,0.17982116914381607,0.03595137883047034,0.899427335589228,754224.6490245843,0.3,1.73829651e6 +21,0.15915047710019053,0.030214590156654186,0.8382994516852671,667525.4827032376,-0.0625,1.5869669975e6 +22,0.15735116041942773,0.02923269494900224,0.8469758853412027,659978.6015518474,0.02,1.6086928775e6 +23,0.16882829648557446,0.032681820199955955,0.8721360536173394,708117.1992626309,0.1525,1.6612476075e6 +24,0.17298263043679354,0.03394634966967747,0.8814788842984482,725541.7387715649,0.1675,1.6910145425e6 +25,0.15941996058937946,0.029355153687612275,0.8657670167485508,668655.7783798766,-0.01,1.6227344875e6 +26,0.14891566140047702,0.026434741240169504,0.8388912911560364,624597.5542746664,-0.2,1.54517974e6 +27,0.12740076361857292,0.022280362696043107,0.7284869996069695,534357.5324484349,-0.44,1.3919679775e6 +28,0.16744735758785112,0.032207372935432896,0.8705651845421716,702325.1217201543,0.0125,1.6506245725e6 +29,0.16643702901369126,0.03166126807549032,0.8749265683501942,698087.4965402413,0.15,1.6528118675e6 +30,0.18373489196997583,0.03780411512827739,0.8929850735209355,770639.9923292375,0.29,1.7555778675e6 +31,0.18116302210078458,0.036014003894753975,0.9113132955891676,759852.7882494092,0.29,1.725184075e6 +32,0.15259545237345434,0.028728972811863082,0.8105187831652625,640031.716271789,-0.085,1.5710916475e6 +33,0.164029472509676,0.03178088262939256,0.8465991384052638,687989.4726652241,0.065,1.631248815e6 +34,0.17558941139063733,0.034532323759314636,0.8928342502347255,736475.3705533957,0.23,1.710850455e6 +35,0.17340359822426193,0.03425735626748967,0.8777328770596533,727307.4056464147,0.0975,1.6834950925e6 +36,0.157144994192397,0.029121589805058815,0.8479808061659707,659113.8777211475,-0.045,1.5961930175e6 +37,0.14362701978635187,0.026137742985957307,0.7892311445480217,602415.3835979748,-0.23,1.5157264625e6 +38,0.15730775019397755,0.03056838341857695,0.8095203443454726,659796.5258696008,-0.065,1.57892788e6 +39,0.14571787151650994,0.02665478703981693,0.796618560395294,611185.0513731837,-0.24,1.5175709125e6 +40,0.17429665723689142,0.03541280288575471,0.8578627572056691,731053.1666353226,0.0025,1.6723198725e6 +41,0.15643921389172363,0.03001036763156271,0.8154924305999272,656153.620582912,-0.01,1.596792715e6 +42,0.14798267678136257,0.026975020419935845,0.8118204281763174,620684.3331547761,-0.1925,1.52838726e6 +43,0.1651998123479109,0.030885004637174605,0.883631986473342,692898.2337300921,0.1375,1.6462124975e6 +44,0.1691103446190584,0.032137049310541566,0.8898859500394738,709300.1948770952,0.15,1.673630295e6 +45,0.16753320500787425,0.031808737194384575,0.8823794106848528,702685.191897347,0.1025,1.656888885e6 +46,0.16945927778010855,0.03348707764284265,0.8575381564205765,710763.7266302204,0.0775,1.649456025e6 +47,0.15556942550289649,0.029099727155039553,0.8316863598877398,652505.4636645007,-0.105,1.569765545e6 +48,0.14293621061106593,0.024395562869514956,0.8374785371064984,599517.9199108363,-0.24,1.537347685e6 +49,0.15697489707861792,0.028459403196083734,0.8658339791269244,658400.4387164355,-0.0025,1.62152797e6 +50,0.16323868640727937,0.031400632057385296,0.8486093111526035,684672.6753527975,-0.025,1.6224335825e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/manifest.json" new file mode 100644 index 000000000..a18f250d3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0023", + "params": { + "L": 2048, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 2000, + "measurement_sweeps": 20000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8544848226953106, + "se_Qm": 0.004946770861129553, + "Rp": 0.03989999999999999, + "se_Rp": 0.02332216253493922, + "chi": 684473.1516754123, + "se_chi": 7025.356491550796, + "tau_m2": 7.887506074856454, + "runtime_s": 7972.36794090271 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/metadata.txt" new file mode 100644 index 000000000..b4695241e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:07:01.518 +hostname=a02r05n06 +julia=1.12.6 +slurm_job=23025369 +slurm_array_task=23 +cell=cell-0023 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=2048 +seed=95003 +thermalization_sweeps=2000 +measurement_sweeps=20000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/summary.csv" new file mode 100644 index 000000000..91fdb77a4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0023/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +2048,nearest_neighbor,0.44068679351,95003,2000,20000,0.38991020889282224,0.16319111625562008,0.031166545873514508,0.8544848226953106,0.004946770861129553,684473.1516754123,7025.356491550796,0.2233,0.4865,0.03989999999999999,0.02332216253493922,1.63119808175e6,7.887506074856454,50,7972.36794090271,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/blocks.csv" new file mode 100644 index 000000000..81fe2ea29 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.13882654305845052,0.023421673223056386,0.8228621787186232,582280.7248562312,-0.25,1.5195741775e6 +2,0.14838195791744113,0.02687629902716257,0.8192052563919441,622359.039620955,-0.0775,1.5540127275e6 +3,0.15002208337981757,0.027100972685467142,0.8304729783256112,629238.2244083023,-0.2075,1.557197205e6 +4,0.16124908234185512,0.030915660730576194,0.8410386820675195,676327.6710627723,-0.01,1.6257378625e6 +5,0.15666911488284427,0.029736940889060842,0.82541145203013,657117.8952295732,-0.105,1.5923759125e6 +6,0.1721062540307787,0.03287858168739923,0.9009075561145345,721865.9497063112,0.135,1.7093298075e6 +7,0.17482338215203072,0.03389548477886168,0.9016898606546906,733262.4110537911,0.225,1.7039860925e6 +8,0.15685577128870193,0.028472571890575997,0.8641204974783835,657900.7889392877,0.05,1.6094823225e6 +9,0.1810050658415571,0.03586679158620087,0.9134587291301338,759190.2716795063,0.31,1.747822285e6 +10,0.1485983813661727,0.026696038489580808,0.8271444077092068,623266.7853576636,-0.19,1.527551745e6 +11,0.17073941899421016,0.03316043761056584,0.8791183500302128,716133.0280450917,0.1425,1.6834665025e6 +12,0.1572539477614754,0.028809078019473605,0.8583684653099034,659570.8621117473,0.06,1.598862995e6 +13,0.14795833699964192,0.027176176727446214,0.8055463322620511,620582.2447109461,-0.1275,1.547572535e6 +14,0.15712258937704518,0.030869536319546028,0.7997369263015418,659019.9051144981,-0.0975,1.5719646325e6 +15,0.14530569534390167,0.025015320200082423,0.8440325740585644,609456.2592037081,-0.235,1.525288205e6 +16,0.16263490304735,0.030533483426766074,0.8662657751664982,682140.2243911123,0.0225,1.6359092975e6 +17,0.15805381093050244,0.03028081880743412,0.8249779277277016,662925.7314010501,-0.045,1.5968789975e6 +18,0.1344522865228771,0.023126834242338613,0.7816641552320752,563933.7631720495,-0.3075,1.469964185e6 +19,0.143499962553837,0.024680278108576748,0.8343600976601852,601882.4669394088,-0.115,1.5380404875e6 +20,0.15719467039563312,0.029755432003705416,0.8304421323042664,659322.2348190856,-0.03,1.6007941625e6 +21,0.18064939348312578,0.03582880012350713,0.9108371827503662,757698.4736838484,0.25,1.7392990125e6 +22,0.17514652989503873,0.03479891122857543,0.8815306528637477,734617.7909248805,0.0975,1.6885278525e6 +23,0.1562756824472075,0.028416542259583108,0.8594321118046797,655467.7199910522,-0.0625,1.588114555e6 +24,0.15990983395443037,0.029811000448754933,0.857775807936747,670710.4561944031,-0.0075,1.613350195e6 +25,0.16952883497638538,0.03329140483229829,0.863286666129746,711055.4706567931,0.05,1.6415484375e6 +26,0.1812466948927829,0.035526198009023374,0.9246799897138951,760203.7373755788,0.2925,1.738689345e6 +27,0.16742518824407226,0.03150927945511352,0.8896170951320805,702232.1367528653,0.16,1.6723606425e6 +28,0.1758781595374478,0.034893775887265145,0.8864941158050283,737686.4680605554,0.2775,1.7191678975e6 +29,0.18595868807444105,0.03761950991164766,0.9192207381643877,779967.2692253804,0.33,1.76261264e6 +30,0.16777460000462496,0.03166397103285872,0.8889698761251862,703697.6758977985,0.1875,1.6756795975e6 +31,0.15977817941674402,0.03049254615077615,0.8372231853481816,670158.2570403671,0.085,1.6162867925e6 +32,0.1784398580466683,0.03572634088079246,0.8912410886398298,748431.010364573,0.19,1.7134757875e6 +33,0.1631163328685335,0.03042897833950969,0.8743947217554511,684159.4874158215,-0.06,1.6412015525e6 +34,0.15206543644235182,0.02727720278366224,0.8477371064694752,637808.668331902,-0.13,1.5840660425e6 +35,0.18141045371715223,0.03658940742897347,0.8994338807412143,760890.5916676664,0.28,1.73347399e6 +36,0.1654308488978006,0.031030945779774433,0.8819378552388379,693867.2712554407,0.045,1.6624064775e6 +37,0.1606347033430154,0.03061642292595958,0.8427995648119899,673750.7787704229,0.04,1.6181114875e6 +38,0.16742770270120616,0.030895756427028655,0.9073102222957746,702242.6831504798,0.2225,1.682435295e6 +39,0.16042533446975427,0.029651138894986176,0.8679696260869215,672872.6220678282,0.0375,1.62230856e6 +40,0.16874155810399144,0.032430578575418915,0.8779896838764591,707753.3921218037,0.0975,1.672896555e6 +41,0.15777010452853404,0.029001968335571764,0.8582660871474203,661735.7805044485,-0.06,1.6158919475e6 +42,0.159008011657599,0.029959476503008634,0.8439248852951113,666927.9393275141,-0.07,1.59660519e6 +43,0.1481207677022388,0.025450006575664166,0.8620729334380548,621263.528456571,-0.225,1.552459975e6 +44,0.16355779911640694,0.03105873299960644,0.8613085940157927,686011.1310651421,0.1425,1.6320241675e6 +45,0.14776230356297504,0.026390557311629793,0.8273299459505961,619760.0208834005,-0.22,1.5268786825e6 +46,0.18602724579712115,0.037254105290980714,0.9289214143935095,780254.8211558484,0.34,1.7710401025e6 +47,0.16979008842934662,0.03288533171585739,0.8766423394459508,712151.2470595622,0.2575,1.6814709075e6 +48,0.1824152427703723,0.03614400409860645,0.9206318343754506,765104.9824127436,0.26,1.7470842475e6 +49,0.16676896036231825,0.031915038288538075,0.8714351488124894,699479.7175235129,0.115,1.6527221175e6 +50,0.16997070847659926,0.032642120133085525,0.8850540841786381,712908.8224462342,0.1475,1.6553061575e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/manifest.json" new file mode 100644 index 000000000..6e6e75694 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0024", + "params": { + "L": 2048, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 2000, + "measurement_sweeps": 20000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8626233080356505, + "se_Qm": 0.004900403189500997, + "Rp": 0.044349999999999945, + "se_Rp": 0.024522148464319403, + "chi": 683772.9286721506, + "se_chi": 7405.683363124751, + "tau_m2": 6.687809194472599, + "runtime_s": 7960.696906089783 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/metadata.txt" new file mode 100644 index 000000000..804211747 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:06:35.288 +hostname=a02r05n07 +julia=1.12.6 +slurm_job=23025370 +slurm_array_task=24 +cell=cell-0024 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=2048 +seed=106004 +thermalization_sweeps=2000 +measurement_sweeps=20000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/summary.csv" new file mode 100644 index 000000000..9626b464b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0024/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +2048,nearest_neighbor,0.44068679351,106004,2000,20000,0.39074193987846373,0.1630241700821282,0.0308093692616387,0.8626233080356505,0.004900403189500997,683772.9286721506,7405.683363124751,0.2156,0.47555,0.044349999999999945,0.024522148464319403,1.63466616695e6,6.687809194472599,50,7960.696906089783,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/blocks.csv" new file mode 100644 index 000000000..995dd0019 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.13219089526894875,0.02025305721212086,0.8628046921009161,2.2177952031605314e6,0.06,5.96987176e6 +2,0.17618791295144548,0.03274225683313598,0.9480770011788152,2.9559426721755983e6,0.52,6.94285493e6 +3,0.15283917972726827,0.02565690308094675,0.9104689987721707,2.564215931547201e6,0.23,6.46479858e6 +4,0.10518225117328413,0.015067336227792454,0.7342575883767039,1.7646653473004412e6,-0.37,5.13759834e6 +5,0.12356575425497227,0.018710571902800784,0.8160357526171959,2.0730893493385888e6,0.01,5.78339144e6 +6,0.1364809037962594,0.022028415496855528,0.8455913274244692,2.289769602865064e6,0.05,5.94800395e6 +7,0.1185942187440186,0.01744409849615666,0.8062662981754483,1.9896808242196487e6,-0.25,5.52594067e6 +8,0.1510135083300385,0.025308169876590684,0.9010955675321523,2.533586248170855e6,0.27,6.39435017e6 +9,0.13842729867854103,0.02123924470133526,0.9022033169679208,2.3224246902263975e6,-0.02,6.07907921e6 +10,0.11467518311294242,0.01709527555366122,0.7692416294027218,1.9239303169253874e6,-0.24,5.4546003e6 +11,0.10537296169459964,0.014140528113939699,0.7852225155116942,1.7678649389100242e6,-0.43,5.11631273e6 +12,0.14322785696893675,0.022621867354309492,0.9068313720797333,2.402964693584957e6,0.13,6.18225441e6 +13,0.08059511597603035,0.010140584437461473,0.6405521061679401,1.352161669274912e6,-1.04,4.54655556e6 +14,0.13756455466630513,0.02158374656991713,0.8767711684918801,2.307950247580409e6,0.13,6.1014086e6 +15,0.168747229489219,0.030320124426238403,0.9391659169988408,2.831108718542197e6,0.4,6.64765178e6 +16,0.12743333232365628,0.019511321503541672,0.8322990415674146,2.1379765419937633e6,-0.13,5.69979885e6 +17,0.09497089662208666,0.0111292604823465,0.810428619180041,1.5933472463424182e6,-0.45,4.99244763e6 +18,0.13673371574419163,0.02130582288847052,0.8775117074370617,2.2940110835229037e6,0.01,5.94223155e6 +19,0.12348985294773542,0.018914338994368982,0.8062530647036273,2.0718159367123938e6,-0.17,5.58566572e6 +20,0.13196124748368107,0.021828577177112063,0.7977510717330766,2.213942352663174e6,-0.22,5.74727931e6 +21,0.11621590356064161,0.018042223951520685,0.7485848904606901,1.9497793166720534e6,-0.47,5.33102792e6 +22,0.14527129574603406,0.022933619667557213,0.9202101401195676,2.4372479073310946e6,0.12,6.32727359e6 +23,0.1571969969950119,0.026057196508639774,0.9483328667401499,2.6373279731366658e6,0.37,6.5302139e6 +24,0.1460994975334917,0.024144604916353018,0.8840510438454863,2.4511428276108573e6,0.14,6.28529544e6 +25,0.15972161355620243,0.027771095227948118,0.9186167714164639,2.6796840105009363e6,0.39,6.5760606e6 +26,0.1018893981408209,0.014208453888379824,0.7306529996194051,1.7094204407185507e6,-0.42,5.14579465e6 +27,0.12912013160382557,0.019542289532736318,0.8531246227552344,2.166276337865808e6,-0.08,5.77430355e6 +28,0.12774372981791274,0.020442491902675452,0.7982618061184692,2.1431841478007627e6,0.06,5.80887382e6 +29,0.10823061464563523,0.014991045649669368,0.7813908529342878,1.8158083997225857e6,-0.44,5.11985761e6 +30,0.13762223507099974,0.02373916130794102,0.7978327178560392,2.308917964188938e6,-0.01,5.90912985e6 +31,0.12748645561480929,0.019301029690602923,0.8420688753792096,2.138867802924068e6,-0.31,5.68863458e6 +32,0.11430806683199961,0.016264214980668643,0.8033793305363525,1.9177711277828931e6,-0.14,5.49443786e6 +33,0.1592621349983058,0.02777833688537251,0.9131010164101997,2.671975239487736e6,0.4,6.59400095e6 +34,0.16064634687520582,0.02780562936901549,0.928130358851241,2.695198461136253e6,0.44,6.61437562e6 +35,0.13202057203962028,0.01985498119643285,0.8778367135799627,2.21493765355227e6,0.15,5.94702432e6 +36,0.15047205783589093,0.026185814431579513,0.8646605301709519,2.5245022162772347e6,0.14,6.25084575e6 +37,0.1473705377102,0.024952445668106404,0.8703786263625848,2.472467343200171e6,0.05,6.08717833e6 +38,0.13299289084471483,0.020471123722908664,0.8640028390547551,2.231250456166203e6,0.04,6.00908162e6 +39,0.10861960865082793,0.01598232608549442,0.7382041462767484,1.8223346361704087e6,-0.37,5.18202414e6 +40,0.1523842858293672,0.02564364461167703,0.9055253619117944,2.5565840783650326e6,0.26,6.33031539e6 +41,0.12427082147577025,0.017337093985736806,0.8907627243047699,2.0849184143964362e6,-0.2,5.76226874e6 +42,0.11133717988115123,0.015524518812226445,0.7984767691559814,1.8679279156969285e6,-0.36,5.38670244e6 +43,0.13583861352814566,0.020725118580535055,0.8903268202566078,2.278993760302222e6,0.02,6.01931914e6 +44,0.11153869983111463,0.01636414993699675,0.7602522347884768,1.8713088594257736e6,-0.42,5.29954974e6 +45,0.10039505257814837,0.012383313384242174,0.8139313178486595,1.6843494824349522e6,-0.66,5.05848659e6 +46,0.13930894985456077,0.021747996684228825,0.8923572957712491,2.3372163424431346e6,0.11,6.06127407e6 +47,0.1109889089049605,0.01663622720601217,0.7404646346415504,1.862084898302846e6,-0.29,5.36352295e6 +48,0.1441139871709457,0.022762427440656655,0.9124176827121545,2.417831491388185e6,0.07,6.18353219e6 +49,0.12723386580676319,0.02005466739833532,0.8072164093570148,2.13463004915508e6,-0.1,5.74707067e6 +50,0.11354438743027473,0.01599022011681693,0.8062633173734397,1.904958713505404e6,-0.42,5.37769408e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/manifest.json" new file mode 100644 index 000000000..2efbeaa96 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0025", + "params": { + "L": 4096, + "seed": 73001 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 1000, + "measurement_sweeps": 5000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8345441902992354, + "se_Qm": 0.00961847328718466, + "Rp": -0.06879999999999997, + "se_Rp": 0.044692728715082945, + "chi": 2191942.837654367, + "se_chi": 48237.59357236249, + "tau_m2": 7.4904373750300035, + "runtime_s": 8155.4640901088715 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/metadata.txt" new file mode 100644 index 000000000..566de3941 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:23:39.087 +hostname=a02r05n07 +julia=1.12.6 +slurm_job=23025371 +slurm_array_task=25 +cell=cell-0025 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=4096 +seed=73001 +thermalization_sweeps=1000 +measurement_sweeps=5000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/summary.csv" new file mode 100644 index 000000000..b9c381ba6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0025/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +4096,nearest_neighbor,0.44068679351,73001,1000,5000,0.3468954757928848,0.13064997420635027,0.02045357928140337,0.8345441902992354,0.00961847328718466,2.191942837654367e6,48237.59357236249,0.2588,0.4488,-0.06879999999999997,0.044692728715082945,5.8305453118e6,7.4904373750300035,50,8155.4640901088715,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/blocks.csv" new file mode 100644 index 000000000..e21654539 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.12528300871210932,0.01796800927028694,0.8735431975713693,2.10190009829294e6,0.04,5.79523857e6 +2,0.11182799189862422,0.016384587924958074,0.7632477441211426,1.8761623749294686e6,-0.29,5.43333371e6 +3,0.13448983096809883,0.022235051146007483,0.813468541855618,2.256364943955283e6,-0.17,5.79056303e6 +4,0.12153201437488477,0.01917558844410783,0.7702517480007584,2.0389688560825468e6,-0.23,5.44450531e6 +5,0.12516885141655565,0.01830935795461578,0.8556958361825069,2.09998485668746e6,-0.14,5.65440115e6 +6,0.14126153702413263,0.021359227291143843,0.9342483026384688,2.3699753191458704e6,0.23,6.13506575e6 +7,0.12410096482850932,0.017940322105807555,0.8584600310147918,2.082068692736304e6,-0.03,5.79126032e6 +8,0.13665691764325488,0.02260903607097227,0.8260021825402948,2.292722625195098e6,0.07,5.96907421e6 +9,0.1380917263915589,0.022229377901659908,0.8578433900472411,2.316794721484084e6,0.13,6.03909812e6 +10,0.1199514426065663,0.01820724022033468,0.790254229047124,2.0124512621219659e6,-0.31,5.43767659e6 +11,0.14372610493653695,0.02282984099074242,0.9048329880442442,2.4113239073589467e6,0.21,6.20826145e6 +12,0.14763005606282462,0.024501167352878,0.8895344919372856,2.476821338658118e6,0.09,6.24095459e6 +13,0.09542698047268047,0.013103667237978922,0.694943517471211,1.6009990636179424e6,-0.66,4.78398492e6 +14,0.1404901309962426,0.022467762699755985,0.8784798544964056,2.3570332735922574e6,-0.07,5.94163531e6 +15,0.11476787197749445,0.016516135358888122,0.7975028147946398,1.9254853780267716e6,-0.28,5.46746586e6 +16,0.14711005876863056,0.023696239346076228,0.9132828663166526,2.468097231734009e6,0.22,6.22881336e6 +17,0.1549128531077403,0.02588782149329689,0.9269992866798044,2.5990063977648304e6,0.34,6.4693956e6 +18,0.11657509092373373,0.016292802764836835,0.8340953990559697,1.9558054806471204e6,-0.28,5.48212958e6 +19,0.1664482038938428,0.03043979287109051,0.910157460558756,2.7925374695390416e6,0.44,6.73883401e6 +20,0.1482459648466788,0.02422091285118612,0.9073508594968788,2.487154573361137e6,0.41,6.37997128e6 +21,0.06938912587355717,0.007451062340851622,0.6461965514767181,1.1641563528318573e6,-1.04,4.05663972e6 +22,0.12795268574102978,0.019776240604956842,0.8278565231573473,2.1466898464573766e6,-0.07,5.80816816e6 +23,0.09319630629387206,0.01230248876389711,0.7059995480190837,1.563574561094451e6,-0.63,4.80781698e6 +24,0.11581395503127269,0.016652226738625674,0.8054701866912384,1.9430357393739487e6,-0.24,5.49159611e6 +25,0.0975400022982896,0.013393942805378738,0.7103249720112056,1.636449687198901e6,-0.72,4.90299862e6 +26,0.10690188063843138,0.014348312944547052,0.7964707856735551,1.7935159422771812e6,-0.39,5.20501718e6 +27,0.13070245389137425,0.02089862038214512,0.8174286694935089,2.1928233006656263e6,-0.03,5.92252026e6 +28,0.1558007747848089,0.026213276391509513,0.926014782013631,2.613903251532092e6,0.35,6.49855348e6 +29,0.15674627453247822,0.027299867221738928,0.8999822006550414,2.629766105026686e6,0.29,6.45039864e6 +30,0.12246315059952523,0.017520396102518643,0.855986540886828,2.0545907296487642e6,-0.26,5.67093189e6 +31,0.1257308175978315,0.01895083550564774,0.8341710574770169,2.10941308469542e6,-0.07,5.81042446e6 +32,0.12297103692193176,0.018839439333965105,0.8026712288827137,2.0631116481832243e6,-0.12,5.68511835e6 +33,0.13298342691969622,0.02236774754671475,0.79062908763487,2.231091677851958e6,-0.09,5.8145719e6 +34,0.14093507636836122,0.02290099421339208,0.8673289712173489,2.364498218208492e6,0.0,5.98388145e6 +35,0.1608918916653127,0.027055194926877663,0.9567922490895225,2.699318019117551e6,0.44,6.58291248e6 +36,0.14275695065161004,0.02397646929011852,0.8499811508004348,2.3950641965834023e6,0.19,6.24811789e6 +37,0.1736534320330901,0.031407351115737094,0.9601419217350425,2.913421138360472e6,0.56,7.02472684e6 +38,0.11669912366754673,0.01724505151528459,0.7897155571094053,1.9578864047811436e6,-0.17,5.47708689e6 +39,0.11232711921905675,0.014990379625514534,0.8416986111930508,1.8845363417958664e6,-0.2,5.63813961e6 +40,0.11260055091554619,0.018528685060031393,0.6842840722590936,1.8891237644291162e6,-0.26,5.27237534e6 +41,0.17271940230507454,0.031745020477546085,0.9397376811813046,2.8977507198631335e6,0.68,6.91726711e6 +42,0.13929222134387673,0.02215990652093882,0.8755597821939528,2.33693568460603e6,0.06,6.16049384e6 +43,0.10857147560558815,0.016226060705126236,0.7264711706305129,1.8215270976736832e6,-0.5,5.19778961e6 +44,0.10845827583835814,0.014763435595756309,0.7967791454457027,1.8196279207277156e6,-0.31,5.30967445e6 +45,0.1537555919179347,0.027104628208289617,0.8722046236666041,2.5795907768150447e6,0.1,6.37361527e6 +46,0.15883328723509435,0.02667580055695235,0.945726561422014,2.6647803679332207e6,0.53,6.65586583e6 +47,0.16398004399353538,0.02887173228773352,0.9313419285044454,2.7511286177690458e6,0.4,6.60204835e6 +48,0.1306938425679205,0.020107733348100246,0.8494682214781891,2.192678826631997e6,-0.06,5.76596217e6 +49,0.14191147455946748,0.022439152102227328,0.8974878604991223,2.380879461562691e6,0.2,6.18075602e6 +50,0.12730952473180907,0.019810580968935215,0.8181342643536942,2.1358993952829028e6,-0.22,5.80514791e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/manifest.json" new file mode 100644 index 000000000..9f4ee63a6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0026", + "params": { + "L": 4096, + "seed": 84002 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 1000, + "measurement_sweeps": 5000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8332191607838303, + "se_Qm": 0.010608882723622662, + "Rp": -0.03720000000000001, + "se_Rp": 0.04954325259357747, + "chi": 2206968.5348782036, + "se_chi": 51757.02102905111, + "tau_m2": 9.78752352518967, + "runtime_s": 8179.233300924301 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/metadata.txt" new file mode 100644 index 000000000..3922fe866 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:24:17.067 +hostname=a02r05n07 +julia=1.12.6 +slurm_job=23025372 +slurm_array_task=26 +cell=cell-0026 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=4096 +seed=84002 +thermalization_sweeps=1000 +measurement_sweeps=5000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/summary.csv" new file mode 100644 index 000000000..afbbf1f2f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0026/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +4096,nearest_neighbor,0.44068679351,84002,1000,5000,0.34786389751434327,0.13154557555187962,0.020767931489953657,0.8332191607838303,0.010608882723622662,2.2069685348782036e6,51757.02102905111,0.2472,0.4572,-0.03720000000000001,0.04954325259357747,5.8550455906e6,9.78752352518967,50,8179.233300924301,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/blocks.csv" new file mode 100644 index 000000000..dcced7c55 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.1344990755571993,0.02157996023960879,0.838277787580815,2.256520042423453e6,-0.01,5.99333933e6 +2,0.15877167330395095,0.027177877418992292,0.927535430935475,2.6637466577018187e6,0.39,6.50995367e6 +3,0.14237250170349625,0.02182596418065693,0.9287071615042826,2.3886142135399245e6,0.22,6.23985135e6 +4,0.16050096606669925,0.028243931466843133,0.9120741614383701,2.6927593759096838e6,0.48,6.59105527e6 +5,0.16996562534272627,0.030433781263457197,0.949218683937612,2.8515500089499927e6,0.5,6.73353069e6 +6,0.12097576919460508,0.01705168496274537,0.8582809713058445,2.0296366105440354e6,-0.07,5.69955976e6 +7,0.08503644925250427,0.010155134310495703,0.7120730736175518,1.4266748769823026e6,-0.8,4.51384508e6 +8,0.1520368508619778,0.025971023509704802,0.890038238631205,2.5507550868711877e6,0.36,6.43943685e6 +9,0.11343468501304983,0.015788781463058666,0.8149728206775181,1.9031182123558999e6,-0.43,5.39734323e6 +10,0.15809149983548365,0.027116516779963865,0.9216863110788536,2.6523352405038737e6,0.29,6.50970792e6 +11,0.12853720293779916,0.020043574841911545,0.8242947013885716,2.156496417723291e6,-0.18,5.63083504e6 +12,0.14056379995613852,0.023458618967975787,0.842256821899104,2.3582692336449265e6,0.06,6.05731721e6 +13,0.1584275685298607,0.02665014438678664,0.9418070726374054,2.6579735375802754e6,0.3,6.67152131e6 +14,0.13574481203199354,0.02074933905216309,0.8880598050510099,2.2774200323401545e6,0.02,6.03795467e6 +15,0.11010392460295564,0.015617667833056199,0.7762282014549051,1.847237325511501e6,-0.59,5.24999732e6 +16,0.12793903164766773,0.019969843180704567,0.8196557013907118,2.1464607687837575e6,0.01,5.79645362e6 +17,0.15868494738168878,0.027329112476555912,0.9213951805837313,2.662291638171227e6,0.11,6.41665431e6 +18,0.141454507312032,0.023636288455101923,0.8465532850852757,2.37321282334754e6,0.24,6.10262474e6 +19,0.10074807366058082,0.014274173234840416,0.7110866723645517,1.690272193387475e6,-0.41,4.87103069e6 +20,0.14630929536386247,0.025435413118350573,0.8415986723025203,2.4546626511273193e6,0.17,6.00539564e6 +21,0.1344730452237063,0.02162508634735997,0.8362047485625215,2.2560833258958887e6,-0.1,5.87308949e6 +22,0.14574586802171352,0.02447098319929659,0.8680426884528826,2.4452099089077804e6,0.11,6.0459298e6 +23,0.14455731847749193,0.022674501537916038,0.9215998989199217,2.425269356477673e6,0.12,6.22469125e6 +24,0.17339638932116486,0.03191250953581412,0.9421480249265501,2.909108677261276e6,0.67,6.89746111e6 +25,0.16001043182127772,0.026835857172836812,0.9540719391496614,2.6845295769188497e6,0.27,6.5358178e6 +26,0.1477917130227321,0.024456785733805386,0.8931014351571951,2.4795334923923896e6,0.22,6.22204078e6 +27,0.15868195247840874,0.02670797231328581,0.9427882336778619,2.662241392031999e6,0.51,6.551511e6 +28,0.13003704397985602,0.01958887911309431,0.8632261554830698,2.181659574851544e6,-0.1,5.94543584e6 +29,0.1652796850399352,0.028627842080450213,0.9542240106722908,2.7729329763269615e6,0.62,6.73083852e6 +30,0.1518956729441021,0.02451778860841503,0.941043086211402,2.548386514448557e6,0.44,6.4157136e6 +31,0.1411168825487283,0.02181513866646607,0.9128511555547922,2.3675484197666454e6,0.16,6.11084573e6 +32,0.1277438832793406,0.01942658795636375,0.8400085363389916,2.1431867224562857e6,-0.19,5.66699762e6 +33,0.1489500581108706,0.02470510993053426,0.8980376883007029,2.498967298138628e6,0.31,6.30745331e6 +34,0.14231732453805207,0.022890620042628856,0.8848262225291454,2.387688494317e6,0.08,6.14124289e6 +35,0.16528111024107417,0.02975760535209658,0.918012221725947,2.7729568872343134e6,0.44,6.70179947e6 +36,0.15751387787387927,0.02681435194567226,0.9252739642239125,2.6426443520876933e6,0.22,6.42557632e6 +37,0.12214478415922286,0.01818314121635485,0.8205044507867493,2.0492494271126604e6,-0.19,5.65268116e6 +38,0.13983316001242257,0.022155010196842965,0.8825684332948796,2.346011129490976e6,-0.03,6.06854425e6 +39,0.12749285726786014,0.019609408525071478,0.8289096855492081,2.1389752048400594e6,-0.08,5.75536443e6 +40,0.12089600268610141,0.016600109181821504,0.8804667068987354,2.0282983506013036e6,-0.31,5.7015586e6 +41,0.10556179501560123,0.01457795504245462,0.7643933963620948,1.7710330363244652e6,-0.54,5.13427719e6 +42,0.1596177382370648,0.026482366047081814,0.9620674495103744,2.6779412718346952e6,0.24,6.49061908e6 +43,0.12489117013775754,0.018206144927259887,0.8567329569602545,2.095326137893908e6,0.0,5.74106075e6 +44,0.14360457178306305,0.0231548876407315,0.8906228938343237,2.409284919391954e6,0.21,6.27998112e6 +45,0.147204048723883,0.0242273081451309,0.8944052649554578,2.4696741215151097e6,0.25,6.17686918e6 +46,0.12970593110681888,0.01956002561164667,0.8601025836218494,2.1761044226602195e6,-0.11,5.84695519e6 +47,0.1771528009417169,0.032384690462324416,0.9690725597024294,2.972130806404188e6,0.4,6.84039235e6 +48,0.13331614587420135,0.022023668465103417,0.8070042817304948,2.236673775618985e6,0.02,5.8760715e6 +49,0.13903480278528704,0.022598077210321827,0.8554124408741396,2.3326169178461623e6,0.06,5.98421969e6 +50,0.138892144532024,0.021818053019563473,0.8841773276197957,2.3302235095169856e6,0.25,6.02551436e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/manifest.json" new file mode 100644 index 000000000..861a56045 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0027", + "params": { + "L": 4096, + "seed": 95003 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 1000, + "measurement_sweeps": 5000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8708619869655749, + "se_Qm": 0.008490558805442415, + "Rp": 0.0922, + "se_Rp": 0.04396500463610872, + "chi": 2365029.938959296, + "se_chi": 45463.39372447358, + "tau_m2": 7.3303094580522705, + "runtime_s": 8252.176577091217 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/metadata.txt" new file mode 100644 index 000000000..38161e528 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:25:41.438 +hostname=a02r05n07 +julia=1.12.6 +slurm_job=23025373 +slurm_array_task=27 +cell=cell-0027 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=4096 +seed=95003 +thermalization_sweeps=1000 +measurement_sweeps=5000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/summary.csv" new file mode 100644 index 000000000..39b3ac1a6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0027/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +4096,nearest_neighbor,0.44068679351,95003,1000,5000,0.36405979542732236,0.1409667693948326,0.02281834592741437,0.8708619869655749,0.008490558805442415,2.365029938959296e6,45463.39372447358,0.209,0.5102,0.0922,0.04396500463610872,6.0767592216e6,7.3303094580522705,50,8252.176577091217,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/blocks.csv" new file mode 100644 index 000000000..c896d983c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/blocks.csv" @@ -0,0 +1,51 @@ +block,m2,m4,Qm,chi,Rp,C1 +1,0.15454832652993333,0.02560168820705221,0.9329535240032925,2.592890656631222e6,0.6,6.57450312e6 +2,0.11968527627458528,0.016502080194169266,0.8680460395523439,2.0079857320783925e6,-0.29,5.73905887e6 +3,0.1321178151588073,0.019969911032345754,0.8740708485913778,2.2165691223673844e6,-0.06,5.95005052e6 +4,0.14390540386963835,0.02306501387590555,0.8978431738346692,2.4143320442881584e6,0.11,6.12508292e6 +5,0.11840346017588005,0.016759997157912775,0.8364786252366603,1.9864804265181376e6,-0.26,5.45366311e6 +6,0.10145379503908288,0.0130318484127652,0.7898244517446943,1.7021122333904218e6,-0.5,5.19313085e6 +7,0.16391560238092737,0.02848544396452468,0.9432299786994252,2.7500474669149327e6,0.43,6.59072262e6 +8,0.15574079207845742,0.026983362064571893,0.8988944468514335,2.612896908711369e6,0.46,6.53621492e6 +9,0.11875151440601157,0.01788187433008311,0.7886154389306478,1.9923198075167679e6,-0.33,5.34464677e6 +10,0.11647904764662044,0.016666808432012858,0.8140351883210034,1.9541941418416428e6,-0.28,5.56829557e6 +11,0.14287078493697522,0.023082128739403004,0.8843231670249909,2.3969740189771797e6,0.23,6.04406976e6 +12,0.131554752752555,0.019710554413051497,0.878039887113786,2.2071225027562096e6,-0.05,5.98396083e6 +13,0.1661247017525672,0.029453730369201167,0.9369752553054246,2.7871100042383983e6,0.52,6.62088181e6 +14,0.136798792625317,0.021749869882540324,0.8604147870680848,2.2951028924141503e6,0.11,5.99734637e6 +15,0.16611921635916402,0.029507088668192186,0.9352191384956938,2.7870179746084283e6,0.48,6.73102843e6 +16,0.1516425101679428,0.024749846390453144,0.9291148933718135,2.5441391478697727e6,0.39,6.44231767e6 +17,0.1107535197056825,0.015516414236878278,0.7905397432638306,1.8581357228624916e6,-0.62,5.13633361e6 +18,0.12461026807289016,0.017501147550679858,0.8872400432161578,2.090613383276782e6,0.07,5.94353284e6 +19,0.10621854558475534,0.013531412633304934,0.8337916913694119,1.7820514824812866e6,-0.3,5.28359684e6 +20,0.10923493659459879,0.01595980100959903,0.7476453726239661,1.8326581259938884e6,-0.52,5.14711072e6 +21,0.1303080830566647,0.020066796951706097,0.8461837009049394,2.186206855987604e6,0.01,5.82501211e6 +22,0.16926400068988173,0.03013269897755046,0.9508043720507547,2.839778700598295e6,0.47,6.79591752e6 +23,0.12273080199150996,0.018632629096197294,0.8084124725347203,2.0590811748647927e6,-0.21,5.55249265e6 +24,0.13620550957346877,0.022013698729277057,0.8427452863018968,2.2851492545041535e6,0.13,5.95405598e6 +25,0.1687175097606891,0.03001243374511242,0.9484601729269589,2.8306101042371895e6,0.52,6.74931995e6 +26,0.12048716591008116,0.018028085160292407,0.8052523060528942,2.0214392077012681e6,-0.28,5.50693748e6 +27,0.1253749101582534,0.01825854078188217,0.8609049477156376,2.1034419487056113e6,0.09,5.75511899e6 +28,0.1226204509120771,0.01837082584596537,0.8184593936033251,2.0572297909693145e6,-0.03,5.71335898e6 +29,0.14369280288171168,0.022442740020155876,0.9200134021718726,2.4107651915918994e6,0.19,6.25704774e6 +30,0.12285247557960574,0.017409512420303058,0.8669243797107384,2.0611225189337707e6,-0.37,5.6520032e6 +31,0.12302442224843745,0.020362465227840153,0.7432797699204322,2.0640073053372407e6,-0.27,5.57539807e6 +32,0.15905023134826407,0.02687193529023299,0.9413901834279457,2.6684200861797975e6,0.32,6.5461438e6 +33,0.1341387471685094,0.02125383648058036,0.8465861449709415,2.2504747352154707e6,-0.14,6.00109684e6 +34,0.12217552786110986,0.017237085687676613,0.8659735107549275,2.049765220839858e6,-0.2,5.71226012e6 +35,0.14384543074520806,0.02205448650943059,0.9381994877743662,2.4133258622253966e6,0.09,6.14147713e6 +36,0.13959369289607096,0.023058998310681922,0.8450670247603788,2.341993537955048e6,0.08,6.00117894e6 +37,0.13421297386507589,0.02099396679364432,0.8580142347924836,2.251720052536733e6,-0.03,5.88508088e6 +38,0.1546232521872902,0.025347766716580965,0.9432132772996904,2.59414770056864e6,0.26,6.4482315e6 +39,0.11009038847039207,0.014968972086039183,0.8096677289461617,1.8470102268916774e6,-0.38,5.27294475e6 +40,0.14348733595144125,0.023456475934875896,0.8777369471698816,2.4073180285218954e6,0.08,6.0981552e6 +41,0.16434298296446287,0.02857656874551739,0.9451315268175571,2.757217723279114e6,0.53,6.69243817e6 +42,0.14532486483937349,0.02313382483704968,0.9129193503168055,2.4381466475809743e6,0.26,6.30807961e6 +43,0.13365858866158647,0.02031193614015073,0.8795133166893957,2.242419012230587e6,0.0,5.89942942e6 +44,0.1412041802196353,0.021791959837174094,0.9149530680341422,2.369013031647749e6,0.19,6.11513019e6 +45,0.14307432624837843,0.023139407491835108,0.8846493947025436,2.4003888755235146e6,0.22,6.11231269e6 +46,0.15048167565712475,0.025527152119591178,0.8870842545415424,2.524663576541524e6,0.0,6.31525189e6 +47,0.1300219219531992,0.020796269126882653,0.8129198600603981,2.181405869343965e6,-0.24,5.77164383e6 +48,0.16118240094492733,0.027231986765296298,0.9540165614166359,2.70419195605165e6,0.5,6.59620078e6 +49,0.14920490393482141,0.024784981246534797,0.898209409027161,2.503242901573749e6,0.27,6.31761064e6 +50,0.16167230893647214,0.027367448295232296,0.9550738963633522,2.7124112482459233e6,0.32,6.57892319e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/manifest.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/manifest.json" new file mode 100644 index 000000000..d355409b1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/manifest.json" @@ -0,0 +1,67 @@ +{ + "status": "success", + "cell_id": "cell-0028", + "params": { + "L": 4096, + "seed": 106004 + }, + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/\u859b\u5b9a\u8c14\u7684\u5957\u9a6c\u6746/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + }, + "thermalization_sweeps": 1000, + "measurement_sweeps": 5000 + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "observables": { + "Qm": 0.8684349309906858, + "se_Qm": 0.007947757979248734, + "Rp": 0.0514, + "se_Rp": 0.044705850413838344, + "chi": 2307737.2428424284, + "se_chi": 43270.97757296095, + "tau_m2": 5.880609152382167, + "runtime_s": 8312.05582499504 + }, + "evidence": [ + "summary.csv", + "blocks.csv", + "metadata.txt" + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/metadata.txt" new file mode 100644 index 000000000..bea33b9ee --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/metadata.txt" @@ -0,0 +1,16 @@ +timestamp=2026-07-30T19:26:36.491 +hostname=a02r05n08 +julia=1.12.6 +slurm_job=23025326 +slurm_array_task=28 +cell=cell-0028 +model=nearest_neighbor +hamiltonian=H=-sum_ s_i s_j +coupling_J=1 +boundary=periodic_square_torus +beta=0.44068679351 +L=4096 +seed=106004 +thermalization_sweeps=1000 +measurement_sweeps=5000 +blocks=50 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/summary.csv" new file mode 100644 index 000000000..d2c12963e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/cells/cell-0028/summary.csv" @@ -0,0 +1,2 @@ +L,model,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,se_Qm,chi,se_chi,R0,R2,Rp,se_Rp,mean_C1,tau_m2,blocks,runtime_s,sumJ +4096,nearest_neighbor,0.44068679351,106004,1000,5000,0.3597160155057907,0.13755185859456232,0.021786910138718724,0.8684349309906858,0.007947757979248734,2.3077372428424284e6,43270.97757296095,0.2158,0.483,0.0514,0.044705850413838344,6.0111160078e6,5.880609152382167,50,8312.05582499504,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/parameter-scan.plan.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/parameter-scan.plan.json" new file mode 100644 index 000000000..7dcd1e513 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/parameter-scan.plan.json" @@ -0,0 +1,219 @@ +{ + "run_id": "nn_large_20260730", + "run_dir": "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730", + "axes": { + "L": [ + 64, + 128, + 256, + 512, + 1024, + 2048, + 4096 + ], + "seed": [ + 73001, + 84002, + 95003, + 106004 + ] + }, + "cells": [ + { + "cell_id": "cell-0001", + "params": { + "L": 64, + "seed": 73001 + } + }, + { + "cell_id": "cell-0002", + "params": { + "L": 64, + "seed": 84002 + } + }, + { + "cell_id": "cell-0003", + "params": { + "L": 64, + "seed": 95003 + } + }, + { + "cell_id": "cell-0004", + "params": { + "L": 64, + "seed": 106004 + } + }, + { + "cell_id": "cell-0005", + "params": { + "L": 128, + "seed": 73001 + } + }, + { + "cell_id": "cell-0006", + "params": { + "L": 128, + "seed": 84002 + } + }, + { + "cell_id": "cell-0007", + "params": { + "L": 128, + "seed": 95003 + } + }, + { + "cell_id": "cell-0008", + "params": { + "L": 128, + "seed": 106004 + } + }, + { + "cell_id": "cell-0009", + "params": { + "L": 256, + "seed": 73001 + } + }, + { + "cell_id": "cell-0010", + "params": { + "L": 256, + "seed": 84002 + } + }, + { + "cell_id": "cell-0011", + "params": { + "L": 256, + "seed": 95003 + } + }, + { + "cell_id": "cell-0012", + "params": { + "L": 256, + "seed": 106004 + } + }, + { + "cell_id": "cell-0013", + "params": { + "L": 512, + "seed": 73001 + } + }, + { + "cell_id": "cell-0014", + "params": { + "L": 512, + "seed": 84002 + } + }, + { + "cell_id": "cell-0015", + "params": { + "L": 512, + "seed": 95003 + } + }, + { + "cell_id": "cell-0016", + "params": { + "L": 512, + "seed": 106004 + } + }, + { + "cell_id": "cell-0017", + "params": { + "L": 1024, + "seed": 73001 + } + }, + { + "cell_id": "cell-0018", + "params": { + "L": 1024, + "seed": 84002 + } + }, + { + "cell_id": "cell-0019", + "params": { + "L": 1024, + "seed": 95003 + } + }, + { + "cell_id": "cell-0020", + "params": { + "L": 1024, + "seed": 106004 + } + }, + { + "cell_id": "cell-0021", + "params": { + "L": 2048, + "seed": 73001 + } + }, + { + "cell_id": "cell-0022", + "params": { + "L": 2048, + "seed": 84002 + } + }, + { + "cell_id": "cell-0023", + "params": { + "L": 2048, + "seed": 95003 + } + }, + { + "cell_id": "cell-0024", + "params": { + "L": 2048, + "seed": 106004 + } + }, + { + "cell_id": "cell-0025", + "params": { + "L": 4096, + "seed": 73001 + } + }, + { + "cell_id": "cell-0026", + "params": { + "L": 4096, + "seed": 84002 + } + }, + { + "cell_id": "cell-0027", + "params": { + "L": 4096, + "seed": 95003 + } + }, + { + "cell_id": "cell-0028", + "params": { + "L": 4096, + "seed": 106004 + } + } + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/run_spec.json" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/run_spec.json" new file mode 100644 index 000000000..016645865 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_large_20260730/run_spec.json" @@ -0,0 +1,244 @@ +{ + "run_id": "nn_large_20260730", + "run_dir": "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/results/nn_large_20260730", + "settings": { + "model": "nearest_neighbor_square_ising", + "hamiltonian": "H=-sum_ s_i s_j", + "coupling_J": 1.0, + "geometry": "LxL square lattice", + "boundary": "periodic square torus", + "beta": 0.44068679350977147, + "algorithm": "exact nearest-neighbor Swendsen-Wang/FK", + "entrypoint": "tracks/qmc/solutions/薛定谔的套马杆/long_range_ising_fk/scripts/nn_large_point.jl", + "blocks": 50, + "thermalization_sweeps_by_size": { + "64": 5000, + "128": 5000, + "256": 5000, + "512": 4000, + "1024": 3000, + "2048": 2000, + "4096": 1000 + }, + "measurement_sweeps_by_size": { + "64": 200000, + "128": 200000, + "256": 150000, + "512": 100000, + "1024": 50000, + "2048": 20000, + "4096": 5000 + }, + "targets": { + "Qm": 0.856216, + "Rp": 0.0, + "eta": 0.25 + } + }, + "provenance": { + "run_id": "nn_large_20260730", + "purpose": "High-precision exact nearest-neighbor control for Qm, Rp, and eta", + "issue": "QuantumBFS/quantum.harness#86", + "base_commit": "26234d49bddd6005398d35361ff98b5efbba6b88", + "protocol": "strict NN J=1 at exact square-lattice beta_c; seven sizes; four independent seeds", + "source_sha256": "88521ce9d6e15e817e8e99837899317a4dc0e3e0a73951bdb45201edaff4b205" + }, + "cells": [ + { + "cell_id": "cell-0001", + "params": { + "L": 64, + "seed": 73001 + } + }, + { + "cell_id": "cell-0002", + "params": { + "L": 64, + "seed": 84002 + } + }, + { + "cell_id": "cell-0003", + "params": { + "L": 64, + "seed": 95003 + } + }, + { + "cell_id": "cell-0004", + "params": { + "L": 64, + "seed": 106004 + } + }, + { + "cell_id": "cell-0005", + "params": { + "L": 128, + "seed": 73001 + } + }, + { + "cell_id": "cell-0006", + "params": { + "L": 128, + "seed": 84002 + } + }, + { + "cell_id": "cell-0007", + "params": { + "L": 128, + "seed": 95003 + } + }, + { + "cell_id": "cell-0008", + "params": { + "L": 128, + "seed": 106004 + } + }, + { + "cell_id": "cell-0009", + "params": { + "L": 256, + "seed": 73001 + } + }, + { + "cell_id": "cell-0010", + "params": { + "L": 256, + "seed": 84002 + } + }, + { + "cell_id": "cell-0011", + "params": { + "L": 256, + "seed": 95003 + } + }, + { + "cell_id": "cell-0012", + "params": { + "L": 256, + "seed": 106004 + } + }, + { + "cell_id": "cell-0013", + "params": { + "L": 512, + "seed": 73001 + } + }, + { + "cell_id": "cell-0014", + "params": { + "L": 512, + "seed": 84002 + } + }, + { + "cell_id": "cell-0015", + "params": { + "L": 512, + "seed": 95003 + } + }, + { + "cell_id": "cell-0016", + "params": { + "L": 512, + "seed": 106004 + } + }, + { + "cell_id": "cell-0017", + "params": { + "L": 1024, + "seed": 73001 + } + }, + { + "cell_id": "cell-0018", + "params": { + "L": 1024, + "seed": 84002 + } + }, + { + "cell_id": "cell-0019", + "params": { + "L": 1024, + "seed": 95003 + } + }, + { + "cell_id": "cell-0020", + "params": { + "L": 1024, + "seed": 106004 + } + }, + { + "cell_id": "cell-0021", + "params": { + "L": 2048, + "seed": 73001 + } + }, + { + "cell_id": "cell-0022", + "params": { + "L": 2048, + "seed": 84002 + } + }, + { + "cell_id": "cell-0023", + "params": { + "L": 2048, + "seed": 95003 + } + }, + { + "cell_id": "cell-0024", + "params": { + "L": 2048, + "seed": 106004 + } + }, + { + "cell_id": "cell-0025", + "params": { + "L": 4096, + "seed": 73001 + } + }, + { + "cell_id": "cell-0026", + "params": { + "L": 4096, + "seed": 84002 + } + }, + { + "cell_id": "cell-0027", + "params": { + "L": 4096, + "seed": 95003 + } + }, + { + "cell_id": "cell-0028", + "params": { + "L": 4096, + "seed": 106004 + } + } + ] +} diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/blocks.csv" new file mode 100644 index 000000000..939712f82 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3901289073944092,0.17586499646309459,0.2172,0.4825,2465.886 +2,0.3984658349752426,0.18333743236145775,0.209,0.5135,2495.1034 +3,0.38369482526779175,0.1728324413244287,0.2276,0.4722,2440.0732 +4,0.37528922946453097,0.16607932543242973,0.2397,0.4623,2416.227 +5,0.3859989622592926,0.1728881680028867,0.2212,0.4826,2453.2429 +6,0.3824343411207199,0.17086103265102248,0.2242,0.4772,2444.5226 +7,0.38385026664733884,0.17249149668052804,0.2227,0.4706,2449.8866 +8,0.3763645167350769,0.16822187912939177,0.245,0.4635,2415.2754 +9,0.3890822369813919,0.17590818642078015,0.2249,0.4871,2464.3927 +10,0.3784168967485428,0.1689402470533409,0.2443,0.4656,2426.9487 +11,0.3828948544502258,0.17199067631958667,0.2303,0.4664,2440.8506 +12,0.3808964243412018,0.1709862238708267,0.2384,0.4736,2430.2377 +13,0.3800974430322647,0.16995112631860676,0.2316,0.4701,2433.4711 +14,0.381350571346283,0.17137510084983726,0.2413,0.4718,2431.3916 +15,0.3875358063697815,0.174309081435587,0.2193,0.4822,2462.8363 +16,0.3882848160743713,0.17557277412371855,0.2199,0.4819,2460.5015 +17,0.38733860981464385,0.1749850489464981,0.2244,0.4814,2458.6506 +18,0.38877792129516603,0.17567423900134577,0.2297,0.4835,2461.3428 +19,0.3871158043861389,0.1744073223713307,0.2209,0.4823,2458.7229 +20,0.3827572952985763,0.1716812421708145,0.2246,0.4784,2441.9225 +21,0.3814828427314758,0.17073164119192624,0.2356,0.475,2434.7619 +22,0.39372428278923033,0.17981776071290345,0.2187,0.4975,2482.5292 +23,0.3879224851608276,0.17568717439477008,0.2156,0.4854,2460.2115 +24,0.3901161007881165,0.1776195796934338,0.2239,0.49,2461.2781 +25,0.3834189970254898,0.17316052328853768,0.2362,0.4761,2443.1925 +26,0.3977586072206497,0.18211110691175075,0.2068,0.507,2495.6393 +27,0.39006061115264895,0.17653969408375578,0.2199,0.4818,2467.9486 +28,0.3843636437892914,0.1723772163156897,0.2318,0.4746,2441.539 +29,0.3810518179178238,0.1701580119324742,0.2287,0.4769,2440.6584 +30,0.3830150884628296,0.17117536127677613,0.2333,0.4659,2441.9939 +31,0.3830102633476257,0.17278994203542103,0.2347,0.477,2437.9864 +32,0.40073244957923887,0.18433803931825296,0.2079,0.5054,2505.9068 +33,0.3790253611564636,0.1691955660597881,0.237,0.4709,2426.474 +34,0.3948184412479401,0.180206803623118,0.214,0.4943,2482.5673 +35,0.37809636850357053,0.16802672833546303,0.2368,0.4582,2424.9107 +36,0.37967815952301026,0.16964547196286187,0.2386,0.4636,2430.5539 +37,0.38741505930423736,0.17449806285698563,0.2201,0.4895,2458.8819 +38,0.3860308827638626,0.17334501654260798,0.2254,0.4711,2450.8551 +39,0.38500645585060117,0.17317093801852707,0.23,0.4785,2452.2814 +40,0.3833868398666382,0.17188899896957244,0.2268,0.4764,2445.9643 +41,0.3818369646787643,0.1720868834938789,0.2375,0.4748,2433.8104 +42,0.3891989342927933,0.1768588026392722,0.2221,0.4845,2461.0534 +43,0.3860159991502762,0.17475342058836263,0.2296,0.4865,2452.2813 +44,0.3830433107376099,0.17140907646275788,0.2306,0.4721,2443.9097 +45,0.3877002361774445,0.1760819319641818,0.233,0.4811,2454.2666 +46,0.3937846338748932,0.17933777317720673,0.2175,0.4945,2483.4513 +47,0.38975300464630125,0.176505235921604,0.2228,0.4833,2469.5932 +48,0.3863999115228653,0.17383795635487936,0.2223,0.4893,2452.2816 +49,0.38034065907001496,0.17022603458558483,0.2376,0.4627,2428.3033 +50,0.3856261271476746,0.17416162789037223,0.2248,0.4806,2451.7543 +51,0.38258932642936705,0.17215239453606196,0.2334,0.477,2438.7294 +52,0.39212517497539523,0.1792792828934108,0.2194,0.4915,2471.6953 +53,0.38205694279670716,0.17175801722744977,0.2295,0.4765,2437.0187 +54,0.3814312124490738,0.17012523340287258,0.2361,0.4738,2434.094 +55,0.3798844922542572,0.17075663438106606,0.2426,0.4657,2428.3747 +56,0.38893933806419373,0.1757887324545014,0.2266,0.478,2461.6844 +57,0.37503505208492277,0.16675976724156027,0.2494,0.4596,2409.9681 +58,0.38448616216182707,0.17254572084344222,0.2327,0.4682,2451.6063 +59,0.3817160842657089,0.1702793526179643,0.2233,0.4784,2439.582 +60,0.3844838807344437,0.17328307056644965,0.234,0.4757,2441.52 +61,0.38408058152198793,0.17327774849568928,0.2293,0.4814,2445.0923 +62,0.3825907473564148,0.17154440539458674,0.2336,0.4633,2441.6041 +63,0.3879392343759537,0.17444520890193912,0.2186,0.4832,2463.4315 +64,0.38183440976142885,0.17209455649971883,0.2404,0.4672,2432.7606 +65,0.3895618973016739,0.1754681125475587,0.2182,0.4851,2464.4605 +66,0.38383183891773226,0.1738382459621659,0.2373,0.474,2435.5398 +67,0.38558537385463715,0.17365166281753477,0.2243,0.4817,2450.2166 +68,0.3882798399925232,0.17551818265804517,0.2232,0.4833,2464.9835 +69,0.3848116502523422,0.17309062545772771,0.2264,0.4831,2447.8799 +70,0.39202514996528626,0.17810303127732144,0.2142,0.4921,2476.0984 +71,0.3846928337097168,0.17257011932591926,0.2273,0.4824,2447.3405 +72,0.38138337008953094,0.17063785692294453,0.2281,0.4711,2438.0858 +73,0.38681083431243896,0.17383202661371114,0.2193,0.483,2458.6602 +74,0.3804896950483322,0.17021712510727538,0.2361,0.4651,2424.5252 +75,0.39334391179084777,0.17855134192017072,0.2108,0.495,2484.8443 +76,0.38641263942718507,0.17375679158289753,0.2265,0.4919,2455.5872 +77,0.38189645373821257,0.17128731998402646,0.2329,0.4751,2438.8554 +78,0.3893863676309586,0.1759389172979147,0.2196,0.4869,2464.5955 +79,0.37931974947452546,0.16907106540165906,0.2319,0.4733,2431.0809 +80,0.3821241960287094,0.17069762285851225,0.228,0.4781,2443.3718 +81,0.39036191821098326,0.17635717085959468,0.2178,0.491,2471.4317 +82,0.3889653846502304,0.17638073341421734,0.2282,0.4792,2460.4645 +83,0.3838489225149155,0.1730504555440336,0.231,0.4699,2439.7664 +84,0.3790999613523483,0.16806825450203858,0.231,0.4686,2432.3665 +85,0.38707896752357485,0.1752464423424199,0.2259,0.4773,2455.4478 +86,0.37812474706172944,0.16859931129806663,0.2385,0.4659,2426.4784 +87,0.3815366968870163,0.17099931346163952,0.2327,0.4694,2437.7078 +88,0.3816040387153625,0.1713542540407766,0.2341,0.472,2433.6661 +89,0.385497678565979,0.17347741606966813,0.2209,0.4867,2451.6537 +90,0.3871880993366241,0.17446978146686407,0.2192,0.4847,2456.5406 +91,0.37515590114593506,0.1658378866924291,0.2419,0.4636,2414.8768 +92,0.3812685497045517,0.17069804031710803,0.2301,0.4755,2435.7217 +93,0.375414430141449,0.16691826977851898,0.2386,0.4639,2414.5576 +94,0.3924436283349991,0.17794986846810884,0.2127,0.495,2475.2348 +95,0.37893320574760436,0.16918973328355147,0.2373,0.468,2428.5671 +96,0.38066467380523683,0.1704852394063672,0.24,0.4664,2434.7511 +97,0.38063557646274565,0.17008899846828482,0.2284,0.4683,2437.0171 +98,0.3847760795354843,0.1722862759064078,0.2259,0.4768,2451.7162 +99,0.3892325949192047,0.17631115562382765,0.2222,0.4883,2463.1024 +100,0.3797799870967865,0.17008470916396592,0.2361,0.4675,2428.9943 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/summary.csv" new file mode 100644 index 000000000..d3ca803bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/001/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994001,20000,1000000,0.384853495859623,0.17318273904830217,0.8552365789414097,1576.3599190410157,0.228013,0.478119,0.02209300000000003,2448.416749,100,437.7214369773865 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/blocks.csv" new file mode 100644 index 000000000..24e5085ac --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.39152011432647704,0.17731640701916068,0.2174,0.486,2472.9429 +2,0.383521027636528,0.17156109681498288,0.2266,0.4796,2446.3325 +3,0.3877936435699463,0.17492968947515353,0.2173,0.4905,2459.6215 +4,0.3865307960510254,0.1738733543510964,0.2279,0.4836,2454.3982 +5,0.39223883612155913,0.1778153027700478,0.215,0.4934,2473.7324 +6,0.3829457674264908,0.17229648140062795,0.2354,0.471,2439.1648 +7,0.38373920917510984,0.1720622170274351,0.2328,0.4745,2446.401 +8,0.3859467667341232,0.17356235173878562,0.2261,0.4781,2454.6043 +9,0.3918841422557831,0.17778364366186825,0.2169,0.4924,2475.0732 +10,0.3813873927593231,0.17033274412084473,0.2319,0.472,2439.706 +11,0.3903871296644211,0.17713838641936036,0.216,0.4824,2467.1559 +12,0.37919788908958435,0.16964627192681947,0.2359,0.4665,2430.5654 +13,0.3866598191022873,0.17477846527643454,0.2205,0.4838,2455.6637 +14,0.38416725461483003,0.17154247629304933,0.2248,0.4778,2452.8234 +15,0.3987677560806274,0.18286124903861967,0.2006,0.5087,2500.2853 +16,0.38342985026836396,0.17125511266314297,0.2326,0.472,2443.7491 +17,0.37831624686717985,0.1673516090234384,0.2329,0.4725,2427.3534 +18,0.38504099583625795,0.17215993070531732,0.223,0.4776,2453.8521 +19,0.38145771856307986,0.1707471805736702,0.2334,0.4676,2436.3727 +20,0.38134936769008637,0.1713316470451035,0.2377,0.4673,2425.4559 +21,0.3845126570224762,0.17298894278348134,0.2331,0.4734,2445.1153 +22,0.38130887179374695,0.1704520683654159,0.2379,0.4652,2432.3385 +23,0.39141370434761047,0.17744760887278566,0.2196,0.4933,2473.5708 +24,0.3798926777601242,0.1699209283986146,0.2375,0.4676,2433.6315 +25,0.38577925741672514,0.17412439314124245,0.2319,0.4773,2451.3466 +26,0.38499644989967347,0.17378606477614325,0.231,0.476,2447.6528 +27,0.3846524653673172,0.1728539668580383,0.2264,0.4837,2443.4136 +28,0.3885799623966217,0.17632139653584467,0.2287,0.4853,2459.9295 +29,0.38792682280540464,0.17639067033199216,0.2288,0.4801,2456.1686 +30,0.38824828464984895,0.17575605239801112,0.2226,0.4836,2461.5618 +31,0.3834012916088104,0.17191412656639318,0.2356,0.4716,2444.5379 +32,0.3975912175655365,0.18172624852780406,0.2074,0.5034,2490.4378 +33,0.3937616916656494,0.17853323592397033,0.2181,0.4937,2477.4356 +34,0.3834305043697357,0.17314315386264034,0.2314,0.4843,2444.4608 +35,0.38917938323020934,0.1753184649377608,0.2196,0.4908,2468.7903 +36,0.3891393826007843,0.17617014740459558,0.2214,0.4852,2465.3798 +37,0.39018301956653595,0.17722342559778603,0.226,0.4827,2464.2124 +38,0.3931362412929535,0.1787709300115091,0.2069,0.4998,2480.3294 +39,0.37771121480464936,0.1685269184977926,0.2431,0.4634,2419.0724 +40,0.38522559003829954,0.17255725185235404,0.236,0.4746,2452.6729 +41,0.39384541137218476,0.17976326269703333,0.2179,0.4871,2475.226 +42,0.385551287817955,0.17400796394696863,0.2276,0.4798,2448.0466 +43,0.3828273602485657,0.17199272380846894,0.2286,0.477,2441.1942 +44,0.386613281750679,0.17465894709977234,0.2214,0.484,2459.2885 +45,0.39243613522052767,0.17833561780047144,0.2054,0.4857,2476.4477 +46,0.38789909110069276,0.1750493627095907,0.2128,0.4895,2464.5387 +47,0.3878367292881012,0.17548257890766167,0.2156,0.4918,2458.7404 +48,0.3843225391626358,0.17256069741274602,0.2201,0.4916,2449.0818 +49,0.37762254137992857,0.1676790817539712,0.237,0.4585,2426.7751 +50,0.38687618482112884,0.17465202187035145,0.2154,0.4873,2457.8363 +51,0.3764917273521423,0.1666559727120761,0.2426,0.4543,2420.2242 +52,0.3827079536914825,0.17220306329589644,0.2383,0.4686,2437.7282 +53,0.380876699090004,0.17095981279168934,0.2423,0.4693,2429.4065 +54,0.3863130688667297,0.17487863116368657,0.2254,0.4789,2451.1271 +55,0.37964495770931245,0.17005202728403054,0.2389,0.4737,2425.7727 +56,0.3871053661108017,0.1751827115921349,0.2235,0.4856,2456.1667 +57,0.3875480796813965,0.17619353837239157,0.2266,0.4814,2454.8254 +58,0.37715122458934786,0.16882988045455974,0.2434,0.4652,2419.9631 +59,0.38434461295604705,0.17209236710067372,0.2298,0.4763,2445.9388 +60,0.3945888746023178,0.18000740057479994,0.2093,0.506,2486.7377 +61,0.38996210622787475,0.17723729985285055,0.2194,0.4897,2467.7104 +62,0.3905340874195099,0.17679334041838876,0.2215,0.4747,2465.8621 +63,0.3853889645576477,0.17375348898083692,0.229,0.4781,2449.348 +64,0.38759373664855956,0.17549123246719625,0.2318,0.4796,2456.0618 +65,0.38566290836334227,0.17277675140647078,0.2225,0.472,2447.8585 +66,0.3903605365037918,0.17690180326552052,0.2232,0.4856,2464.3128 +67,0.3850986428022385,0.17346116300622927,0.2285,0.4807,2452.7627 +68,0.3831366983175278,0.17187527186383658,0.227,0.4824,2443.419 +69,0.3853671976327896,0.17333195465812978,0.2297,0.4705,2451.1374 +70,0.38165110502243044,0.17124698530166949,0.2325,0.4654,2433.9931 +71,0.3888771995782852,0.17652158660881265,0.2247,0.4831,2456.5167 +72,0.38557961151599884,0.17394854401455012,0.2228,0.484,2453.5084 +73,0.38854311740398406,0.17636694200209443,0.2316,0.4841,2459.8568 +74,0.3804225155591965,0.17094596921878025,0.2443,0.4777,2426.6279 +75,0.38685628907680514,0.17469135914964373,0.2244,0.4761,2457.8496 +76,0.39139228971004486,0.17726174717384668,0.215,0.4958,2476.2284 +77,0.3858276913166046,0.1729507949370075,0.2183,0.4867,2452.3649 +78,0.3903374808073044,0.1776196065932556,0.2176,0.4924,2468.1281 +79,0.37311807870864866,0.16499286034539332,0.2423,0.4569,2409.4094 +80,0.38710787906646726,0.17370248947723257,0.2172,0.4811,2463.0407 +81,0.39061942739486694,0.17753017245401628,0.2152,0.4937,2469.5131 +82,0.3791933128595352,0.16869266150348738,0.233,0.4642,2430.3679 +83,0.3847637131929398,0.17275537575900274,0.2281,0.4709,2444.2804 +84,0.3976871019363403,0.1825273749636255,0.2084,0.5047,2491.5335 +85,0.3806745948791504,0.170453118152565,0.2333,0.4711,2429.8923 +86,0.3806248701095581,0.16949359838127503,0.2351,0.4675,2431.8222 +87,0.38352844235897066,0.1715680316242111,0.2284,0.4713,2445.5121 +88,0.3870617450475693,0.17531250645653057,0.2201,0.4804,2455.5382 +89,0.3908238348007202,0.17774227425047712,0.2185,0.4986,2469.9064 +90,0.38975226604938507,0.1764947111918174,0.2153,0.4864,2467.3041 +91,0.3817432026386261,0.17167529431264103,0.2301,0.4724,2433.7693 +92,0.3912182017087936,0.17769871442169088,0.2199,0.4887,2469.3053 +93,0.39192031693458557,0.17839584070739806,0.2188,0.4904,2472.1607 +94,0.3872386223077774,0.17593296261762947,0.2218,0.4899,2453.8216 +95,0.3821920995950699,0.17201720792653263,0.2263,0.4788,2438.9054 +96,0.3794970954179764,0.16996868779435914,0.2352,0.4753,2430.9755 +97,0.38808356108665465,0.17537312020783294,0.2216,0.4818,2456.5054 +98,0.38753287844657897,0.1743953038516649,0.2242,0.4817,2458.0313 +99,0.38841919214725495,0.17640280156353313,0.2192,0.4852,2463.0802 +100,0.3897308030366898,0.1765082185619894,0.2168,0.486,2470.8292 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/summary.csv" new file mode 100644 index 000000000..4c500ae84 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/002/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994002,20000,1000000,0.38614078959035875,0.17408318443782134,0.8565141421727761,1581.6326741621094,0.225622,0.480595,0.029351000000000016,2452.914285,100,474.66867995262146 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/blocks.csv" new file mode 100644 index 000000000..40530d70d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3900231775760651,0.17715634116640464,0.2229,0.4836,2467.4574 +2,0.3781516877889633,0.1676284302319552,0.238,0.4666,2426.5748 +3,0.3844652966976166,0.1726255050604213,0.2329,0.4822,2443.3028 +4,0.39089472830295563,0.17761024087041924,0.217,0.4874,2467.7332 +5,0.3834240604877472,0.17131922741529587,0.2242,0.4734,2443.6539 +6,0.3837847097158432,0.17155946881554712,0.2234,0.4705,2448.9884 +7,0.37867290098667145,0.16960632317425534,0.2429,0.4606,2425.848 +8,0.3796675581693649,0.16910179232116,0.2352,0.4672,2430.9036 +9,0.38440299062728883,0.17331035950500764,0.2265,0.475,2439.8082 +10,0.3894355186700821,0.17623299248268903,0.2159,0.4883,2469.6331 +11,0.37897872281074524,0.1694475536077589,0.2418,0.4652,2421.9511 +12,0.3873704396009445,0.1755600173474772,0.2231,0.4789,2455.345 +13,0.3823376480102539,0.17069453271231586,0.2349,0.4771,2440.4388 +14,0.38773487334251405,0.17505749271110627,0.2283,0.49,2458.3054 +15,0.3898634328365326,0.17613920090814936,0.2177,0.4846,2472.2851 +16,0.3770120709180832,0.1681346360668128,0.2431,0.4638,2419.879 +17,0.38262791450023653,0.1712785246176534,0.2305,0.4737,2439.4087 +18,0.3790747077226639,0.1689930820065958,0.2442,0.4634,2425.2051 +19,0.3864965113162994,0.17376416673351963,0.2272,0.4786,2456.6094 +20,0.381465122461319,0.1712959359868271,0.2328,0.471,2434.3016 +21,0.3805217147111893,0.1704626846520298,0.2336,0.4691,2435.7865 +22,0.3872597016811371,0.17502906772794877,0.22,0.4878,2460.658 +23,0.38944795083999634,0.1758259138673416,0.2212,0.4846,2467.1909 +24,0.3815365848779678,0.17093411342898754,0.2323,0.4747,2439.482 +25,0.38590917320251467,0.17455199698994428,0.228,0.4841,2450.5791 +26,0.38981371150016786,0.17654246249938424,0.222,0.4874,2467.7814 +27,0.39208746089935304,0.17693783671120622,0.2139,0.4893,2475.3684 +28,0.3852410253763199,0.17359324762363526,0.2277,0.4743,2450.6582 +29,0.387616389131546,0.17514113562548764,0.2282,0.4747,2458.2026 +30,0.3835836560726166,0.1730506694771147,0.2247,0.4813,2445.9018 +31,0.3779282197237015,0.1703667264332663,0.2422,0.4706,2422.2764 +32,0.3821708647251129,0.17089541620172508,0.2358,0.4738,2438.5129 +33,0.37831166172027586,0.1678187264396618,0.2385,0.4572,2422.4039 +34,0.3943441762924194,0.17963086407575055,0.2139,0.4946,2485.3278 +35,0.38294532387256625,0.17204742884497695,0.2308,0.4745,2441.66 +36,0.3767463103055954,0.16804014400286893,0.2349,0.4636,2419.266 +37,0.3909789675951004,0.1768971982103826,0.2125,0.4973,2475.681 +38,0.38686993613243104,0.17502565937581138,0.2236,0.4828,2456.7603 +39,0.3893381164312363,0.17614990151375734,0.2216,0.4848,2464.203 +40,0.39027994542121885,0.17716087974052808,0.2127,0.4899,2470.6634 +41,0.38795446453094484,0.17548894539868962,0.2147,0.4897,2455.9632 +42,0.387714715719223,0.1758013693337386,0.2318,0.4777,2460.0773 +43,0.38455646884441375,0.17298946294819734,0.2356,0.4696,2444.9226 +44,0.38283503947257996,0.17195458415024437,0.2286,0.4789,2444.2454 +45,0.3864328351736069,0.1731792158009164,0.2258,0.48,2456.5553 +46,0.3797637154340744,0.17013803674280753,0.241,0.4708,2429.2343 +47,0.3823961533546448,0.1718115384089561,0.2366,0.472,2435.3931 +48,0.3851700986146927,0.17293999825991146,0.2313,0.4748,2449.0444 +49,0.38436801500320433,0.172653339564142,0.229,0.4788,2446.0695 +50,0.38666358218193053,0.17375188572597364,0.2216,0.4864,2458.9142 +51,0.38950449495315553,0.17628552186333013,0.215,0.494,2466.8025 +52,0.38122536027431486,0.17006190719736397,0.2343,0.4649,2436.9968 +53,0.38640963978767395,0.175390373199376,0.2276,0.4857,2452.5284 +54,0.39021969318389893,0.1767648655187105,0.2133,0.4869,2470.1204 +55,0.38120564467906953,0.17084956253111117,0.2319,0.4755,2437.8952 +56,0.3788640146493912,0.1703978433455241,0.2513,0.4637,2423.0676 +57,0.3878949722766876,0.17535166012181663,0.2248,0.4795,2459.3472 +58,0.3833254644393921,0.17210583165347637,0.2352,0.4756,2444.7296 +59,0.3834172175168991,0.17184225625697386,0.2289,0.4689,2444.1265 +60,0.38744577021598814,0.17474268630484527,0.2205,0.4756,2458.6718 +61,0.37800694468021395,0.1687294565927642,0.2385,0.4719,2427.5963 +62,0.39244480431079865,0.1781670793777656,0.2114,0.4963,2477.583 +63,0.39138981759548186,0.17706148495803228,0.2162,0.4935,2472.7925 +64,0.38201773056983945,0.17253276725204927,0.2426,0.4795,2433.1612 +65,0.38801966931819915,0.17479504897333153,0.2172,0.4837,2465.548 +66,0.38949836378097535,0.1755561801672403,0.2182,0.4914,2463.6109 +67,0.3892581360578537,0.17671920135969243,0.219,0.4872,2464.0384 +68,0.3868671890974045,0.17387699544066662,0.2286,0.4792,2460.933 +69,0.37682000122070314,0.16797839933820125,0.2482,0.4608,2417.1582 +70,0.3857423498868942,0.17400599397210625,0.2236,0.482,2448.0042 +71,0.37159397659301757,0.16435579731835076,0.2545,0.4473,2395.2778 +72,0.38429074673652647,0.1729791907993411,0.2278,0.48,2440.9941 +73,0.38277333772182465,0.17161742596519858,0.225,0.4779,2445.9782 +74,0.3798777803182602,0.17072586524249195,0.2444,0.4703,2426.8065 +75,0.3882897438287735,0.1764754146630507,0.2256,0.4864,2455.1142 +76,0.383082466506958,0.17182270385576537,0.2293,0.474,2440.5695 +77,0.3865568957090378,0.17409395455073953,0.2254,0.4852,2451.742 +78,0.3815537045955658,0.16975372242797057,0.2353,0.4726,2441.8138 +79,0.38464504783153536,0.17274763380551664,0.2284,0.4736,2450.4061 +80,0.3874756999731064,0.17550025509967743,0.2267,0.4811,2458.8416 +81,0.39095378029346467,0.17723378512930818,0.2169,0.4891,2468.0797 +82,0.3833460416316986,0.17239310886162656,0.2254,0.4791,2447.0939 +83,0.3979044203519821,0.18164817574685357,0.204,0.504,2493.8594 +84,0.384090997171402,0.17273051003596585,0.2269,0.4725,2445.5859 +85,0.38732317609786987,0.17482121876075732,0.2214,0.4781,2458.0185 +86,0.38948048365116117,0.17659008238803903,0.2186,0.491,2463.173 +87,0.38149851253032685,0.1713236537873011,0.2352,0.4751,2438.5076 +88,0.39469473595619203,0.17983682340863008,0.2093,0.5037,2482.9298 +89,0.3952830203771591,0.1801651771220257,0.2053,0.4977,2488.7119 +90,0.39036396262645723,0.1766431275960785,0.2216,0.492,2471.9715 +91,0.3852268898010254,0.17292899563605885,0.2272,0.4678,2447.9863 +92,0.3878791412830353,0.17519887984607832,0.2229,0.4853,2459.8995 +93,0.3866409720659256,0.1742747390321345,0.2228,0.4771,2453.9553 +94,0.3846318623781204,0.17329253598796673,0.2316,0.4732,2443.4976 +95,0.3953586000919342,0.1804104263365729,0.2111,0.4961,2488.0398 +96,0.3822922990322113,0.17222796658270717,0.2292,0.4796,2437.035 +97,0.38570030751228335,0.17407121862163114,0.2318,0.4726,2444.9595 +98,0.3841741572380066,0.17302983340735803,0.2274,0.4811,2445.3856 +99,0.3894711763381958,0.17650895909577938,0.2155,0.491,2470.9754 +100,0.380154759812355,0.17036182626297608,0.2368,0.4695,2430.8837 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/summary.csv" new file mode 100644 index 000000000..2d17a34fb --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/003/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994003,20000,1000000,0.3853285602593422,0.17352304396315088,0.8556679041607185,1578.3057828222657,0.227262,0.47896,0.024436000000000013,2450.292199,100,496.35836696624756 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/blocks.csv" new file mode 100644 index 000000000..bc68f9e29 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.39312561185359957,0.17810512079563995,0.2078,0.4954,2481.4089 +2,0.39695981199741365,0.18098132571509504,0.2089,0.4925,2493.2205 +3,0.38281028492450714,0.17211896706920415,0.2363,0.4736,2436.7453 +4,0.38289336123466494,0.17211468116228767,0.2283,0.4748,2442.0868 +5,0.3877539815187454,0.17402045536368163,0.2195,0.4857,2463.712 +6,0.3826039948940277,0.17145237954336381,0.2328,0.468,2439.8403 +7,0.3868989655733108,0.1751777182786525,0.2212,0.478,2457.4697 +8,0.38125774357318876,0.16975288131725932,0.2332,0.4711,2441.2943 +9,0.3902265156984329,0.17657263759053107,0.2165,0.4871,2467.3709 +10,0.3871396949529648,0.1748386013099103,0.2218,0.4767,2454.5946 +11,0.39052421674728394,0.1768994688086747,0.2202,0.485,2465.7675 +12,0.3889500672340393,0.17590639979251751,0.2191,0.4853,2467.2613 +13,0.3813173238277435,0.1711601673461067,0.2403,0.4699,2431.9297 +14,0.38433645186424253,0.17295318794723197,0.2273,0.467,2447.7508 +15,0.37782328712940216,0.16858642321380002,0.2345,0.4773,2426.5884 +16,0.3902210751533508,0.176745836981306,0.2195,0.4917,2469.2114 +17,0.39034379217624665,0.17646003913902522,0.2178,0.4958,2467.6123 +18,0.3890707853078842,0.17650161758190946,0.2214,0.4887,2459.2343 +19,0.37809611699581147,0.16894194314092142,0.2443,0.4629,2415.3146 +20,0.3736297815084457,0.16561443271496584,0.2495,0.46,2404.6513 +21,0.3845397590637207,0.17293170591318882,0.2279,0.4739,2445.587 +22,0.38389985330104826,0.17280292330146985,0.2258,0.4817,2443.5562 +23,0.37673265371322634,0.16769278828797668,0.2417,0.4553,2419.8828 +24,0.3914162105083466,0.17720541604087417,0.2145,0.4949,2471.5769 +25,0.3818477489233017,0.17287493386374514,0.2458,0.4714,2428.6848 +26,0.3852005702972412,0.1749804018454891,0.2314,0.4788,2446.3999 +27,0.3966864794254303,0.18033884508768327,0.2019,0.4968,2493.6531 +28,0.3863314127922058,0.1742881997114761,0.229,0.4811,2456.7221 +29,0.37980268380641935,0.1699254247281258,0.2332,0.4612,2431.9185 +30,0.3825521242618561,0.17204409219713213,0.2293,0.4729,2439.4591 +31,0.391494749212265,0.177752369396224,0.2167,0.487,2470.5802 +32,0.38603897664546966,0.1740498321485357,0.2204,0.4821,2453.4809 +33,0.3894351001262665,0.17584585264462615,0.2213,0.488,2465.9161 +34,0.38561624433994296,0.17349266539105723,0.2261,0.4832,2450.4231 +35,0.39035195960998537,0.1767589524074082,0.2138,0.4908,2465.6369 +36,0.38618596160411833,0.17407203758511014,0.227,0.4792,2451.0152 +37,0.38061686160564423,0.17063445761270063,0.236,0.4658,2428.6447 +38,0.38494449009895326,0.1736752084062211,0.225,0.483,2445.8787 +39,0.3867348546028137,0.17515364358448593,0.232,0.4808,2451.1786 +40,0.38176578838825226,0.1711721358294659,0.2338,0.4706,2438.9752 +41,0.3865207914829254,0.1742458440043381,0.2255,0.4866,2455.0304 +42,0.38315414776802065,0.1714779404970034,0.2316,0.4712,2437.5344 +43,0.38081069684028623,0.16997270783187424,0.2401,0.4656,2432.169 +44,0.3925677122831345,0.17949144715359183,0.221,0.4986,2468.9834 +45,0.3779284009695053,0.16898867762233316,0.2371,0.4671,2422.9095 +46,0.39050559167861937,0.1765626269920909,0.2223,0.488,2462.4224 +47,0.39063403458595275,0.17718129226432813,0.2203,0.4884,2472.9197 +48,0.3909579264640808,0.17712122506846237,0.2092,0.4904,2474.3117 +49,0.39120106348991396,0.17784985504731698,0.2108,0.4944,2473.7578 +50,0.3862103893041611,0.17462194316908877,0.2278,0.4848,2449.6865 +51,0.38769484853744507,0.17660261758660623,0.2264,0.4898,2456.8436 +52,0.38169681282043455,0.17120046537842237,0.2359,0.4678,2436.611 +53,0.38968624591827394,0.17589836228337363,0.2161,0.486,2472.7586 +54,0.3823927005767822,0.17184289660201607,0.233,0.4711,2435.0374 +55,0.3883499740600586,0.17555370842974274,0.2215,0.4796,2458.7817 +56,0.3863665594816208,0.173357254141564,0.2235,0.49,2457.4932 +57,0.38510303170681,0.17342579399424546,0.2248,0.4814,2450.5739 +58,0.38567238075733185,0.17356504225187255,0.2248,0.4825,2453.9821 +59,0.3868270655632019,0.17423398892100203,0.2264,0.478,2454.9969 +60,0.394235973405838,0.1786571876658541,0.2149,0.4929,2484.0495 +61,0.38959494585990906,0.17569115731128637,0.2202,0.4825,2464.8879 +62,0.39289688737392425,0.17963452483231696,0.2211,0.4969,2477.3898 +63,0.38373320960998536,0.17171484483982632,0.2243,0.484,2446.381 +64,0.375519479393959,0.16700118665227015,0.248,0.4602,2417.8819 +65,0.38854280517101286,0.17662990540756277,0.2184,0.4899,2461.8249 +66,0.37619510343074797,0.1671285464592502,0.2375,0.4605,2420.8073 +67,0.3848692467212677,0.17294760663747566,0.233,0.4819,2449.2276 +68,0.3901116916894913,0.17650293970459696,0.213,0.4914,2469.4795 +69,0.3881411967992783,0.17406123993447084,0.2198,0.4898,2460.9388 +70,0.38778126015663145,0.17541874481270855,0.2206,0.4871,2461.1378 +71,0.38377298622131345,0.17228739576947663,0.2258,0.4812,2447.7317 +72,0.38097500910758975,0.1701287936242238,0.2339,0.4678,2432.7209 +73,0.3930685026884079,0.1778485826151094,0.2115,0.4992,2484.0821 +74,0.38469054284095766,0.17340601246854256,0.2345,0.475,2443.3335 +75,0.3836765954017639,0.17152838056795755,0.227,0.4727,2450.671 +76,0.3902708553791046,0.17680654368136411,0.2247,0.4826,2467.3771 +77,0.3805712389707565,0.17024016511981221,0.2385,0.4684,2431.6163 +78,0.3898752871274948,0.17695329156406064,0.2217,0.4899,2462.4109 +79,0.38497530081272124,0.17326462191500536,0.2166,0.4844,2451.6162 +80,0.38299177942276,0.17216278019286538,0.234,0.4742,2445.5019 +81,0.3845780437707901,0.17296871674592804,0.2255,0.4839,2445.8608 +82,0.38625391232967377,0.17507707295419436,0.2278,0.4821,2452.0664 +83,0.3916930242538452,0.17794090733844742,0.2196,0.4929,2471.3197 +84,0.3825864362716675,0.1719678207867756,0.2352,0.4637,2435.6997 +85,0.3846303506135941,0.17341320080565611,0.2307,0.4804,2445.2867 +86,0.38554460749626157,0.17319428951496607,0.2286,0.4802,2451.5432 +87,0.38112671272754667,0.17070944207265057,0.2401,0.4752,2433.6469 +88,0.38848006415367126,0.17520212469175303,0.2151,0.4896,2465.9213 +89,0.38630336945056915,0.174220708088842,0.2239,0.4812,2452.1038 +90,0.38400876319408417,0.17108694821662426,0.225,0.4737,2449.1025 +91,0.3870537492275238,0.17421686929719712,0.2233,0.4798,2457.1838 +92,0.3823538840532303,0.17219853902338358,0.2341,0.4797,2441.099 +93,0.38034608747959137,0.17063296591207633,0.2411,0.4662,2428.2939 +94,0.38933487787246707,0.1764881003594815,0.2177,0.4849,2464.0413 +95,0.37989707243442533,0.1701897728246867,0.2392,0.4659,2426.638 +96,0.3906247970342636,0.1776233375202489,0.2259,0.4855,2471.0462 +97,0.39021813476085665,0.17625162012514656,0.2145,0.4903,2468.4983 +98,0.3792940111398697,0.17058371812224904,0.2332,0.4714,2428.1527 +99,0.3823365122556686,0.17103445270535048,0.229,0.473,2444.0424 +100,0.3716341130256653,0.16406871922754848,0.25,0.4638,2397.8041 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/summary.csv" new file mode 100644 index 000000000..4a80e392e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/004/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994004,20000,1000000,0.38567246141910555,0.17374873638143598,0.8560824705540926,1579.7144019726563,0.226494,0.480022,0.027034000000000002,2451.194564,100,439.5639748573303 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/blocks.csv" new file mode 100644 index 000000000..d283ec513 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3850806305885315,0.17352672211038644,0.2226,0.4807,2450.8866 +2,0.3813026697635651,0.1709647081192361,0.2343,0.4748,2437.9165 +3,0.3925372290611267,0.17834861473558278,0.2222,0.4964,2475.8771 +4,0.37817423613071444,0.168643467405448,0.2385,0.4576,2421.1225 +5,0.3937419967889786,0.179965766153621,0.2109,0.4976,2481.0961 +6,0.3871425210237503,0.17518050752390485,0.221,0.4904,2458.1631 +7,0.39198509085178374,0.17850444265608584,0.2178,0.4923,2470.8967 +8,0.3808092599630356,0.17009893543377724,0.2322,0.4694,2434.004 +9,0.38361664316654204,0.1733129787888271,0.2344,0.4762,2439.5812 +10,0.3801313857793808,0.1698677164995888,0.241,0.4639,2423.9934 +11,0.3831000996351242,0.17157395142864207,0.2296,0.474,2440.4993 +12,0.38540903062820436,0.17348513996089193,0.2244,0.4783,2454.5293 +13,0.3875681199789047,0.17583069088687162,0.23,0.4814,2451.4913 +14,0.3894965680599213,0.17656702096482832,0.2218,0.4864,2463.8405 +15,0.39402932720184325,0.17913294711680408,0.2099,0.4949,2484.3894 +16,0.3865172818183899,0.1741030555828199,0.2208,0.4806,2455.4304 +17,0.38733009066581725,0.17529718794174606,0.2252,0.481,2459.905 +18,0.3779318356752396,0.16824761675436317,0.2305,0.4644,2423.8128 +19,0.38717859263420107,0.17472275125762476,0.2228,0.4814,2453.4708 +20,0.3932058875322342,0.17902677643360307,0.2137,0.4934,2470.8388 +21,0.38835041360855105,0.17442595563936142,0.2219,0.4798,2461.3705 +22,0.3916802408218384,0.17747549656829226,0.21,0.4985,2478.5348 +23,0.384898277258873,0.1737703195508441,0.2304,0.4789,2444.9309 +24,0.3826757697343826,0.17146741820231806,0.2303,0.4765,2441.0722 +25,0.3850509570121765,0.1732870459226126,0.2207,0.4855,2455.2897 +26,0.3868354708194733,0.1749465295121251,0.2282,0.482,2453.2889 +27,0.3877544254541397,0.17430513619267798,0.2175,0.4788,2460.2458 +28,0.3822298176050186,0.17149521241410567,0.233,0.4697,2436.5441 +29,0.385295175075531,0.17245157437776235,0.2206,0.4826,2457.3053 +30,0.37893007283210756,0.1692309810271479,0.2368,0.4742,2433.0939 +31,0.37999543743133546,0.16940634137272662,0.2349,0.4651,2431.8814 +32,0.3808760450124741,0.17019730853779216,0.2342,0.4651,2433.5292 +33,0.3931532305002213,0.178370608868073,0.2072,0.495,2480.0572 +34,0.3913524437189102,0.17783728755304282,0.2179,0.4927,2467.6614 +35,0.386481240606308,0.17348305206185086,0.2179,0.4832,2459.2192 +36,0.38091504294872286,0.17065849265690888,0.2348,0.4716,2431.016 +37,0.3808114367723465,0.1705315804806084,0.2362,0.4634,2432.0201 +38,0.38182496509552,0.1714895245306538,0.2369,0.4816,2440.1459 +39,0.3832783398628235,0.17261196152082722,0.2325,0.4699,2441.0858 +40,0.38144125459194184,0.17136537535910418,0.2368,0.4684,2434.3962 +41,0.38850473206043246,0.17428904529660805,0.2224,0.4809,2470.5149 +42,0.38246050631999967,0.17165707627983934,0.2292,0.4755,2438.0686 +43,0.3900986526250839,0.17652153771175486,0.2218,0.4799,2468.6325 +44,0.38966566789150237,0.17736494973438852,0.222,0.4878,2463.2594 +45,0.38429346413612364,0.17175496710988544,0.2249,0.4722,2446.954 +46,0.3868565732240677,0.1743024402332856,0.2256,0.4835,2453.5356 +47,0.383710702252388,0.17165729159834295,0.2284,0.473,2441.5201 +48,0.3912334396123886,0.17707739862720429,0.2133,0.492,2468.8468 +49,0.3853164412975311,0.17307533148407236,0.2267,0.4837,2448.1205 +50,0.38644753856658937,0.17459749847366485,0.2288,0.4885,2456.8554 +51,0.3898450743436813,0.1773378732933811,0.2203,0.4892,2462.9267 +52,0.38818657352924346,0.1751887815278351,0.2185,0.4823,2459.2291 +53,0.3892075887680054,0.1748616581291807,0.216,0.4888,2469.2145 +54,0.3853924653530121,0.1736118052892409,0.2331,0.4783,2446.7453 +55,0.3795255425930023,0.16920414594070005,0.2362,0.4677,2431.655 +56,0.38755219457149503,0.17441969881767938,0.2217,0.4862,2461.1909 +57,0.3818549780845642,0.1709235922266841,0.235,0.4792,2436.7691 +58,0.38356758685111997,0.17223731743698628,0.2259,0.4821,2446.8783 +59,0.386747314786911,0.17480772598231809,0.2292,0.4764,2455.3353 +60,0.3912701287031174,0.17704458148111815,0.2129,0.4953,2472.6109 +61,0.39177371265888217,0.17774115533311766,0.2109,0.4934,2472.6245 +62,0.38437540917396545,0.17262939647675485,0.2284,0.4715,2445.6017 +63,0.3872407918691635,0.17455572046963108,0.2229,0.4819,2458.4036 +64,0.38468411321640017,0.17275155292331862,0.2269,0.4758,2449.6792 +65,0.3868179709672928,0.17430579115846526,0.2243,0.4845,2456.9336 +66,0.38424653191566466,0.17196809536336125,0.2364,0.4642,2446.044 +67,0.38930413744449616,0.17684164313434786,0.2223,0.488,2463.7346 +68,0.3853959619283676,0.17418175438947156,0.2266,0.4735,2451.3468 +69,0.38771999394893647,0.17428524898149073,0.2207,0.4824,2459.1575 +70,0.3757809211730957,0.16713885166107012,0.2405,0.4622,2416.7825 +71,0.3878599310398102,0.17507571688619614,0.2239,0.4912,2457.8065 +72,0.38863546812534333,0.1762028034436621,0.2195,0.4932,2464.5458 +73,0.38063086297512055,0.17107611504611167,0.2326,0.4746,2429.5655 +74,0.37957612833976745,0.17059622356988197,0.238,0.469,2430.2046 +75,0.38349010081291196,0.171909666023051,0.2243,0.4774,2445.0727 +76,0.38586192281246184,0.17367828944831049,0.2353,0.4764,2450.2562 +77,0.3827775588274002,0.1719832564627292,0.2342,0.4739,2435.2671 +78,0.3858139933824539,0.17278064113780411,0.2237,0.4761,2458.6259 +79,0.3833097938776016,0.1733476926282827,0.2317,0.4811,2437.1117 +80,0.3855361839532852,0.173839814271877,0.2203,0.4821,2452.4214 +81,0.38591665000915526,0.17391451853390952,0.2279,0.4847,2453.5526 +82,0.3908116044998169,0.1774691580530653,0.2166,0.4855,2469.4013 +83,0.38517838342189786,0.17292782143674768,0.226,0.4738,2453.8158 +84,0.39032837171554563,0.17634980036032863,0.2197,0.488,2473.7481 +85,0.3856448358297348,0.17435541194004273,0.2263,0.4755,2450.0191 +86,0.38028144414424897,0.17064691034409257,0.2344,0.4707,2438.0348 +87,0.38356549620628355,0.17255441026088547,0.2311,0.4769,2441.088 +88,0.3901702128648758,0.17690669244539986,0.2192,0.4865,2463.4354 +89,0.39008704960346224,0.1763595597571414,0.2167,0.4918,2469.4185 +90,0.38587872426509856,0.17346849321095642,0.2262,0.482,2452.1324 +91,0.3893600654125214,0.17557081399910066,0.2144,0.4899,2469.5643 +92,0.3822196485280991,0.17235553960137845,0.2318,0.4784,2439.3784 +93,0.3856753987789154,0.17342792410825067,0.2217,0.4843,2455.493 +94,0.38389952807426453,0.17162264924170426,0.2193,0.4712,2451.1032 +95,0.3897017625808716,0.1769156456640427,0.2201,0.4848,2459.1441 +96,0.39265549249649045,0.17827204308866745,0.2164,0.494,2477.7833 +97,0.3868961669206619,0.1740259106432369,0.2163,0.4784,2452.7678 +98,0.38330703542232514,0.17280520101977787,0.2352,0.4816,2441.3576 +99,0.38677970461845396,0.17454467835667178,0.2244,0.4868,2455.6764 +100,0.3862130644798279,0.17375599345832915,0.2328,0.4857,2452.2225 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/summary.csv" new file mode 100644 index 000000000..0ca3899d5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/005/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994005,20000,1000000,0.38587257847595213,0.17382281521110324,0.8566058870859247,1580.5340814375,0.225541,0.48043,0.02934800000000004,2452.236182,100,435.9679410457611 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/blocks.csv" new file mode 100644 index 000000000..8a896dfac --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.38686364448070526,0.1751323641793933,0.2206,0.4851,2461.484 +2,0.3791458839178085,0.16956883974625142,0.2372,0.4651,2425.5075 +3,0.38601919643878935,0.17450589294539343,0.2272,0.4805,2447.3934 +4,0.3804155168771744,0.17023777423857822,0.2338,0.4671,2429.6247 +5,0.3885052740097046,0.17547921252754084,0.225,0.4748,2460.328 +6,0.38403222444057467,0.17210827917258556,0.2245,0.4764,2449.6606 +7,0.3883378760814667,0.17493170399834704,0.213,0.4877,2466.0877 +8,0.3889736211776733,0.17638026048548863,0.2216,0.4823,2464.9748 +9,0.3783547473192215,0.1690355112188732,0.2387,0.4697,2425.7688 +10,0.3943998128175735,0.1796554124496361,0.2128,0.5005,2483.3071 +11,0.3876916313171387,0.17569172935768546,0.2292,0.4818,2452.7168 +12,0.38969033896923067,0.17665490789157842,0.219,0.4852,2468.2246 +13,0.3852568660259247,0.17348433002932878,0.2274,0.4801,2449.4864 +14,0.38404248485565184,0.17269784409923022,0.2274,0.4779,2442.1662 +15,0.3847540580511093,0.17466554091326544,0.2292,0.4748,2443.7603 +16,0.38659440388679506,0.1744211557852515,0.2235,0.4809,2448.661 +17,0.38527038762569427,0.17427512958395577,0.2337,0.4821,2444.3395 +18,0.3737842686653137,0.16618077520011382,0.2436,0.4652,2409.3969 +19,0.3941381461620331,0.18014622174022588,0.2157,0.489,2479.8381 +20,0.389797366976738,0.177102062804182,0.2233,0.4872,2462.542 +21,0.3824181783914566,0.17111687110697635,0.2322,0.4665,2442.0819 +22,0.3843377868890762,0.17243875050628596,0.2337,0.4702,2445.5362 +23,0.38200596590042113,0.17136494542163727,0.2337,0.4737,2434.3356 +24,0.3860153932571411,0.17314450740302367,0.2181,0.4804,2458.2074 +25,0.3824687676906586,0.17174454174310505,0.2288,0.4857,2436.5369 +26,0.38207724413871763,0.17166508666818134,0.2396,0.4684,2438.8036 +27,0.3736120215177536,0.16597193930874327,0.2453,0.4637,2408.5095 +28,0.37975699355602266,0.16949646455642756,0.2373,0.4623,2428.7076 +29,0.3799814033508301,0.16879433093620258,0.2369,0.4588,2432.054 +30,0.382464470076561,0.17150477687053886,0.2319,0.4707,2439.5467 +31,0.3902714959859848,0.17608816608076794,0.2103,0.4855,2470.5127 +32,0.38910244781970976,0.17574099519641476,0.2179,0.4956,2464.6401 +33,0.3852307042837143,0.17301275723817172,0.2237,0.4828,2448.4333 +34,0.38935014152526853,0.17644060144941348,0.2184,0.4895,2459.6375 +35,0.3949758663892746,0.17963420629578875,0.2184,0.4933,2485.5981 +36,0.3875812664747238,0.1748841117518923,0.2233,0.4844,2457.0001 +37,0.39898155369758603,0.18277345990733498,0.2093,0.5011,2496.3582 +38,0.3930343783140183,0.17931608465858698,0.2208,0.4867,2471.3179 +39,0.37949142150878906,0.17054261819902594,0.2414,0.4699,2424.3029 +40,0.38442162883281705,0.17244879245079522,0.226,0.4794,2448.3197 +41,0.387990237736702,0.17572297341244245,0.2333,0.4832,2455.5419 +42,0.38342251133918764,0.17241750044498863,0.2328,0.4711,2440.8872 +43,0.3839491465806961,0.1720274146284208,0.2295,0.4746,2438.8976 +44,0.386279936337471,0.1737416179546173,0.2226,0.4747,2456.3912 +45,0.37807033760547637,0.16759880197099788,0.2367,0.4659,2427.9011 +46,0.37780430819988253,0.16825455821328728,0.2358,0.4597,2421.1875 +47,0.38447107088565824,0.17317361301190096,0.2344,0.4748,2444.8261 +48,0.390089035153389,0.17693480502456746,0.2202,0.4938,2468.6439 +49,0.3863171218633652,0.1741697327316545,0.2278,0.4747,2457.0493 +50,0.37531000690460203,0.16718241242238527,0.2446,0.4566,2408.4694 +51,0.3868015925168991,0.17530280331783993,0.223,0.4821,2450.9662 +52,0.38879390761852267,0.1761585849485887,0.2194,0.4876,2463.9752 +53,0.3821765039920807,0.17270599906600229,0.2379,0.473,2435.3179 +54,0.3875339920282364,0.17419952934320163,0.2237,0.474,2458.0665 +55,0.38528200120925904,0.17420231423622284,0.2228,0.4828,2449.4514 +56,0.39459790732860567,0.18046600134283955,0.2181,0.4998,2481.4136 +57,0.39160735001564023,0.17890797700508773,0.2198,0.4944,2467.5928 +58,0.3836238276720047,0.17210780637893827,0.2331,0.4702,2440.3791 +59,0.3725343743085861,0.1648468619265503,0.2554,0.4491,2402.8119 +60,0.3923595555782318,0.1783415104606651,0.2133,0.4866,2473.8355 +61,0.3791457230091095,0.16873211702184507,0.2332,0.4612,2431.8641 +62,0.3892605756521225,0.17661568961930685,0.2296,0.4821,2462.8745 +63,0.38579605312347415,0.17292052929541452,0.223,0.4797,2458.4133 +64,0.3842388061285019,0.17291159440906623,0.2295,0.4773,2445.0293 +65,0.38537473576068876,0.1736460239944851,0.2271,0.4866,2450.597 +66,0.3843027799844742,0.1726446438281124,0.2204,0.4857,2450.0929 +67,0.39199158916473387,0.17803856968359752,0.2193,0.4891,2472.8965 +68,0.38589896247386934,0.17421716882072452,0.2198,0.4816,2452.7859 +69,0.38810600984096527,0.1748341472059526,0.2202,0.4818,2461.905 +70,0.38504678881168364,0.1736412797228263,0.2262,0.482,2444.4019 +71,0.38306991198062895,0.1715422682086009,0.2291,0.4724,2443.5701 +72,0.38542029712200165,0.17342472180193377,0.2302,0.4771,2450.9998 +73,0.3901750295877457,0.17646450502176758,0.213,0.4908,2469.6524 +74,0.38654151022434236,0.17369949343969024,0.2267,0.4826,2454.5587 +75,0.3924018815755844,0.1790856801853875,0.2185,0.4892,2469.6513 +76,0.38681627519130707,0.17492708695216536,0.2234,0.485,2453.0106 +77,0.3890736463546753,0.17571707431149586,0.2205,0.4835,2466.0664 +78,0.3808204486846924,0.1703784620630721,0.2275,0.4709,2436.0237 +79,0.38488356335163115,0.1731264163386329,0.2349,0.4771,2444.1185 +80,0.3842511939048767,0.17239960287241557,0.2212,0.4809,2447.596 +81,0.3843162966489792,0.1734776146958221,0.2213,0.4809,2443.884 +82,0.3779199033737183,0.16825415359414855,0.2395,0.4665,2424.8529 +83,0.3791730445384979,0.1697599570663729,0.234,0.4736,2433.858 +84,0.3859984299659729,0.17350968274668502,0.2207,0.4845,2458.4509 +85,0.388024839758873,0.17545873113339122,0.228,0.4801,2458.2342 +86,0.393207368183136,0.1784170119723663,0.2109,0.5003,2482.6988 +87,0.3822450788259506,0.17155701611746135,0.2272,0.4743,2440.6956 +88,0.3884733093738556,0.17534828151331225,0.2244,0.4763,2459.9899 +89,0.3883371266365051,0.1759973545224815,0.2236,0.4893,2461.3795 +90,0.38723989353179933,0.17512987521716328,0.2292,0.4885,2454.2241 +91,0.3778441426038742,0.16756087262087818,0.2385,0.4646,2426.2331 +92,0.38827977316379547,0.17590615369844026,0.2217,0.4823,2459.4597 +93,0.38455840072631836,0.17276702116347806,0.2259,0.4784,2449.9136 +94,0.3771054915189743,0.16855289566318774,0.2396,0.4612,2421.034 +95,0.3904112164974213,0.1768095810811219,0.2164,0.4881,2467.5819 +96,0.3865983316898346,0.17466513581879753,0.2198,0.4871,2451.617 +97,0.38245181796550753,0.17141295461880995,0.2315,0.4773,2439.2148 +98,0.392033563041687,0.17888037246866914,0.2203,0.4865,2466.9865 +99,0.39161391632556913,0.1771634805447916,0.2109,0.4853,2476.6049 +100,0.39486702961921694,0.1798576668544852,0.207,0.5005,2488.6333 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/summary.csv" new file mode 100644 index 000000000..d1c5bbce2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/006/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994006,20000,1000000,0.38565976360487936,0.17378394661865776,0.8558526616393642,1579.6623917255858,0.226413,0.479329,0.026503,2450.809682,100,490.34365606307983 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/blocks.csv" new file mode 100644 index 000000000..9b05908a0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.393997546005249,0.17954142504973428,0.2157,0.4969,2483.219 +2,0.3838625776290894,0.17170371129000248,0.2258,0.4832,2448.6897 +3,0.38276426012516024,0.17101092809535148,0.2309,0.4713,2441.5769 +4,0.37889987049102786,0.16907357678633791,0.234,0.4698,2429.8025 +5,0.38810756022930143,0.17501912605490155,0.2231,0.4785,2454.1975 +6,0.39080416233539583,0.17717354737975935,0.2144,0.4881,2474.9877 +7,0.3901199711084366,0.17585700412516944,0.2175,0.4822,2468.5354 +8,0.3919002595901489,0.17764789551446605,0.2199,0.4943,2473.9942 +9,0.3891452115058899,0.17524150218843196,0.2261,0.4805,2465.7868 +10,0.3778411381483078,0.16916223508315406,0.2448,0.4685,2420.3297 +11,0.38382808911800387,0.173042502660739,0.231,0.4776,2445.1971 +12,0.393414963555336,0.17935188210678957,0.2183,0.4973,2477.7828 +13,0.3827772773742676,0.1714917608723968,0.2283,0.4719,2439.5687 +14,0.3884154819726944,0.17628573245660303,0.2258,0.4883,2456.8101 +15,0.3896272622346878,0.17733402100157766,0.2248,0.4841,2464.0664 +16,0.3800558346748352,0.16997281355540111,0.2384,0.4665,2429.8602 +17,0.3824172591686249,0.17210689378731772,0.2302,0.4822,2438.3049 +18,0.3831031534433365,0.1730696405608719,0.2347,0.4856,2440.3804 +19,0.39194216394424436,0.17822110634675942,0.2192,0.4934,2475.0984 +20,0.38300533754825594,0.1718088712039852,0.2301,0.4742,2446.8943 +21,0.38635588734149934,0.17515352894803063,0.2285,0.4896,2451.885 +22,0.38496119449138644,0.17336557425350185,0.2313,0.4785,2444.5046 +23,0.3822538564920425,0.1711141334889149,0.2304,0.4676,2437.2043 +24,0.38509644429683687,0.17270518434789964,0.2256,0.4692,2450.8398 +25,0.38163718008995057,0.17154798201548616,0.235,0.4699,2435.4748 +26,0.38090165088176725,0.1703730066575783,0.2359,0.4671,2434.1585 +27,0.3853690965414047,0.17453206293300194,0.225,0.4805,2448.6278 +28,0.3929485021829605,0.1785023927662828,0.2173,0.4916,2476.1413 +29,0.384112935590744,0.17348476430089607,0.2296,0.4801,2445.755 +30,0.3837295912504196,0.17260824086737675,0.233,0.4752,2444.0141 +31,0.3914931748867035,0.17791218276690798,0.2183,0.4848,2474.2304 +32,0.3814270433425903,0.17066656796610072,0.2304,0.4708,2439.4017 +33,0.3849467751979828,0.17293324255772383,0.2297,0.4756,2443.9381 +34,0.38393075883388517,0.17247003359140123,0.2311,0.4691,2446.1886 +35,0.39293023250103,0.17917135596261397,0.2143,0.489,2476.8423 +36,0.38662111690044404,0.17438773006536304,0.2229,0.4887,2454.0411 +37,0.38717447729110716,0.17514576484448027,0.224,0.4897,2452.8418 +38,0.3839844996452332,0.17305895462929952,0.2305,0.4724,2441.5501 +39,0.3935371299982071,0.1786524773543671,0.2158,0.4892,2477.9077 +40,0.3966422028064728,0.18074105782898064,0.2129,0.5004,2487.8714 +41,0.38750819134712217,0.17458786694912296,0.2271,0.4801,2458.3918 +42,0.3809443775892258,0.1704821857920429,0.2366,0.4675,2434.739 +43,0.386136208820343,0.1744005926344971,0.2252,0.4853,2453.0588 +44,0.38627281477451325,0.17448658033223746,0.2299,0.4819,2454.2501 +45,0.3885447943210602,0.17571225244191324,0.2218,0.4765,2459.8215 +46,0.389940181684494,0.17707604332232232,0.2197,0.4939,2464.5979 +47,0.3920663202285767,0.17870797288866747,0.2229,0.4951,2468.8966 +48,0.3912679073572159,0.17742459347411932,0.2133,0.4888,2472.148 +49,0.38609588129520417,0.17444563625997334,0.2257,0.4787,2449.1199 +50,0.37921337442398073,0.16941072496142048,0.2277,0.4728,2433.8976 +51,0.38881911787986756,0.17495666995955275,0.2217,0.4735,2465.627 +52,0.3893852979660034,0.1763733791347805,0.221,0.4863,2462.8033 +53,0.38971355361938476,0.1766329160505375,0.2191,0.4933,2469.2144 +54,0.38879773001670836,0.17601537011926996,0.2236,0.4844,2465.1004 +55,0.38783985080718997,0.17462535190094955,0.217,0.4892,2463.9593 +56,0.3892549818992615,0.1758077684021007,0.2222,0.4865,2464.7548 +57,0.379787667632103,0.17034179171231667,0.2418,0.4706,2424.2898 +58,0.38835344500541685,0.1750534305758684,0.227,0.4878,2461.1311 +59,0.38085536150932314,0.1702556470392969,0.2282,0.468,2434.407 +60,0.38646753487586977,0.174300986584886,0.2249,0.4829,2453.8432 +61,0.38114520580768585,0.17102566881155745,0.2322,0.4781,2433.2864 +62,0.3896475073814392,0.17706487901083628,0.2166,0.4913,2468.2284 +63,0.39853044881820676,0.1834986830459583,0.2125,0.502,2491.5917 +64,0.3820251100540161,0.172955356944909,0.2332,0.4773,2434.6522 +65,0.3823707926273346,0.17172987779572962,0.2358,0.4729,2433.9775 +66,0.3786420954465866,0.1686729607855614,0.2311,0.4727,2427.6083 +67,0.388159983086586,0.17494789739219763,0.2187,0.4819,2461.1913 +68,0.38984504096508027,0.1773383849385718,0.2174,0.4887,2460.0639 +69,0.38219836559295656,0.1711184538542263,0.2283,0.4701,2444.4057 +70,0.3842575834751129,0.17297856186051522,0.2287,0.478,2445.5991 +71,0.3882358383178711,0.17582552642671903,0.2228,0.4853,2462.35 +72,0.39258045148849485,0.17858024455883498,0.2215,0.4929,2474.8002 +73,0.3942493062734604,0.1800402118221008,0.2135,0.4967,2477.5608 +74,0.39297856743335724,0.17897851622786834,0.2161,0.4944,2472.0552 +75,0.3813617069482803,0.17064684565847535,0.2336,0.4663,2434.6935 +76,0.3970354649066925,0.1815034067223548,0.2094,0.5028,2491.3899 +77,0.3886032162666321,0.17497441640048952,0.2226,0.4879,2462.1558 +78,0.38273349957466124,0.17245940546231617,0.2347,0.4772,2438.6332 +79,0.3828676018714905,0.1717447523612289,0.2343,0.4693,2437.3465 +80,0.39079437818527224,0.17676229974399227,0.2185,0.4853,2469.718 +81,0.37946719527244566,0.16965695401602315,0.2352,0.4698,2432.6536 +82,0.396382675075531,0.18042171589811343,0.2113,0.4902,2493.6261 +83,0.39063064794540403,0.17708744058771506,0.2185,0.4912,2468.3433 +84,0.37956656215190887,0.16949406653446306,0.2381,0.4668,2428.3462 +85,0.38636764430999754,0.17435294723052594,0.2263,0.4845,2454.4961 +86,0.3801991766214371,0.1695291886019791,0.233,0.4673,2433.9789 +87,0.3870785474538803,0.17521864634890008,0.2271,0.4741,2453.2082 +88,0.3826463446378708,0.17145137149472628,0.2303,0.4768,2445.4747 +89,0.3785499797105789,0.16916576868945654,0.2355,0.4711,2432.1572 +90,0.38667800579071043,0.17469724994204128,0.2245,0.4845,2454.3117 +91,0.38760413892269135,0.1747396579995222,0.2175,0.4848,2459.5832 +92,0.38062802443504334,0.16998027309210528,0.2288,0.4679,2437.2668 +93,0.38693307540416716,0.17393327673085854,0.2135,0.4921,2461.2736 +94,0.3862684286594391,0.1745154999583783,0.2268,0.4799,2454.2035 +95,0.3917425381183624,0.1779843339192419,0.2117,0.4944,2468.6022 +96,0.38873274846076966,0.17522822673497,0.2144,0.4916,2462.7869 +97,0.3797543156385422,0.1697581365928646,0.231,0.4699,2433.035 +98,0.38054836611747744,0.16995336145160905,0.2353,0.4648,2432.7998 +99,0.3886143469810486,0.17518691329106528,0.2205,0.4865,2466.7853 +100,0.3829403852462769,0.17155193657165085,0.2328,0.4734,2443.419 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/summary.csv" new file mode 100644 index 000000000..37e8ca168 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/007/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994007,20000,1000000,0.38642943035292626,0.17430493490312488,0.8567038261187521,1582.814946725586,0.225445,0.481292,0.030401999999999985,2453.902115,100,493.6842770576477 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/blocks.csv" new file mode 100644 index 000000000..8e91032a3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3810566269636154,0.1711020630560396,0.2365,0.4742,2434.42 +2,0.38806899411678314,0.17509746526663494,0.2187,0.4866,2461.1979 +3,0.38330172882080077,0.17229117960110726,0.2295,0.4749,2440.8846 +4,0.39422562422752383,0.17997215155992366,0.2114,0.4978,2481.9224 +5,0.38870785541534425,0.17587914190164114,0.2155,0.4843,2463.5164 +6,0.3895823833227158,0.17645856739911564,0.224,0.4827,2462.4891 +7,0.3806204997062683,0.17143074112211706,0.2357,0.4718,2430.743 +8,0.3822821958303452,0.1716695053576576,0.2336,0.472,2442.8457 +9,0.39343380665779115,0.17896474090481865,0.2128,0.4915,2478.4924 +10,0.38849264538288114,0.17578727875793573,0.2208,0.4941,2463.956 +11,0.3834597925901413,0.17160738307842005,0.2284,0.4768,2443.7001 +12,0.38356286120414734,0.1726748115330601,0.2311,0.4761,2440.9113 +13,0.3824800814628601,0.171109345442018,0.2258,0.4771,2440.5833 +14,0.39107312471866607,0.17704452324409836,0.2163,0.4877,2475.1846 +15,0.38292539932727815,0.17232249140854639,0.2271,0.486,2442.4178 +16,0.39664838500022886,0.18168084641604473,0.2114,0.5015,2487.9016 +17,0.37924317529201507,0.17023147324757487,0.2374,0.4687,2430.136 +18,0.37792995703220367,0.16845956020335728,0.2429,0.4671,2422.4104 +19,0.38519615375995636,0.1730888420323695,0.2272,0.4787,2450.0681 +20,0.3870349957704544,0.1751482192383735,0.2242,0.4828,2460.6356 +21,0.37130822353363035,0.16423797047811073,0.2517,0.4553,2402.6864 +22,0.38613743290901187,0.1734346148314726,0.2291,0.477,2454.0737 +23,0.3879852809906006,0.17508328519831964,0.2247,0.4707,2456.0617 +24,0.3889241438150406,0.17648929492645257,0.2164,0.4869,2464.6254 +25,0.3910086237192154,0.1775088274207852,0.2189,0.4829,2466.8504 +26,0.38774435410499575,0.17527224356946225,0.227,0.4846,2459.8314 +27,0.38662262156009675,0.17456723778132505,0.2239,0.4775,2456.1163 +28,0.3810560378313065,0.17000333977557175,0.2285,0.4737,2435.9353 +29,0.3831278734922409,0.17259198936071482,0.2306,0.473,2441.4685 +30,0.3898395944833756,0.1765547618640317,0.2201,0.4853,2465.7907 +31,0.3851877887010574,0.1732279682533407,0.2256,0.4808,2448.9329 +32,0.3823771313905716,0.17147472990933715,0.231,0.4757,2439.2178 +33,0.3773933472394943,0.16755804025519766,0.2392,0.4647,2422.5936 +34,0.3832626800775528,0.1714800548299463,0.2325,0.4741,2439.5278 +35,0.38328344869613645,0.17230428530197175,0.2279,0.4709,2439.659 +36,0.3837802572488785,0.17298241251308677,0.2293,0.482,2444.5911 +37,0.39069626462459567,0.17737353587354168,0.2253,0.4872,2464.9858 +38,0.39418621304035184,0.17976719972931784,0.2158,0.4948,2482.4813 +39,0.37617494947910307,0.16737158710758362,0.2402,0.4623,2417.535 +40,0.376203040599823,0.1676153045451639,0.2509,0.4559,2414.0832 +41,0.3896337686061859,0.17674532617414843,0.2182,0.4907,2461.5863 +42,0.38573027732372284,0.1740206947581721,0.2255,0.4843,2450.7984 +43,0.38277917592525484,0.17110355853808068,0.2271,0.4732,2441.4187 +44,0.39390198962688444,0.1796811738732122,0.2181,0.4912,2477.2219 +45,0.3905504498243332,0.17782723821335966,0.2237,0.4922,2459.8183 +46,0.3935010410308838,0.1798552979995634,0.2142,0.5016,2474.0994 +47,0.39009943821430204,0.17648549226101992,0.2227,0.4839,2464.7671 +48,0.3808312440395355,0.16954667215946465,0.238,0.4687,2433.4534 +49,0.39007800645828244,0.17698325047088562,0.2249,0.4821,2462.5607 +50,0.38383067548274996,0.17254018872925392,0.2318,0.479,2446.3661 +51,0.3810680656433105,0.16978757130043493,0.2333,0.468,2433.7515 +52,0.3858367527961731,0.17367083690822796,0.2212,0.4836,2453.4654 +53,0.38358892753124235,0.172859203868827,0.2346,0.4775,2444.1319 +54,0.38852629170417785,0.1757335018454137,0.2251,0.4816,2462.4947 +55,0.3861264759540558,0.17474891422846828,0.2255,0.4817,2450.8318 +56,0.391068784570694,0.1773306705964703,0.2094,0.4985,2470.0069 +57,0.38451663448810575,0.17216863489666243,0.2202,0.4817,2452.3047 +58,0.3945072772026062,0.1799562269502055,0.2089,0.4972,2481.5315 +59,0.37914478678703306,0.16900596708540105,0.2359,0.4667,2426.7475 +60,0.37655166442394256,0.16641244624262266,0.2371,0.4614,2423.3488 +61,0.3817214839220047,0.17117946521118196,0.2336,0.4719,2442.4451 +62,0.38998148448467257,0.1768792930805255,0.2181,0.4859,2464.4175 +63,0.38746580355167387,0.17516897341199802,0.2242,0.4836,2461.3069 +64,0.38299046726226804,0.17224828672743542,0.2306,0.478,2441.8389 +65,0.38159005718231204,0.17106164397568047,0.2364,0.4708,2432.7458 +66,0.3976748335123062,0.18325268874735728,0.2071,0.5046,2492.3496 +67,0.3822219698190689,0.17195891147086798,0.2286,0.4784,2434.016 +68,0.39141503984928133,0.17850123616466307,0.2188,0.4878,2466.6821 +69,0.3884645109653473,0.1755321258155907,0.2218,0.476,2458.9496 +70,0.387056090092659,0.17438808304098571,0.2268,0.4807,2453.7616 +71,0.38425370025634764,0.17331864538981204,0.2262,0.4702,2446.1737 +72,0.3861304545164108,0.17503296658922418,0.2244,0.4755,2450.5195 +73,0.38730666580200196,0.17509580276603837,0.2274,0.4821,2455.2119 +74,0.3868964613199234,0.1744125917994697,0.225,0.4831,2460.1568 +75,0.3802660883426666,0.16998762879154916,0.2376,0.4631,2429.5329 +76,0.38650492615699766,0.17388204559179984,0.2302,0.4783,2456.2554 +77,0.39092015051841733,0.1775299243925684,0.2146,0.4947,2473.4914 +78,0.38227363193035124,0.17067723680894484,0.2263,0.4658,2440.115 +79,0.3868539587020874,0.17547779915141773,0.2289,0.4841,2451.6678 +80,0.3815960523605347,0.17131840349272834,0.2328,0.4771,2434.2733 +81,0.38089083988666533,0.1701915716968202,0.235,0.4684,2435.6862 +82,0.39222012679576873,0.1778597214785033,0.214,0.4904,2476.0122 +83,0.38113974871635437,0.17100694181723983,0.2355,0.4764,2433.9136 +84,0.38106537930965423,0.17102828151540242,0.2341,0.4703,2432.4426 +85,0.38730424156188964,0.17395475538601474,0.221,0.4785,2455.7096 +86,0.3873493344068527,0.17497160375611104,0.223,0.4811,2456.4474 +87,0.3858485319852829,0.174072593682023,0.2316,0.4826,2449.3441 +88,0.3828381732225418,0.17152069396395,0.2286,0.4706,2439.6852 +89,0.3864852272748947,0.17394068651559683,0.2313,0.4784,2451.3885 +90,0.39170925314426425,0.17675739115899058,0.213,0.4913,2474.4052 +91,0.39478050875663756,0.17954493697381968,0.2153,0.4918,2483.6117 +92,0.3850747467041016,0.1738521606308181,0.228,0.4856,2444.6904 +93,0.3862152663946152,0.1736099744953761,0.229,0.479,2457.6723 +94,0.3917815350294113,0.17800493794986627,0.2216,0.4872,2469.2126 +95,0.3854042062997818,0.17393354646184284,0.2309,0.4771,2453.8993 +96,0.3892868533372879,0.17544625306863992,0.2242,0.4879,2463.8929 +97,0.38609394640922545,0.17506878118780358,0.2263,0.4847,2453.1545 +98,0.38857600891590116,0.1761419476651715,0.2235,0.4929,2459.2147 +99,0.3849220013141632,0.1738773283426293,0.2323,0.4707,2446.0708 +100,0.392914976978302,0.1785647751357226,0.2169,0.4879,2475.4728 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/summary.csv" new file mode 100644 index 000000000..832b8af1a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/008/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +64,0.4406867935097715,994008,20000,1000000,0.386029820587635,0.17405634516697663,0.856153920961422,1581.178145126953,0.226288,0.48017,0.027594000000000007,2452.00006,100,509.29068207740784 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/blocks.csv" new file mode 100644 index 000000000..f60e00c1c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.33227034881711004,0.1275052062373611,0.2115,0.4928,9098.4047 +2,0.32438680797666314,0.12234095088850204,0.2276,0.4751,9010.1493 +3,0.32557273396253583,0.1233896066721892,0.2275,0.4829,9016.6414 +4,0.3207077105179429,0.12110310646966323,0.2366,0.4741,8921.8271 +5,0.32390237179249526,0.12241710467383546,0.23,0.4781,8978.7058 +6,0.33233866079300645,0.1275334091995917,0.2068,0.4955,9118.0471 +7,0.3216904877126217,0.12121944334046034,0.229,0.4708,8958.6333 +8,0.32935322515517473,0.12504136952247127,0.2167,0.4855,9087.6537 +9,0.3246347982600331,0.12245359727369623,0.2269,0.4827,8997.7449 +10,0.319278313049674,0.11981250736056542,0.2365,0.4723,8931.346 +11,0.3178741568520665,0.1195062318639038,0.2401,0.4605,8891.3862 +12,0.3204526958912611,0.12071552266730426,0.238,0.4677,8932.6486 +13,0.32060888357907535,0.12001673507862681,0.2268,0.4803,8940.8065 +14,0.3207979368045926,0.12139833032595364,0.2386,0.4683,8919.375 +15,0.32561016695201395,0.12407992275818983,0.2234,0.4782,9012.0733 +16,0.324098883125186,0.12262178503023731,0.2218,0.4817,9002.6549 +17,0.3281967018172145,0.12432289390584944,0.2178,0.4864,9045.9613 +18,0.33093002168089153,0.12655288335998827,0.2099,0.5005,9122.0329 +19,0.3244804462060332,0.12315265598043579,0.227,0.4762,8994.1469 +20,0.32906125732660296,0.1252450795222603,0.2186,0.4875,9060.1304 +21,0.321870810893178,0.1212734813299542,0.2292,0.4729,8951.4038 +22,0.3242332370236516,0.12316618409120463,0.2273,0.4863,8998.5683 +23,0.33013393834233284,0.12693687938630505,0.2228,0.4897,9070.5623 +24,0.32457518361508847,0.12247570284287843,0.2272,0.4776,8995.023 +25,0.31959304062873123,0.12017380495782182,0.2376,0.4694,8904.519 +26,0.3204540279045701,0.12019709192608084,0.234,0.4677,8938.8601 +27,0.31628483912199734,0.11869138175994076,0.2461,0.4576,8877.9114 +28,0.3246685670495033,0.12327513906059617,0.2268,0.4829,8991.2794 +29,0.3277349078401923,0.12547613270258834,0.2216,0.4923,9032.0384 +30,0.33188498110175135,0.1276071406578936,0.2143,0.5045,9113.5741 +31,0.31632555660158396,0.11870698087005727,0.2449,0.4613,8856.2632 +32,0.3256086184248328,0.12367173080643165,0.2228,0.4852,8994.1401 +33,0.31864796157926323,0.12004639802791205,0.2439,0.4646,8888.2015 +34,0.33252473986446857,0.1279426001542856,0.2146,0.4992,9107.1668 +35,0.3292571397393942,0.1262382054929618,0.2222,0.4955,9053.0291 +36,0.325901314227283,0.12288485960895075,0.2233,0.4768,9021.1386 +37,0.32495031561255455,0.12345670140511363,0.2286,0.475,9001.2124 +38,0.32006414415985346,0.11999853486083088,0.2351,0.4674,8941.3852 +39,0.32450072861611845,0.12319895297726312,0.2288,0.4829,8982.3902 +40,0.323142727124691,0.12163414896529334,0.2211,0.4741,8985.4719 +41,0.3194556112214923,0.1206301157629084,0.2432,0.4736,8913.5454 +42,0.3203100248575211,0.12099254186105968,0.2346,0.4723,8940.0393 +43,0.3276454813838005,0.12429641448203761,0.2206,0.4839,9041.1649 +44,0.32238075454235077,0.12214280961397646,0.2328,0.4739,8941.5383 +45,0.3195259146168828,0.12061712061457122,0.2395,0.4666,8886.1247 +46,0.32706169349700215,0.1242495372665976,0.2197,0.4919,9042.8324 +47,0.32897552392333745,0.12548143275254053,0.2167,0.4837,9052.2099 +48,0.32592477854788304,0.12370154158479968,0.2297,0.4821,9033.2327 +49,0.32195300356596707,0.12145452258958984,0.2281,0.4787,8967.7622 +50,0.3285356023445725,0.12525060012542102,0.2172,0.4884,9062.2273 +51,0.3256412102043629,0.12371956757463724,0.2212,0.4827,9013.0833 +52,0.32914463804960253,0.12586653602013412,0.216,0.4874,9077.8444 +53,0.32461938963383435,0.123054771133848,0.2272,0.48,9014.9012 +54,0.330229708597064,0.12644620342321508,0.2224,0.4866,9067.353 +55,0.3198019588112831,0.1200002356115875,0.2327,0.4779,8930.0782 +56,0.32522073214799163,0.12339070933573919,0.2243,0.4835,9008.2947 +57,0.3286240261092782,0.12596828500896973,0.2222,0.494,9039.2321 +58,0.3248601819396019,0.12337396565496983,0.2281,0.4855,8998.1541 +59,0.3334107529208064,0.12801755185536287,0.2151,0.4948,9143.0702 +60,0.3184005100876093,0.11882211314731589,0.2358,0.4714,8901.9347 +61,0.3267157465875149,0.12437991701231776,0.222,0.4928,9020.4381 +62,0.3261514822661877,0.12363061955789194,0.2175,0.4876,9024.5421 +63,0.3274615441814065,0.12497463944261027,0.2175,0.4823,9032.3414 +64,0.3240628858461976,0.12261018850341283,0.2216,0.4794,8996.2783 +65,0.3213989367827773,0.12106688651477183,0.2342,0.4667,8943.829 +66,0.3287446175143123,0.1251690885352662,0.2194,0.4901,9056.8863 +67,0.32474385888576507,0.12258657441165198,0.2238,0.4877,9007.2456 +68,0.3247698496982455,0.12267698654557462,0.229,0.4806,9011.2383 +69,0.3265638492837548,0.1239972162975303,0.2148,0.4846,9043.1759 +70,0.32432377976030113,0.12261017600487253,0.2237,0.486,9006.4022 +71,0.32379687519967554,0.12271211855708646,0.2294,0.479,8977.9921 +72,0.32687622213512657,0.12406719776767654,0.2186,0.4883,9049.4122 +73,0.3278078823149204,0.1250028102890011,0.2169,0.4915,9060.725 +74,0.32588861258924007,0.1237086149211708,0.2222,0.4779,9016.6336 +75,0.3215473412275314,0.12167429912498924,0.2237,0.4845,8955.0155 +76,0.3280437875717878,0.12478382363818641,0.2208,0.4812,9055.5485 +77,0.3223096590057015,0.1215667489360976,0.2308,0.4776,8971.4465 +78,0.3252006320476532,0.1236776497819337,0.2235,0.4788,9004.6229 +79,0.32527309544682503,0.12326576639864109,0.2173,0.4912,9010.8568 +80,0.3258622281908989,0.12395056414324537,0.2186,0.4891,9021.5944 +81,0.3202781696781516,0.12006325015852515,0.2342,0.4716,8924.2115 +82,0.32654583982229235,0.12454733735911869,0.2295,0.4835,9027.5577 +83,0.31829976245313885,0.11972257366208287,0.2388,0.4652,8892.7568 +84,0.3314015447244048,0.12660139620055683,0.2081,0.4939,9090.6051 +85,0.33456752073317764,0.12839980829756228,0.2017,0.5023,9160.274 +86,0.3288637462928891,0.12445549882017604,0.2121,0.4828,9063.9806 +87,0.31856311139911414,0.11945596770713235,0.2323,0.4694,8908.3162 +88,0.3277677838310599,0.12452370175902001,0.2173,0.4905,9046.4877 +89,0.3181751738637686,0.11896529454760639,0.2363,0.4715,8890.6797 +90,0.32826252205967904,0.12479297018534076,0.2176,0.4863,9049.2056 +91,0.31157095551341774,0.11569541308057987,0.2494,0.454,8788.7494 +92,0.3234589925140142,0.12297671051051093,0.2265,0.4847,8968.1666 +93,0.32394128712415693,0.12282512344182414,0.2279,0.4759,8966.1447 +94,0.3302787041261792,0.12612556361947147,0.2152,0.4995,9102.5832 +95,0.32561593697220087,0.12333410018261987,0.221,0.4823,9010.8062 +96,0.32291187865883114,0.12235038577303155,0.2392,0.4825,8956.3786 +97,0.33037319145947697,0.12650083486125704,0.2134,0.499,9114.2487 +98,0.32417215683311223,0.12262689917514376,0.2262,0.4739,8977.9858 +99,0.32223885486125947,0.12234131937456173,0.2307,0.4797,8959.9401 +100,0.32825068675726654,0.12471735779574289,0.2231,0.4886,9057.725 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/summary.csv" new file mode 100644 index 000000000..8ecc3ccf4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/009/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058001,20000,1000000,0.3248340559095889,0.12314090362330522,0.856881513566416,5322.081172022705,0.225562,0.481329,0.030204999999999982,9000.42159,100,2126.5307669639587 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/blocks.csv" new file mode 100644 index 000000000..01668546c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3235936684399843,0.12291930840422485,0.231,0.4767,8974.4759 +2,0.3255050247088075,0.12324753888201104,0.2277,0.4881,9016.2701 +3,0.32222935509085654,0.12131617961664265,0.2226,0.4768,8948.1545 +4,0.31758953572064635,0.11799727161822621,0.2376,0.461,8898.0941 +5,0.3291731500983238,0.1259329406653013,0.2174,0.4976,9060.1484 +6,0.32306260905116796,0.12110639090362117,0.2283,0.4769,8989.1832 +7,0.318644090873003,0.11938826891959398,0.2359,0.4685,8908.7862 +8,0.3221017772644758,0.12116357552285374,0.2272,0.479,8980.8447 +9,0.3254286404818296,0.12364064002965704,0.2297,0.4814,8993.8055 +10,0.3309716581195593,0.12686256412727112,0.2159,0.4935,9098.0401 +11,0.32276105286031964,0.12173419688049421,0.2257,0.4841,8973.8743 +12,0.3264883115828037,0.12400799480277158,0.2237,0.4801,9035.2499 +13,0.3260590753391385,0.12391234109007164,0.2297,0.482,8997.2037 +14,0.3246192577987909,0.12309677402696152,0.23,0.4831,8997.0492 +15,0.3351063951998949,0.1297012591075193,0.21,0.5035,9129.3854 +16,0.3265685326769948,0.1246369567768715,0.2289,0.4822,9013.0087 +17,0.3262396596223116,0.1243487388041128,0.2249,0.4823,9023.5451 +18,0.3342438609242439,0.12895717184401276,0.2065,0.5007,9134.3775 +19,0.3213092900171876,0.12031839621897077,0.225,0.4817,8970.1638 +20,0.3246927764743566,0.12302134124412469,0.2217,0.4819,9003.3921 +21,0.32586139264404773,0.12361630650797044,0.2245,0.4851,9029.1737 +22,0.3320459099456668,0.12670026106326215,0.2101,0.4911,9125.8597 +23,0.31981518286168575,0.11990191233834237,0.2288,0.472,8932.1404 +24,0.323462976449728,0.12228560041524529,0.2267,0.4784,8985.2185 +25,0.33199828628748657,0.12754610855318813,0.2171,0.4983,9094.9938 +26,0.32499398182481526,0.1229679982453143,0.2279,0.4733,9016.3252 +27,0.32020559826642275,0.12006319548812848,0.2316,0.4683,8925.9836 +28,0.324952168892324,0.12351159135345333,0.2316,0.4811,8998.5401 +29,0.32552012818455694,0.123228104062134,0.2241,0.4826,9011.2524 +30,0.324890338344872,0.12296223466332949,0.2229,0.482,9004.1958 +31,0.3239134553402662,0.12234918169169783,0.2262,0.4784,8999.9125 +32,0.31890444846004246,0.11983315687059384,0.2342,0.4637,8911.2973 +33,0.3201941089048982,0.12052185656406164,0.2359,0.4699,8934.626 +34,0.3207847989752889,0.1206197527423617,0.2343,0.4679,8937.9287 +35,0.32023076486736535,0.12055082086747607,0.2345,0.47,8922.1557 +36,0.3250820095270872,0.12355903282022739,0.2261,0.4793,8989.8675 +37,0.3227142048060894,0.12187169624257616,0.2331,0.4758,8949.3755 +38,0.32293879549354315,0.12184149293860641,0.2273,0.4784,8967.8281 +39,0.32341100507527587,0.1223804337930656,0.2316,0.4809,8991.4952 +40,0.33139168302565813,0.1268954369883349,0.2082,0.4883,9107.7537 +41,0.3261391773164272,0.12395370849136557,0.2205,0.4897,9024.5554 +42,0.33162169141173364,0.1274427741237179,0.2167,0.5019,9104.8239 +43,0.3220126258224249,0.12170226238045802,0.2306,0.4702,8940.3646 +44,0.32371454737633465,0.1223233116567067,0.2259,0.4774,8981.5167 +45,0.32599580817967655,0.12366234122023291,0.2211,0.487,9013.367 +46,0.3344694093286991,0.12835209599092004,0.2027,0.5053,9164.142 +47,0.3318862052127719,0.12732792467602325,0.2131,0.4958,9130.143 +48,0.32344570852965115,0.12218266424943418,0.2241,0.4845,8978.6251 +49,0.32660034376233815,0.12361249147194439,0.2185,0.4875,9033.7767 +50,0.31799542607814074,0.11952641997746612,0.2496,0.4581,8874.2369 +51,0.3183332102358341,0.11945103058488649,0.2411,0.4621,8884.3402 +52,0.325628937138617,0.12357804766286376,0.2268,0.4806,9006.6079 +53,0.3224329837560654,0.12098143493650973,0.2315,0.4671,8978.4294 +54,0.3255118260204792,0.12373124056824739,0.2154,0.4955,9031.4271 +55,0.32262283549010756,0.12200054309889703,0.2357,0.4779,8970.3468 +56,0.32541979812681676,0.12354711139849471,0.2251,0.4852,8998.5032 +57,0.3191001935064793,0.11976341054053459,0.2406,0.4615,8911.445 +58,0.32951531254649163,0.1257937330165219,0.2237,0.4859,9071.7786 +59,0.32215423636883495,0.12235428441613781,0.2338,0.4751,8943.6289 +60,0.3264133611276746,0.12388782077832239,0.2226,0.4814,9027.6165 +61,0.32564427120536565,0.12368043602797747,0.2219,0.4771,9005.4747 +62,0.32805522967875006,0.1251644874985007,0.2172,0.4845,9037.0581 +63,0.3246835227906704,0.12281233272444769,0.2225,0.4839,9016.3936 +64,0.3175397157117724,0.11926549281315661,0.2445,0.456,8869.069 +65,0.32303477640748024,0.12189478501992246,0.2246,0.4745,8984.9429 +66,0.3275702539101243,0.12528078164866593,0.2226,0.4954,9042.0833 +67,0.32662638083696366,0.12352138017383953,0.2183,0.4891,9046.5403 +68,0.3285237780481577,0.12550243238976327,0.2234,0.49,9036.0964 +69,0.33199085253328087,0.12775148709428255,0.2117,0.4973,9104.8007 +70,0.3183149973243475,0.11995429738921048,0.2409,0.4665,8887.9656 +71,0.3177554393664002,0.1193417496204916,0.2426,0.4609,8878.7346 +72,0.3175889179855585,0.11939858168132832,0.2491,0.461,8865.6449 +73,0.3279549871787429,0.124980711666179,0.2189,0.4856,9043.2192 +74,0.32331590811014177,0.12199312231146528,0.2304,0.4715,8986.0448 +75,0.3281197200715542,0.12517087353170506,0.2172,0.4851,9052.3951 +76,0.32298647785633805,0.12218087317715437,0.2308,0.4782,8972.0866 +77,0.31970978866666555,0.11953674384100622,0.2281,0.4627,8941.1621 +78,0.32092725625634194,0.12063287457849993,0.2306,0.4698,8942.2914 +79,0.31837431924343107,0.1195621824871054,0.2448,0.4657,8877.2705 +80,0.3231252875044942,0.12265486527249785,0.2331,0.4801,8946.2744 +81,0.33240880182087423,0.12756398426662804,0.2127,0.5007,9126.8495 +82,0.329567661242187,0.1259703975601417,0.2145,0.4963,9079.7079 +83,0.3249046016931534,0.12337413701259085,0.2299,0.4828,9007.3735 +84,0.32363860943466427,0.12279279762087089,0.2284,0.4857,8984.9058 +85,0.3240938265562057,0.12291214906130495,0.2356,0.4844,8975.4553 +86,0.32878348047584294,0.12507869416996675,0.2154,0.4812,9064.5864 +87,0.3276832271501422,0.1247367659257326,0.221,0.4862,9038.1392 +88,0.32790240234434603,0.12451527276570605,0.2194,0.4915,9046.2841 +89,0.3299329957380891,0.12605589672044165,0.2131,0.4881,9074.2268 +90,0.32041743576824666,0.12115421847689127,0.2294,0.478,8930.1768 +91,0.3263374179363251,0.12377812909122836,0.2255,0.4862,9019.5045 +92,0.33196308864206076,0.127073650478909,0.2107,0.4899,9118.6373 +93,0.3297139320358634,0.12560747020282345,0.2119,0.4916,9073.8698 +94,0.3185142188727856,0.11935189247895166,0.2378,0.463,8913.9929 +95,0.32203447709828614,0.12196219140724475,0.2363,0.4771,8950.8267 +96,0.3255254059255123,0.12261754569011628,0.2184,0.4713,9021.3371 +97,0.32826817555725574,0.1254032826111876,0.2177,0.4923,9056.1367 +98,0.32561607478410004,0.1237703157821918,0.23,0.4829,8991.2991 +99,0.3202945561915636,0.1208272928418181,0.2385,0.4636,8907.6638 +100,0.32787141209989784,0.12533153837389632,0.2198,0.4921,9068.5331 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/summary.csv" new file mode 100644 index 000000000..37ea6d3dc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/010/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058002,20000,1000000,0.324880262799114,0.12315848788420208,0.8570029315044897,5322.838225700683,0.225944,0.480754,0.028866000000000003,9000.357052,100,2166.874041080475 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/blocks.csv" new file mode 100644 index 000000000..28f12bd8f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.32489685528576373,0.12344861154603311,0.226,0.4756,8997.5362 +2,0.3209898985788226,0.1205222281342591,0.2279,0.4683,8952.1291 +3,0.3266710788011551,0.12472721001159011,0.2249,0.4864,9024.007 +4,0.3229808412402868,0.12229819785914606,0.2339,0.477,8965.5234 +5,0.3179737748250365,0.11963540410837327,0.2324,0.4699,8897.0409 +6,0.3203230500161648,0.1205386128902755,0.243,0.4596,8907.6231 +7,0.32824049624800683,0.1252223721184062,0.2187,0.4855,9071.5139 +8,0.32395050366818906,0.12281074994483601,0.2311,0.4819,8981.0912 +9,0.3261313728228211,0.12416477446312242,0.2203,0.493,9041.3727 +10,0.32055959399193523,0.12044407865389667,0.2319,0.4686,8948.8675 +11,0.3226434604123235,0.12201738465106618,0.2371,0.4731,8946.2508 +12,0.32261747847646477,0.12223253072590351,0.229,0.4858,8974.1317 +13,0.3226444608747959,0.1215841629022228,0.2304,0.4746,8968.884 +14,0.3204521569624543,0.12031294904791448,0.2377,0.4627,8936.5339 +15,0.32350502352118493,0.12290845631703719,0.226,0.4836,8978.3673 +16,0.3235818709298968,0.12267780553039,0.2257,0.4741,8974.7867 +17,0.32652207354456186,0.124339729780386,0.2244,0.4881,9023.0326 +18,0.3195835740596056,0.12013354161796223,0.2347,0.4697,8902.5337 +19,0.3278268971681595,0.12503427533251,0.2152,0.4939,9043.9558 +20,0.3279418500944972,0.12522219197968354,0.2188,0.4981,9044.0017 +21,0.32288895232081416,0.12161761454848181,0.2253,0.4767,8970.4636 +22,0.32312849840819835,0.12230163079480644,0.2281,0.4725,8977.2326 +23,0.3268995859846473,0.12336624651002183,0.2176,0.4815,9042.1805 +24,0.31835977554768324,0.12022735832152369,0.2424,0.4696,8879.2007 +25,0.3198632274463773,0.12033959236261005,0.2358,0.4645,8899.6727 +26,0.317553749935329,0.11846189693991419,0.2343,0.4642,8895.4029 +27,0.3205244454011321,0.12068576453704916,0.23,0.4725,8929.7022 +28,0.3198417587757111,0.12039848785403619,0.233,0.4714,8911.7036 +29,0.3311404947817326,0.12699871751716063,0.2068,0.498,9109.392 +30,0.329362943919003,0.12566086723711015,0.2225,0.4889,9068.0842 +31,0.3121790228053927,0.11568767990903225,0.2533,0.4442,8787.8656 +32,0.329532557579875,0.1258595185027307,0.2138,0.4936,9086.4561 +33,0.31949276392608883,0.12004351696391627,0.2337,0.4682,8936.6294 +34,0.32827771204560996,0.12553486657936855,0.2177,0.49,9066.271 +35,0.32735063133239745,0.12487774739826779,0.2267,0.4847,9039.5598 +36,0.3292906938567758,0.1263858078092755,0.2147,0.5027,9066.2483 +37,0.3264446809411049,0.12430037526834613,0.222,0.4839,9040.8169 +38,0.32806030753403903,0.12450600861697549,0.219,0.4872,9063.9234 +39,0.3232427025169134,0.12202085611597158,0.2282,0.4803,8982.9588 +40,0.32447504208087924,0.12365958305472793,0.2316,0.4792,8991.3817 +41,0.3270838381662965,0.12476994812125158,0.2234,0.4926,9033.8907 +42,0.3264865591973066,0.12421188411452072,0.2137,0.4887,9043.1649 +43,0.33018902403116224,0.1265132897871798,0.2146,0.4914,9082.4562 +44,0.329787636436522,0.12603592633689015,0.2272,0.4885,9062.5847 +45,0.3233802807852626,0.12238700404317819,0.2313,0.4791,8981.3731 +46,0.32621919738203287,0.12428370459681992,0.2266,0.4811,9011.868 +47,0.3262127941548824,0.12384670805273486,0.2222,0.4803,9017.0808 +48,0.3215287431240082,0.12088161597412245,0.2314,0.478,8947.8549 +49,0.32401441672593356,0.1230357468519337,0.2208,0.4884,8979.4624 +50,0.3295237058982253,0.12558915038274082,0.2183,0.5009,9073.2083 +51,0.32961045424044133,0.1254804532349207,0.2133,0.4954,9058.2885 +52,0.3226784930303693,0.12156219621665883,0.2276,0.4726,8968.9715 +53,0.32632586023658516,0.12341078063857171,0.2174,0.4786,9038.3878 +54,0.32464759911894797,0.1228388853690999,0.2262,0.4804,8995.8988 +55,0.3252550822839141,0.12322314770685498,0.2203,0.4843,9010.4469 +56,0.32256973886340856,0.12246458377628905,0.2415,0.4749,8946.1556 +57,0.32490864492207766,0.12353548823391061,0.2235,0.4816,8994.4149 +58,0.3286329611092806,0.1257490167719872,0.2213,0.491,9047.3978 +59,0.3197983470842242,0.11983084494825832,0.232,0.4703,8946.7074 +60,0.32883652269691227,0.12487171460450874,0.2104,0.4886,9075.9735 +61,0.3248976165443659,0.12385004442389604,0.228,0.4792,8999.5629 +62,0.3277727299615741,0.12552946997707035,0.221,0.4894,9033.3206 +63,0.32605781859755517,0.12289326764723735,0.2162,0.4765,9038.3767 +64,0.32153762972801925,0.12144040552930453,0.2359,0.4636,8939.1659 +65,0.3215017171919346,0.12124027049636664,0.2364,0.4692,8945.3198 +66,0.31602164843082425,0.1176294961381391,0.2415,0.4511,8846.203 +67,0.32557086455971,0.12411345245343375,0.2261,0.4925,9004.4233 +68,0.3291068606734276,0.1255194757636248,0.2197,0.4888,9064.115 +69,0.3122005894109607,0.11509143414404839,0.2455,0.4507,8810.8255 +70,0.3171559278264642,0.11925459546409833,0.2473,0.4683,8873.8066 +71,0.321824942573905,0.12166187291194756,0.2328,0.4749,8942.5259 +72,0.3265649621680379,0.12437486532440739,0.2233,0.4894,9021.7938 +73,0.32795039748698473,0.12439271080939483,0.2136,0.4833,9036.1188 +74,0.32099336433112624,0.12106466989155885,0.2285,0.4826,8946.2005 +75,0.32863856093138455,0.12537697312488583,0.21,0.5006,9078.3096 +76,0.32793768717348576,0.12480650973385989,0.2165,0.4882,9051.9358 +77,0.3230368635997176,0.12239902253233545,0.2347,0.4714,8955.776 +78,0.3226646693646908,0.12194203326478642,0.2237,0.4762,8975.1689 +79,0.32427076619267464,0.12254179288871891,0.2259,0.479,9009.0504 +80,0.32238502668440344,0.12207810906756958,0.2296,0.4722,8943.9624 +81,0.3213392742052674,0.12091243575615372,0.2283,0.4748,8961.3766 +82,0.3218904643714428,0.12149417589138034,0.2321,0.4751,8938.4251 +83,0.3196861425817013,0.12051694535087358,0.2362,0.4705,8916.367 +84,0.33339931208491325,0.1277151211147771,0.2051,0.4993,9151.1755 +85,0.32482553665190933,0.12352629356471294,0.2313,0.4835,8977.2273 +86,0.32255768763273956,0.12208882032304708,0.2389,0.4672,8952.24 +87,0.323500770662725,0.12251549993387252,0.2268,0.4745,8977.9718 +88,0.3227655527204275,0.1226585449732941,0.2255,0.4816,8973.4748 +89,0.3176168681502342,0.11864159602653988,0.2408,0.4564,8870.5338 +90,0.3238119786813855,0.12234004568260153,0.2247,0.4785,8989.933 +91,0.3269153860375285,0.12467945593030036,0.2219,0.4865,9032.5991 +92,0.32527725000977514,0.12348879645943692,0.221,0.485,9012.6662 +93,0.32240351906865833,0.12163636711756882,0.2267,0.4736,8959.2449 +94,0.3276846682444215,0.1248073143588543,0.2259,0.4853,9048.1363 +95,0.3203044181913137,0.12038978430373044,0.2384,0.4705,8935.0381 +96,0.32971895687133074,0.12536335835674778,0.2128,0.4957,9080.9154 +97,0.33155093275010583,0.12661631543765278,0.2089,0.4981,9114.9214 +98,0.3299792909115553,0.12665254394092337,0.2184,0.4936,9066.4141 +99,0.3325328510627151,0.127943796483936,0.2137,0.4982,9114.2851 +100,0.330669805586338,0.1269928960759003,0.2156,0.4909,9083.5632 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/summary.csv" new file mode 100644 index 000000000..bbf559f47 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/011/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058003,20000,1000000,0.3244215706805736,0.12295912072887759,0.8559703005271414,5315.323014030518,0.226178,0.480159,0.027803000000000022,8993.12386,100,2198.3723549842834 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/blocks.csv" new file mode 100644 index 000000000..dabd27ef0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3223415697425604,0.12189391367951505,0.2314,0.4775,8961.5998 +2,0.32637685012072326,0.12444821085723534,0.2241,0.4878,9006.1381 +3,0.32140256505459547,0.12188132262917518,0.2393,0.4755,8945.5567 +4,0.3293718791618943,0.12546033095497963,0.2208,0.488,9076.4274 +5,0.32168974009603263,0.12139595224943782,0.2276,0.4784,8958.348 +6,0.32040534950345756,0.12106268995212402,0.2392,0.4609,8942.8102 +7,0.3277669406875968,0.12492525269721719,0.2178,0.4918,9061.1976 +8,0.32201551518887284,0.12129194509119161,0.2257,0.4684,8962.8829 +9,0.32254657693058253,0.12189360119245407,0.2308,0.4801,8960.2867 +10,0.3230292501702905,0.12212057733164611,0.2279,0.4766,8960.843 +11,0.3260415981173515,0.1240400358978809,0.2221,0.4905,9032.7139 +12,0.3254841670110822,0.12332071677057146,0.2216,0.485,9022.0169 +13,0.3218350308820605,0.12171948093693181,0.2295,0.4722,8955.0542 +14,0.31568041526526214,0.11805474436793238,0.2454,0.4579,8853.4879 +15,0.3270378229111433,0.12377982064461926,0.2172,0.4909,9059.6326 +16,0.32578334975391626,0.12364010174102823,0.2245,0.481,9023.9451 +17,0.31949194614291193,0.12002663616367859,0.2336,0.4657,8906.8381 +18,0.324844399343431,0.12291677911710416,0.227,0.4837,8992.0858 +19,0.31900989183485506,0.11922647302476484,0.235,0.4675,8910.1087 +20,0.3213451476201415,0.12132030213720486,0.2335,0.4707,8931.3382 +21,0.32607522639632225,0.12330241281839877,0.2207,0.4871,9031.771 +22,0.32805468575805424,0.12532019927810034,0.223,0.4776,9043.2723 +23,0.3261458884701133,0.12411372622830812,0.2233,0.4835,9027.3429 +24,0.32910471396893265,0.12513714599606224,0.2093,0.4968,9070.067 +25,0.3227141852587461,0.12178745280686239,0.235,0.4785,8949.9906 +26,0.3246575816050172,0.12401242894288378,0.2318,0.4821,8992.9117 +27,0.32363653880506754,0.12183845811172873,0.2297,0.4744,8973.3185 +28,0.3269944177910686,0.12458276758235436,0.2258,0.4856,9031.7721 +29,0.32366918184608223,0.1231178897449454,0.2279,0.4727,8992.4825 +30,0.31734038881361487,0.11908446926917866,0.2434,0.4621,8878.1201 +31,0.32763532006889584,0.12430769728706842,0.2126,0.4863,9053.8831 +32,0.32399841410070657,0.12207821398956953,0.2211,0.4801,8994.7849 +33,0.32261962080448864,0.12204335431134532,0.234,0.4661,8967.9815 +34,0.32212100809663535,0.12159706143371954,0.2338,0.4782,8961.4771 +35,0.32153855920135976,0.12109735172269075,0.2277,0.4741,8961.211 +36,0.32649405097216366,0.1240766459314395,0.2234,0.4782,9039.1863 +37,0.3183521051988006,0.1199860715789944,0.2446,0.4675,8870.6861 +38,0.3262485730677843,0.12442680359754352,0.224,0.4892,9004.1844 +39,0.32480652529448273,0.12337775579366457,0.2288,0.485,8999.3207 +40,0.328483239659667,0.12537489267988122,0.2139,0.4918,9060.3509 +41,0.3253385275438428,0.12351175628107376,0.2263,0.4762,9026.0688 +42,0.322907880102098,0.12244677207698733,0.2312,0.4792,8963.5132 +43,0.33270620857030153,0.12850263048145089,0.2128,0.5103,9106.0971 +44,0.33031445658951997,0.12691478945790413,0.2178,0.488,9063.0041 +45,0.33288571747392415,0.12782786899892726,0.213,0.4939,9124.43 +46,0.32785233433991673,0.1245982562392243,0.2148,0.4837,9073.5764 +47,0.32603604126125574,0.12368266378393682,0.2305,0.4821,9008.0171 +48,0.32039299207776784,0.1204425407909799,0.2424,0.4705,8913.6224 +49,0.3211360987201333,0.12136410823437668,0.2437,0.474,8929.1153 +50,0.32510978529900314,0.12355717575668813,0.2241,0.4872,9010.0614 +51,0.32671844257116317,0.12410907582686109,0.2221,0.4906,9034.559 +52,0.3277909616351128,0.124567324013795,0.216,0.489,9063.8365 +53,0.33153472668081524,0.12758878322572076,0.2167,0.5048,9093.3659 +54,0.3230358320564032,0.12281865665088426,0.2357,0.4748,8966.3768 +55,0.32166754494160416,0.12139083265811694,0.2274,0.4772,8957.5865 +56,0.3255404640838504,0.12327611836324787,0.2195,0.4858,9008.5012 +57,0.32014690237641336,0.1201461068100305,0.2382,0.4734,8929.493 +58,0.32651506132036445,0.12387378688535278,0.218,0.493,9029.3005 +59,0.3255745346918702,0.12350996211343095,0.2186,0.493,9026.2136 +60,0.3233729885324836,0.12254977430154985,0.2311,0.4748,8972.9516 +61,0.3206053801670671,0.12169299740564236,0.2373,0.4758,8916.4544 +62,0.32427591700702907,0.1231740451039678,0.2307,0.4844,8993.0786 +63,0.3228063934281468,0.1219473520473334,0.2322,0.4823,8973.7405 +64,0.3245636949136853,0.12280482653830309,0.2251,0.4873,8995.7965 +65,0.3161052092522383,0.11865458912152117,0.2393,0.4658,8881.3717 +66,0.33191930033117534,0.12812267924003443,0.212,0.4942,9098.9556 +67,0.33076867105811836,0.12758732237164178,0.2219,0.4957,9068.4676 +68,0.3263246543616056,0.12389149742544932,0.2157,0.4786,9032.7321 +69,0.3340621571928263,0.1281942616041576,0.2088,0.5023,9152.8072 +70,0.3213058750092983,0.12116910173021202,0.2308,0.4793,8950.4574 +71,0.3207558631047607,0.12052688899382585,0.2335,0.475,8949.9408 +72,0.32407076560258863,0.1221518450441808,0.2242,0.4807,8996.9251 +73,0.32843352251648905,0.12548082989916418,0.2159,0.4908,9053.5666 +74,0.31622146884202956,0.1178537391188104,0.2453,0.4572,8856.0692 +75,0.3237815465942025,0.12158888397177665,0.2293,0.4784,8993.737 +76,0.3140865839868784,0.11656326128276769,0.253,0.4514,8823.9288 +77,0.3195360709905624,0.1194845624638024,0.2308,0.4752,8926.521 +78,0.3255851687788963,0.12339245507140659,0.2269,0.4837,9014.8525 +79,0.3289394137054682,0.1247334244171694,0.218,0.4931,9074.2331 +80,0.32611177639812233,0.12352519642379889,0.2204,0.4781,9008.0614 +81,0.333338709692657,0.12778674363389764,0.2082,0.4976,9128.5079 +82,0.3234312967345119,0.12224837919512399,0.2293,0.4775,8976.2313 +83,0.3234872701406479,0.12295185702291332,0.2306,0.4771,8961.3876 +84,0.32370683684200047,0.12212530907359574,0.2275,0.482,8982.4745 +85,0.3274325923278928,0.12393415898840562,0.2127,0.4919,9057.7657 +86,0.3279872316479683,0.12512115357399292,0.2244,0.4852,9041.7624 +87,0.3205130880236626,0.1206487060567522,0.2417,0.4654,8931.8152 +88,0.32648633078336714,0.12377060862738404,0.2099,0.4934,9047.6535 +89,0.3250970727369189,0.12381635943735946,0.2301,0.4761,8988.1897 +90,0.32063617626279595,0.12081255515286278,0.2333,0.4718,8929.4768 +91,0.3207081378102303,0.11993812553001103,0.2258,0.4643,8952.7554 +92,0.32097356101572516,0.12131773673006671,0.2322,0.4791,8940.2327 +93,0.3251187938705087,0.12291054447295019,0.2285,0.4781,8999.5092 +94,0.3215597040951252,0.12085222319604022,0.2274,0.476,8954.4361 +95,0.3262850831851363,0.12503624505999592,0.225,0.489,9014.7588 +96,0.32688215566426515,0.12431202887447716,0.2189,0.4894,9044.8014 +97,0.32086419305950403,0.1206457756684837,0.2324,0.468,8946.0278 +98,0.3272750226721168,0.12500550413121791,0.2204,0.4854,9040.2596 +99,0.3196120981261134,0.12065826505718387,0.2406,0.4584,8908.5018 +100,0.3232792294487357,0.12193244531381715,0.225,0.4772,8980.3867 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/summary.csv" new file mode 100644 index 000000000..c185c2d7f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/012/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058004,20000,1000000,0.3243570174896568,0.12290125153563466,0.8560325747722844,5314.265374550537,0.226827,0.480407,0.02675299999999997,8993.157481,100,2136.933780193329 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/blocks.csv" new file mode 100644 index 000000000..74043a093 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3315095969736576,0.12649702058373347,0.2032,0.4908,9139.8217 +2,0.3213189497545362,0.12034990980537391,0.2288,0.4713,8959.3234 +3,0.32866950811594725,0.12562828463608552,0.2132,0.4894,9069.8202 +4,0.32451851320415737,0.12286995408867765,0.2299,0.4824,8989.3952 +5,0.3229286811769009,0.12211194051919846,0.2294,0.4801,8960.1433 +6,0.3277186809808016,0.12497012508392268,0.2175,0.4903,9031.3446 +7,0.3257668113067746,0.12480886878015822,0.2307,0.4746,9000.9056 +8,0.33015517792999743,0.12643441147731915,0.2153,0.4945,9078.579 +9,0.3208731301754713,0.12068419520702718,0.2396,0.464,8944.5973 +10,0.327214755037427,0.12433805067840803,0.2162,0.4819,9030.2964 +11,0.3267522715240717,0.12462583626030925,0.2221,0.4932,9032.5975 +12,0.31992566815316675,0.12031479371673011,0.2323,0.4653,8910.6471 +13,0.3148620343029499,0.11773008845322351,0.2502,0.4597,8843.4318 +14,0.3283333276331425,0.12495409783467933,0.2163,0.4889,9066.0318 +15,0.32046561968922616,0.12067041107557472,0.2334,0.4683,8920.5475 +16,0.3236127786964178,0.12201932780454582,0.2306,0.4823,8974.0291 +17,0.3192399632394314,0.12029408348686306,0.2392,0.4664,8901.4901 +18,0.32310432050526144,0.12252499131085129,0.2252,0.4821,8959.895 +19,0.3180938875585794,0.11887237369596951,0.2415,0.4609,8894.1126 +20,0.32259032579809427,0.12178145665119637,0.222,0.481,8975.0247 +21,0.3286173030734062,0.12563304091115954,0.217,0.4903,9057.7138 +22,0.32633930999189614,0.12353316510050917,0.2223,0.4893,9020.791 +23,0.32438865583240983,0.12258006667826922,0.2213,0.4742,8994.1491 +24,0.3261097335278988,0.12428872596016567,0.2192,0.493,9009.074 +25,0.3352828111037612,0.12920922425811993,0.206,0.5098,9163.808 +26,0.3265366197317839,0.12412923866862612,0.2249,0.4857,9014.6173 +27,0.3273470069244504,0.12391311602964782,0.2155,0.4893,9061.4151 +28,0.321021509206295,0.1208401993520546,0.2337,0.4768,8960.1049 +29,0.3276464933440089,0.12454803914354567,0.2253,0.4888,9046.935 +30,0.3247002919897437,0.12278745169869194,0.2289,0.481,8997.1005 +31,0.32426960257440807,0.123489749574806,0.2313,0.4832,8981.3687 +32,0.31877933463305236,0.11962352968021539,0.2365,0.4643,8893.2195 +33,0.32500591649860144,0.12320610429696657,0.2213,0.4855,8990.0189 +34,0.3309641283944249,0.12706012020668533,0.2177,0.4968,9075.1842 +35,0.3265292884036899,0.12415919374234952,0.2246,0.4875,9034.4036 +36,0.3262650434538722,0.12455337108420377,0.2332,0.481,9006.2666 +37,0.32567046329826116,0.12329677458964097,0.2166,0.4819,9020.8765 +38,0.3247371752202511,0.1229212642849764,0.2176,0.4734,9012.0775 +39,0.3321819583281875,0.12689868144228408,0.2157,0.4954,9106.0274 +40,0.3291504739791155,0.125608557646696,0.2167,0.4834,9067.196 +41,0.3300020513251424,0.12667978396584248,0.2208,0.4969,9083.1735 +42,0.3214628210827708,0.1209073341481126,0.2329,0.4681,8953.8956 +43,0.32755396867990494,0.124641377141106,0.2238,0.491,9046.9638 +44,0.32550357493758203,0.12363592483369594,0.2286,0.4815,9015.8331 +45,0.32733188495486976,0.12397930477430573,0.2197,0.4863,9034.5623 +46,0.3164953087255359,0.11769864829955477,0.241,0.453,8886.9922 +47,0.3217216688320041,0.12163696477476955,0.2314,0.4718,8926.3409 +48,0.3246235216423869,0.12344903612543436,0.2244,0.4876,9003.9568 +49,0.3243829863935709,0.12262418963408729,0.2226,0.4744,8991.8414 +50,0.32103335144668815,0.12041316190462012,0.231,0.4719,8938.2109 +51,0.32447438611984253,0.12338551404732498,0.2327,0.4775,8993.7879 +52,0.3203186684012413,0.12081055427056321,0.2329,0.4751,8928.7407 +53,0.32557227864563465,0.12346771337541063,0.2196,0.4811,9032.3554 +54,0.3204444709524512,0.12053632400441931,0.2308,0.4748,8932.7547 +55,0.32589574432522056,0.12399511845527618,0.2233,0.4793,9003.3261 +56,0.3301581388607621,0.12693696516594238,0.2167,0.4984,9080.6383 +57,0.3196156531855464,0.11985061261438548,0.2345,0.4706,8924.4014 +58,0.3240921609222889,0.12242413807608522,0.2278,0.4764,8999.7546 +59,0.33207166356146334,0.12757539492287576,0.2178,0.494,9111.2262 +60,0.32558648045659067,0.1236124220148865,0.2235,0.4815,9023.1272 +61,0.3179432227626443,0.11915256771916861,0.2363,0.4606,8893.2419 +62,0.32841102982759474,0.12545806605099327,0.2135,0.4937,9057.3111 +63,0.3220647184535861,0.12118816345734153,0.2303,0.4758,8939.0637 +64,0.31691280563771723,0.11837826296343505,0.241,0.4622,8870.2823 +65,0.3266898874178529,0.12462064638589486,0.2245,0.4882,8997.7976 +66,0.33108600847274067,0.12695439933747432,0.2223,0.4935,9088.5183 +67,0.32735837760716674,0.12518314961600344,0.2291,0.4814,9031.9901 +68,0.3301011253222823,0.12635501539519023,0.2179,0.4911,9090.3473 +69,0.3240140459150076,0.1221785340465766,0.2241,0.4759,9001.0041 +70,0.32482916826158764,0.12311422139789588,0.2261,0.4848,8998.5031 +71,0.32222053565084935,0.12144090788568024,0.2253,0.4807,8959.1441 +72,0.3303083029836416,0.12707721420016305,0.2211,0.494,9072.3168 +73,0.3323983520269394,0.12812276150738805,0.2149,0.5037,9104.1284 +74,0.3204958471059799,0.12084692256209012,0.238,0.4782,8930.2104 +75,0.3259539632588625,0.12385174496675408,0.2334,0.4742,9005.8524 +76,0.3276338473722339,0.1240591441047711,0.2129,0.484,9057.1851 +77,0.3163868068739772,0.11843748175440512,0.243,0.4646,8865.5547 +78,0.3226056703045964,0.12167623047016497,0.2331,0.4688,8959.408 +79,0.32753841008245943,0.12444681703416872,0.2242,0.4829,9027.0608 +80,0.3239056994110346,0.12253105434588565,0.2272,0.479,8976.0333 +81,0.3309166396379471,0.12653229962021542,0.2129,0.4956,9101.0452 +82,0.32524351816922425,0.12335128250746152,0.219,0.4812,9007.7147 +83,0.3264725066661835,0.12417718615575532,0.2232,0.4807,9020.1635 +84,0.31787090016305447,0.11930710263233048,0.2351,0.4679,8889.1852 +85,0.3233825521811843,0.1225925730294746,0.2325,0.4776,8979.7792 +86,0.32034714583307505,0.12088419774830331,0.2336,0.4738,8904.0005 +87,0.3271235734656453,0.1244694696278311,0.2185,0.4949,9042.2269 +88,0.3270046644940972,0.12409185939706859,0.2201,0.4892,9055.8167 +89,0.32371018655598166,0.12204290944960025,0.2225,0.4862,8983.9443 +90,0.3241795025512576,0.12240275526631937,0.2249,0.4724,8982.6118 +91,0.32484301201403143,0.1227619896737017,0.2262,0.4824,9005.8239 +92,0.32529118385761974,0.12326330618760435,0.2291,0.4736,8995.0632 +93,0.31986779842078683,0.12029584188262593,0.2323,0.4695,8930.8802 +94,0.33055913333296777,0.1271769862596548,0.2173,0.4984,9085.5998 +95,0.32202228229790925,0.12147205357961281,0.2312,0.4679,8935.7941 +96,0.3270695810690522,0.12438857825747086,0.2187,0.4894,9044.9102 +97,0.33081524000018836,0.12653478093258785,0.2124,0.4898,9080.6974 +98,0.3236625021100044,0.12263597351197607,0.2326,0.4792,8983.8282 +99,0.323323471210897,0.12294610923232015,0.2303,0.4725,8966.6745 +100,0.329832390755415,0.1264871066097955,0.2144,0.4948,9084.4373 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/summary.csv" new file mode 100644 index 000000000..c41d8e059 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/013/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058005,20000,1000000,0.32499933514252305,0.12325907984811313,0.856931334983505,5324.789106975098,0.225427,0.481235,0.030381000000000047,9001.114148,100,2106.472990989685 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/blocks.csv" new file mode 100644 index 000000000..2018e80c8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3262581909865141,0.12447276662790582,0.2218,0.4824,9017.8532 +2,0.31962428582012653,0.11983736302813622,0.2351,0.4627,8926.584 +3,0.3239686488583684,0.12295282663134431,0.2294,0.481,8989.7916 +4,0.32261397756040094,0.1216716807192292,0.2272,0.4748,8984.4059 +5,0.3208181135356426,0.12088617056792227,0.2303,0.4711,8940.3435 +6,0.3231544057905674,0.1224584726004467,0.2248,0.4744,8961.9729 +7,0.32414421859383585,0.12234263697103598,0.2264,0.4783,8994.9862 +8,0.321374601355195,0.12125128210902203,0.2298,0.4664,8936.6119 +9,0.32693229155093434,0.12395954627426177,0.2173,0.4851,9038.6938 +10,0.3268305628195405,0.12400521762934723,0.2225,0.479,9026.6514 +11,0.3251740688458085,0.12356499558203786,0.2295,0.4777,9012.155 +12,0.3283272484362125,0.12471979230846666,0.2133,0.4812,9049.9838 +13,0.32344867268949745,0.12161359147838614,0.223,0.4756,8986.7052 +14,0.32852077374607325,0.1254574710258086,0.2212,0.4896,9067.8934 +15,0.32609781044572594,0.12400940698119962,0.2218,0.4901,9007.3499 +16,0.32423286826610564,0.12281215431072683,0.2276,0.4768,8984.969 +17,0.32490639027804136,0.12403621090048386,0.2337,0.4683,8981.9112 +18,0.3282124287605286,0.12499649617025672,0.2183,0.493,9064.0014 +19,0.32396148881167175,0.12214020828894108,0.2268,0.4814,8986.6403 +20,0.3314940259903669,0.12691925320589206,0.2155,0.4962,9091.1601 +21,0.32620357236862185,0.12299727182392596,0.2204,0.4821,9032.091 +22,0.3264299931824207,0.12363847211553752,0.2212,0.4843,9026.0848 +23,0.3294107485368848,0.12625797923893214,0.2199,0.4921,9077.657 +24,0.3284025784149766,0.12491372674342346,0.2168,0.4908,9052.9002 +25,0.3220202619895339,0.12180994229007369,0.2302,0.4821,8946.8135 +26,0.3257871015802026,0.12326401836758612,0.2298,0.4732,9001.0625 +27,0.32619591298401357,0.12447569248899486,0.2304,0.4767,8999.3118 +28,0.3221721444875002,0.12201476938129703,0.2358,0.4774,8962.7554 +29,0.32136725662499666,0.12174013031325044,0.2368,0.4707,8931.3758 +30,0.3275665597394109,0.12486575128305735,0.2263,0.485,9038.0532 +31,0.32878489011973144,0.12579555748996357,0.2254,0.4909,9039.9816 +32,0.3235603061631322,0.12256613442969105,0.2278,0.4786,8988.8862 +33,0.32105289097726347,0.12085148521622611,0.2303,0.4646,8929.9711 +34,0.3248539928749204,0.12370174186934978,0.2304,0.4738,8965.7511 +35,0.32517019786834717,0.12296457037660762,0.2293,0.4756,9017.7184 +36,0.32690219720453023,0.12410314197168566,0.2201,0.4964,9060.4724 +37,0.3294796971291304,0.12597848408246543,0.2143,0.4948,9065.3882 +38,0.3233663509771228,0.1230679133413671,0.2338,0.4793,8954.4648 +39,0.3170805727630854,0.11934029649534168,0.2404,0.471,8869.1149 +40,0.3263304527044296,0.1239662758459594,0.2231,0.4801,9025.5216 +41,0.332722228346765,0.12742074025363467,0.2075,0.5009,9118.6033 +42,0.3222265280112624,0.1219801798081147,0.2358,0.4688,8936.6796 +43,0.3261858252838254,0.12333252423593757,0.2256,0.4864,9029.5418 +44,0.3288677214741707,0.1257329351061774,0.2167,0.4904,9048.9079 +45,0.3206603625819087,0.12077902738683642,0.2344,0.4644,8927.9641 +46,0.3193312174975872,0.12015646645644433,0.2419,0.4647,8897.0244 +47,0.31882195176035166,0.11982883728709476,0.2482,0.4524,8894.4806 +48,0.32335167248398067,0.1222685929969718,0.226,0.4822,8983.7995 +49,0.32480265486985443,0.12305891179244552,0.2285,0.4837,8995.875 +50,0.31748910155147314,0.11917941496346823,0.243,0.4587,8882.3963 +51,0.32644487651586535,0.12406022817473483,0.2222,0.4835,9041.7945 +52,0.32298264694064854,0.12242878798107622,0.2279,0.4849,8970.9637 +53,0.33270041069090367,0.12762572315449994,0.206,0.4978,9115.388 +54,0.3211241221278906,0.12110825362877609,0.2379,0.4737,8939.74 +55,0.3207220114812255,0.12048911819339699,0.2289,0.472,8941.9175 +56,0.3294236832618713,0.12567639801106276,0.2094,0.4968,9069.4081 +57,0.3204989021390677,0.1212266124906733,0.2324,0.4703,8929.7128 +58,0.33254236137717963,0.12754518522111788,0.2061,0.5084,9141.226 +59,0.3213368663966656,0.1206401647929557,0.2334,0.4777,8943.138 +60,0.32636747297495605,0.12366156323059904,0.2184,0.4823,9029.0392 +61,0.3229299132913351,0.12262465000329152,0.2364,0.4796,8957.3764 +62,0.32453539942502974,0.12296161629015114,0.232,0.4872,8984.7772 +63,0.3295451886072755,0.12578434028996943,0.2175,0.4937,9075.9153 +64,0.31815466491431,0.11915161447644923,0.2405,0.4586,8894.184 +65,0.33069532136768104,0.12690708106533438,0.2201,0.493,9082.432 +66,0.32655708822458984,0.12396761877535604,0.2214,0.4862,9041.5567 +67,0.3256983712002635,0.12364087166903974,0.2234,0.4825,9002.3587 +68,0.32628306618630887,0.12365185061385978,0.2235,0.4788,9018.212 +69,0.32562577919512986,0.12388840799756533,0.2274,0.4785,9004.5153 +70,0.3320658312693238,0.1275358303431664,0.2043,0.5067,9132.453 +71,0.32660703117251394,0.12378440600050326,0.2229,0.4897,9029.9699 +72,0.32642695896327495,0.1244424435143935,0.2258,0.482,8998.409 +73,0.33293971721827986,0.12756066467941524,0.2042,0.5007,9145.0116 +74,0.32633359204530715,0.12418852298084755,0.2247,0.4785,9024.9558 +75,0.3254786609813571,0.12340556496422574,0.2243,0.4818,8998.5711 +76,0.3249090343773365,0.1231692122195965,0.2205,0.4942,9006.2889 +77,0.32222287536412475,0.12153039392884743,0.2276,0.4756,8960.5996 +78,0.3291590675875545,0.12628604256033524,0.2208,0.4942,9070.9641 +79,0.3157989728376269,0.11880765805096394,0.2432,0.4542,8844.1018 +80,0.32192391894459726,0.12169406418546402,0.2306,0.4749,8945.7035 +81,0.3193363763526082,0.12010864940181741,0.2412,0.4679,8906.129 +82,0.3228879868000746,0.12192909863874593,0.2278,0.4767,8985.1604 +83,0.32619540400058034,0.12458708541263454,0.2239,0.4912,9010.8297 +84,0.32833602743297813,0.1250791095301281,0.2207,0.4892,9052.597 +85,0.32219915172606706,0.12148835469251501,0.2311,0.4753,8965.5316 +86,0.33326727318614724,0.12825612124734062,0.206,0.5015,9128.0806 +87,0.32651266015172004,0.12378375027778626,0.2188,0.4883,9051.8643 +88,0.32287023253440855,0.12173869972204884,0.2308,0.4758,8971.6299 +89,0.32430644566565753,0.12336921685988261,0.2298,0.4794,8973.0626 +90,0.32776122904419897,0.12487212739788366,0.2227,0.4889,9027.0429 +91,0.3182226323485374,0.11952260321445701,0.2357,0.4674,8882.8205 +92,0.3332138254418969,0.12800439888374435,0.2087,0.5047,9130.6921 +93,0.3290329975679517,0.12571661436196183,0.2196,0.4892,9063.8824 +94,0.32676585710197686,0.12336841915280665,0.2184,0.4858,9045.5861 +95,0.3219283219188452,0.12124559068088256,0.2305,0.4718,8962.6109 +96,0.32597339593321084,0.12360742519307277,0.2208,0.4836,9016.5698 +97,0.3279933774441481,0.12545796867887518,0.2221,0.4932,9048.8812 +98,0.3335342093169689,0.1283409887854115,0.2061,0.5021,9145.1221 +99,0.33797270078510044,0.13041439024219653,0.1995,0.5086,9202.4671 +100,0.32368552533984185,0.12285648226534827,0.2257,0.4851,8981.3776 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/summary.csv" new file mode 100644 index 000000000..250c57a5b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/014/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058006,20000,1000000,0.32536721452865003,0.12349350512989919,0.8572420402091391,5330.816442837402,0.22499,0.482009,0.03202900000000003,9006.439332,100,2119.843847990036 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/blocks.csv" new file mode 100644 index 000000000..946857da5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.3213174273043871,0.1208309951210967,0.2212,0.4701,8956.1489 +2,0.3245813927397132,0.12300705526872885,0.2175,0.4782,8993.2363 +3,0.3286342844054103,0.1256533675703989,0.2206,0.4896,9049.5621 +4,0.32947442073225974,0.1261860266627908,0.2199,0.4915,9039.6613 +5,0.3281492860123515,0.12524537868376587,0.2213,0.4931,9036.2395 +6,0.32858311502486465,0.12512326358827922,0.2197,0.4949,9058.4448 +7,0.3253833175897598,0.12383353211529038,0.2263,0.4855,9019.8282 +8,0.3272682594552636,0.12470474725466865,0.2211,0.4918,9044.1411 +9,0.3225206780895591,0.12173171002535951,0.2289,0.48,8975.9825 +10,0.3251976564154029,0.12372327068467903,0.2311,0.4828,8984.2957 +11,0.3227761268168688,0.12163923532654333,0.2299,0.475,8956.0664 +12,0.32200259377360346,0.12116520041461935,0.221,0.4735,8953.3497 +13,0.32867457858622073,0.12536007032699067,0.216,0.4919,9052.8938 +14,0.32307908121496437,0.12223296444974821,0.2398,0.4722,8965.3937 +15,0.3239855623409152,0.12247612348596316,0.2272,0.4844,9002.499 +16,0.3272230685040355,0.12480142477070304,0.2278,0.4912,9040.2593 +17,0.32025763364881277,0.12049804807970188,0.2325,0.4694,8935.7868 +18,0.32299569018632174,0.12156583282630029,0.2246,0.4702,8978.1503 +19,0.3183466323539615,0.1192237916482949,0.2347,0.4752,8912.343 +20,0.32680360744595527,0.12437617524415677,0.2215,0.4825,9032.9136 +21,0.325654855312407,0.12403923286005174,0.2241,0.4835,9004.4217 +22,0.31955147378593685,0.12044128301608553,0.2364,0.4738,8907.2265 +23,0.3267088295340538,0.12395485198613042,0.2196,0.4844,9022.2753 +24,0.3310679756611586,0.12675232821423066,0.2183,0.4897,9088.8738 +25,0.3214547422662377,0.12145577645005344,0.2335,0.4706,8948.8145 +26,0.33209577551335095,0.12777454005179037,0.2125,0.5026,9108.4032 +27,0.32586412849724294,0.12382499581968683,0.2291,0.4929,9011.5528 +28,0.3244068550303578,0.12278501253116497,0.2232,0.4768,8996.4308 +29,0.3279264599978924,0.12483272748011733,0.2154,0.4945,9044.9867 +30,0.3205627352684736,0.12071209024939893,0.2339,0.4689,8935.1942 +31,0.3336716996669769,0.12886704447830483,0.2121,0.5023,9128.14 +32,0.31959473898261787,0.11996546187187787,0.2364,0.4618,8890.9205 +33,0.3236810095474124,0.12226772048072071,0.2198,0.4804,8990.7187 +34,0.3303121006682515,0.1261350013091509,0.2173,0.49,9080.2189 +35,0.3219834454402328,0.12162537442813456,0.2406,0.4703,8937.8502 +36,0.32835518252104523,0.12506814751769146,0.2143,0.4887,9056.5264 +37,0.33040387336015703,0.12587504685299683,0.2159,0.5002,9093.1285 +38,0.32310406149476767,0.12232793798884559,0.2284,0.4791,8973.5154 +39,0.32400648480355737,0.12267398718768868,0.2293,0.4826,8985.5385 +40,0.3274676360413432,0.1245940409992831,0.2192,0.4818,9042.5869 +41,0.32078826023638246,0.12099959461616004,0.2371,0.4649,8923.8965 +42,0.3241372400537133,0.12233038924453883,0.2236,0.4795,9001.3041 +43,0.32228069778233764,0.12147115590845033,0.226,0.4801,8967.3421 +44,0.31178452303409576,0.11598456720868285,0.255,0.4508,8771.889 +45,0.3267146869704127,0.12443322492330391,0.2217,0.4818,9035.2125 +46,0.33405644658207895,0.12828203042236028,0.2102,0.5019,9151.4404 +47,0.320935021956265,0.12079284890266888,0.2393,0.471,8917.7218 +48,0.3243319976300001,0.1228316788848173,0.2266,0.4842,9005.2576 +49,0.32424223447591066,0.12331853356407724,0.2318,0.4812,8999.571 +50,0.32920687161684037,0.12576757244418282,0.2163,0.4996,9062.9414 +51,0.33405832178741696,0.12791532127572983,0.2037,0.5017,9163.9992 +52,0.32963743667453527,0.12631349071393538,0.2197,0.4952,9068.961 +53,0.3267061969459057,0.12379160116710229,0.2172,0.4894,9035.8092 +54,0.3263416217535734,0.12380085316416171,0.2219,0.4757,9025.9064 +55,0.32390763162523506,0.12287144634049696,0.2318,0.4854,8976.2661 +56,0.32611842039972544,0.12365929226518113,0.221,0.4842,9008.8396 +57,0.32372634670883416,0.12245491433679258,0.2303,0.475,8969.2325 +58,0.323126154884696,0.12234709342273657,0.2333,0.4799,8951.6446 +59,0.32332457393556835,0.12149476101769945,0.2257,0.4801,8996.8174 +60,0.32442537405341865,0.12190745974864721,0.2237,0.4772,9012.9983 +61,0.32887082573473453,0.125758168404249,0.215,0.4889,9075.4562 +62,0.3292100849151611,0.12597771676647287,0.2212,0.4922,9062.1116 +63,0.3247366131052375,0.12319297221953047,0.2265,0.4702,8993.9717 +64,0.3278802862226963,0.12467186225924842,0.2217,0.4901,9041.8356 +65,0.32734173451811077,0.12515428741060783,0.2197,0.4921,9040.2314 +66,0.32585907321721314,0.12315904068893174,0.221,0.4811,9038.0607 +67,0.3200505967721343,0.12017346105102583,0.2252,0.4713,8936.6743 +68,0.3251576382547617,0.12330250113627822,0.2303,0.4762,9005.4261 +69,0.32019768845140933,0.12055518046109184,0.2422,0.4615,8906.3479 +70,0.3246691674664617,0.12299969236134173,0.2242,0.4778,8986.5895 +71,0.3289242144674063,0.12511036462536146,0.2293,0.4848,9043.4879 +72,0.32754694912731647,0.12388069387200899,0.2113,0.4935,9082.206 +73,0.32719301120489835,0.124854946862,0.2199,0.4909,9035.6889 +74,0.3226450243785977,0.12221218188460935,0.2307,0.4808,8955.0195 +75,0.32456238504946233,0.12207670185841675,0.2185,0.4852,9020.7823 +76,0.3225206853106618,0.12214032254699442,0.2335,0.4765,8957.0017 +77,0.32098868431299926,0.12123303420803731,0.2341,0.471,8939.6739 +78,0.32556279285103085,0.12353304829239814,0.2291,0.4773,9013.0835 +79,0.3201575677856803,0.1206490936929969,0.2463,0.4662,8918.2595 +80,0.32117817374318836,0.11990176002628339,0.232,0.4617,8932.4287 +81,0.3206823801964521,0.12192849174715825,0.2335,0.475,8907.458 +82,0.31666249337047336,0.1183253666440135,0.2398,0.4628,8875.6156 +83,0.3262411496460438,0.12424936208474052,0.2195,0.487,9014.3715 +84,0.3271772252872586,0.1241963982516168,0.2121,0.4845,9040.5641 +85,0.3258784852743149,0.12406725433083857,0.2275,0.4818,8990.1349 +86,0.3260841382920742,0.1249051998238337,0.2254,0.4838,9019.4959 +87,0.32525720524787904,0.12309420877265649,0.224,0.4826,9011.9666 +88,0.32035845754891634,0.12016884518094707,0.2349,0.4689,8933.2589 +89,0.32802097987830636,0.12515221901708046,0.2145,0.4934,9058.2077 +90,0.3278379021778703,0.12493547373301908,0.2149,0.4957,9059.1707 +91,0.314001317371428,0.11825741394585543,0.2557,0.4543,8796.5045 +92,0.3150854276791215,0.11779580575334844,0.2374,0.469,8841.3281 +93,0.3230717257887125,0.12205408215822593,0.2335,0.4782,8988.8759 +94,0.33046362222284076,0.12618881648009947,0.2143,0.4891,9089.1617 +95,0.3248961937993765,0.12288184985807193,0.2264,0.4825,8988.4455 +96,0.33175147272497413,0.12700728459416927,0.2136,0.498,9097.0558 +97,0.3278622008919716,0.12522694657381364,0.2232,0.4826,9030.3374 +98,0.32761243766993287,0.12484951324079661,0.2147,0.4883,9046.3514 +99,0.3326337902620435,0.12795482351839368,0.222,0.5031,9123.7879 +100,0.32509577760994435,0.12297713394316125,0.2214,0.4852,9020.1269 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/summary.csv" new file mode 100644 index 000000000..b7912b11f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/015/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058007,20000,1000000,0.32506906114970147,0.12328872165172933,0.8570929530378999,5325.931497876709,0.225378,0.481918,0.031162000000000023,9001.981261,100,1993.0422220230103 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/blocks.csv" new file mode 100644 index 000000000..61ad1c255 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/blocks.csv" @@ -0,0 +1,101 @@ +block,m2,m4,R0,R2,C1 +1,0.32776256751865146,0.12488024967082988,0.2183,0.489,9029.7949 +2,0.3293577539086342,0.12593401742389065,0.2252,0.4894,9050.3052 +3,0.32134133508950474,0.12144307462852544,0.2409,0.4644,8925.9262 +4,0.3175817335143685,0.11858609054605629,0.239,0.4676,8907.0817 +5,0.3245775207579136,0.1225349495962069,0.2187,0.484,9007.0186 +6,0.32793959110081194,0.12474504507070341,0.2233,0.4727,9036.4428 +7,0.32548994925022123,0.12283350385947299,0.2184,0.4858,9024.5955 +8,0.3316221072614193,0.12718281097401582,0.2112,0.4971,9096.5205 +9,0.3294419842109084,0.1258879315325074,0.2253,0.4898,9065.1797 +10,0.3198517285704613,0.12066569625785209,0.2395,0.4788,8931.7041 +11,0.3272607170149684,0.12452452678242641,0.2265,0.4791,9026.6706 +12,0.31963774402439593,0.12059415731705003,0.2338,0.4767,8931.6491 +13,0.32487234751135113,0.12388245170998016,0.2288,0.4823,8974.0656 +14,0.321078053689003,0.1213507051703189,0.2333,0.4699,8927.4347 +15,0.3231388990134001,0.12197922305800367,0.231,0.4715,8960.67 +16,0.32155786051899193,0.12094927462709514,0.2396,0.4741,8951.5767 +17,0.33251965320706367,0.12739205075121127,0.2105,0.5002,9129.5158 +18,0.31908653503656387,0.1194451961516675,0.2404,0.4626,8886.85 +19,0.3275357889890671,0.12504782044220347,0.219,0.487,9038.3288 +20,0.3332925797849894,0.12786301916641296,0.2079,0.506,9127.4861 +21,0.32238475939780475,0.12220230909528504,0.231,0.4777,8960.4038 +22,0.32282196614593267,0.12262322350589161,0.2338,0.4697,8959.3769 +23,0.3194442673206329,0.12015097109713611,0.2375,0.4727,8916.884 +24,0.3264309239268303,0.12397083412198294,0.225,0.4757,9032.2143 +25,0.323387149451673,0.12205262630160685,0.2285,0.4752,8989.0415 +26,0.3304940361574292,0.12683968132059223,0.2204,0.4955,9064.7608 +27,0.31722677807956934,0.11950309813728868,0.2457,0.466,8859.1206 +28,0.3248717229768634,0.12290232659684562,0.221,0.4847,8995.5633 +29,0.32054618988186123,0.12132117011934597,0.2362,0.4739,8929.7356 +30,0.3308838842198253,0.1267421280303488,0.2142,0.4923,9091.6425 +31,0.32081471115648746,0.1209135004549631,0.2301,0.4717,8940.1 +32,0.32526918741613625,0.12375139934816047,0.2209,0.4777,9005.6544 +33,0.32851286736428736,0.12527723609675262,0.2216,0.4889,9053.7599 +34,0.3299024758890271,0.12568517650628108,0.2102,0.4939,9082.9787 +35,0.3175344979047775,0.1193815472660857,0.2343,0.4662,8893.2284 +36,0.32406164939403537,0.12279850688302398,0.2313,0.4837,8998.9223 +37,0.3190578039973974,0.11979708639045002,0.2347,0.4674,8912.8134 +38,0.3187950901046395,0.11981363736633152,0.2381,0.4749,8909.0527 +39,0.3232271777153015,0.1221389553820099,0.2268,0.4756,8965.5558 +40,0.3282237178534269,0.12550053969190067,0.2206,0.4793,9045.1828 +41,0.32251304666250946,0.12163280903408032,0.2288,0.4765,8971.3634 +42,0.32637375864237544,0.12411415559773036,0.2135,0.4898,9033.4736 +43,0.3228497584238648,0.12168380974386743,0.2274,0.4709,8963.2989 +44,0.32620440977811815,0.12441145549389285,0.2249,0.4867,9013.9065 +45,0.32298959755450485,0.12184634588680342,0.2327,0.4708,8972.5207 +46,0.3183439819276333,0.1197713840366846,0.2418,0.4676,8892.6958 +47,0.32300503485649823,0.12199031831639008,0.2313,0.4663,8973.1105 +48,0.317347048060596,0.11909585879812205,0.2384,0.4697,8875.5501 +49,0.323427218028903,0.12307095254002774,0.2268,0.4813,8965.1056 +50,0.32282825119942427,0.12219503115328914,0.2344,0.4684,8964.4902 +51,0.317221782232821,0.11857705613219584,0.2384,0.4594,8884.4885 +52,0.3262613218426704,0.1242686988470136,0.2248,0.4875,9015.1428 +53,0.3163350756034255,0.11897764034631025,0.2529,0.4648,8833.7511 +54,0.32594405803978443,0.12428746685688039,0.2309,0.4785,8997.8926 +55,0.32567623107284305,0.12396775321446009,0.2248,0.4848,9021.2041 +56,0.3266356043547392,0.12446256981659658,0.2272,0.4909,9014.0274 +57,0.32857334092259405,0.12534474501846551,0.2193,0.4843,9050.1823 +58,0.3199571899056435,0.12081218663766168,0.2331,0.4717,8934.6229 +59,0.32828350588977334,0.12498369639977873,0.2185,0.4887,9063.2701 +60,0.3221328615397215,0.12190173195252506,0.23,0.4783,8944.5924 +61,0.3270136332824826,0.12477007584487894,0.2227,0.4873,9049.2766 +62,0.32173644847869876,0.12148880877184011,0.2309,0.4767,8937.3323 +63,0.3242166743099689,0.12317625991651125,0.2305,0.4861,8971.9325 +64,0.31476461771279574,0.1173428165660533,0.2454,0.4581,8835.1911 +65,0.3244900226503611,0.12262947754578402,0.2279,0.4718,9004.8434 +66,0.32082049545943736,0.12094625700332493,0.2333,0.4816,8938.4096 +67,0.32242678954005244,0.12161368280038794,0.2299,0.4815,8966.1711 +68,0.32484272297024724,0.12295693083683863,0.2205,0.4804,9017.78 +69,0.32404862721711397,0.12346356275450994,0.2221,0.478,9000.4781 +70,0.31527734310477973,0.11760246054051024,0.2465,0.4503,8848.7914 +71,0.32441931732147933,0.12322368107235938,0.2273,0.4813,8997.8771 +72,0.3256089081838727,0.12321337077582564,0.2182,0.4842,9016.5324 +73,0.3323842169940472,0.12752594232174766,0.207,0.4984,9126.3499 +74,0.33497993096411227,0.12921843790691492,0.2095,0.5016,9150.7813 +75,0.31847176511436703,0.11930792421451569,0.2374,0.4634,8895.9855 +76,0.3258147998765111,0.12362311713354476,0.2291,0.4853,9018.3931 +77,0.32419041712880137,0.12200488360971021,0.2305,0.4742,9001.7238 +78,0.3229833201557398,0.12163865693006451,0.223,0.4774,8972.1396 +79,0.31816959214806556,0.12002255397185067,0.2398,0.4653,8883.4076 +80,0.3245306657165289,0.12282294660469366,0.2245,0.4873,8996.2507 +81,0.3282911543667316,0.12471621652677081,0.2203,0.4863,9054.9895 +82,0.32564431367516516,0.12329192843227388,0.2211,0.4833,9006.4682 +83,0.327380485534668,0.1251034065424549,0.2207,0.4939,9034.2991 +84,0.3271131198361516,0.12484110454690431,0.2258,0.4914,9039.798 +85,0.3290504847973585,0.1254318899355509,0.2218,0.4923,9057.1423 +86,0.32491660192608834,0.1228385479595808,0.2267,0.4736,9002.2629 +87,0.3268374160692096,0.12464282051224895,0.2188,0.4884,9027.8903 +88,0.32315922142118214,0.12159221329247669,0.2171,0.4798,8996.0228 +89,0.33056686048209666,0.12613572165268339,0.2115,0.488,9087.164 +90,0.3290455362215638,0.12554052004709038,0.2125,0.4957,9076.0274 +91,0.3263451315015554,0.12359369736123477,0.2191,0.4822,9015.475 +92,0.32364134092926977,0.12200712077692183,0.2269,0.4728,8993.7678 +93,0.3280501258864999,0.12521842659394902,0.2213,0.4803,9041.7426 +94,0.3270910358741879,0.1250882879164636,0.2295,0.4827,9019.9585 +95,0.325710810752213,0.12449952591090768,0.2323,0.4826,8999.6927 +96,0.32757283750772476,0.12530759104090103,0.2143,0.4934,9054.657 +97,0.3249274975255132,0.12402183600443013,0.2317,0.4834,8990.015 +98,0.32984168877005576,0.12631593791823292,0.223,0.4894,9075.9981 +99,0.3253263827875257,0.12292234314004218,0.2191,0.476,9013.856 +100,0.33063107730448243,0.12653970447174748,0.2181,0.4946,9098.1739 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/metadata.txt" new file mode 100644 index 000000000..38be23769 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/metadata.txt" @@ -0,0 +1,6 @@ +status=success +kernel=exact_nearest_neighbor_fk +boundary=periodic +J=1 +beta=0.4406867935097715 +julia=1.12.5 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/summary.csv" new file mode 100644 index 000000000..810572014 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/nn_v3_20260730/cells/016/summary.csv" @@ -0,0 +1,2 @@ +L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s +128,0.4406867935097715,1058008,20000,1000000,0.32454073814363776,0.12306724101976221,0.8558466887049482,5317.275453745361,0.2268,0.480079,0.026478999999999975,8993.34546,100,2057.5519099235535 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/aggregated.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/aggregated.csv" new file mode 100644 index 000000000..d6b1aeeff --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/aggregated.csv" @@ -0,0 +1,49 @@ +sigma,L,beta,nseeds,Rp,Rp_seed_se,Qm,Qm_seed_se,chi,chi_seed_se,tau_m2_max +1.750,64,0.327136,2,-1.019095,0.007195,0.6122925398,0.001519155597,396.0063387,3.097177412,4.434937913 +1.750,64,0.329136,2,-0.57267,3e-05,0.6990594752,0.0008459518207,540.2993883,0.7803988721,5.363363658 +1.750,64,0.331136,2,-0.114955,0.001465,0.7844918839,0.0003806897008,708.0887029,1.177044839,5.988957955 +1.750,128,0.327136,2,-1.345275,0.002675,0.5476948743,0.0003096627157,864.9614193,2.153529403,4.395063882 +1.750,128,0.329136,2,-0.53124,0.00714,0.7152096755,0.001626320999,1636.932723,6.645898983,6.130599921 +1.750,128,0.331136,2,0.36456,0.0065,0.8735320973,0.001583432038,2689.247571,9.896219388,6.873257485 +1.750,256,0.327136,2,-1.75933,0.00074,0.4454061377,0.0007279295747,1392.750918,1.083441531,3.120647726 +1.750,256,0.329136,2,-0.50906,0.00713,0.7251738258,0.0009456444473,4981.551714,16.73689203,7.216903618 +1.750,256,0.331136,2,0.84127,0.00135,0.9548141124,0.0004972916876,10886.11302,13.3916387,7.310636206 +1.750,512,0.327136,2,-1.96939,0.00057,0.3708464825,0.0001882157185,1666.59359,15.35328119,1.439167677 +1.750,512,0.329136,2,-0.454225,0.003245,0.7419858983,0.0004852533228,15619.4166,14.07302124,8.435902752 +1.750,512,0.331136,2,0.99313,3e-05,0.9883847326,6.278301989e-05,44043.22705,9.364997331,6.326258704 +1.875,64,0.334985,2,-0.86446,0.0085,0.6553014224,0.0005536550644,502.668887,1.855160757,4.601810091 +1.875,64,0.336985,2,-0.40894,0.00504,0.7436036282,0.00140979864,669.8967337,2.099522139,5.086975142 +1.875,64,0.338985,2,0.054045,0.005705,0.8246712831,0.001071104852,860.3893959,3.836410332,5.549705798 +1.875,128,0.334985,2,-1.233375,0.000925,0.5848411063,0.000981008728,1150.64363,1.22075858,4.687936115 +1.875,128,0.336985,2,-0.363505,0.009255,0.7577009101,0.003150814099,2104.646045,13.63337843,6.433400104 +1.875,128,0.338985,2,0.469905,0.008895,0.8992001192,0.001530581807,3250.225905,13.79420908,6.214774086 +1.875,256,0.334985,2,-1.71282,0.00419,0.4724732006,0.001223529933,1938.523267,20.04019744,3.349481881 +1.875,256,0.336985,2,-0.30338,0.00448,0.7740358906,0.001977490797,6734.120235,4.988536456,6.868768275 +1.875,256,0.338985,2,0.86162,0.00583,0.9627759544,0.0008968324979,12967.56438,39.97482936,5.984282969 +1.875,512,0.334985,2,-1.966515,0.000585,0.3798354167,0.001082170031,2353.415108,18.79269672,1.586209022 +1.875,512,0.336985,2,-0.27176,0.00408,0.7852295071,0.001586606964,21596.18047,69.0309382,8.027953821 +1.875,512,0.338985,2,0.991745,9.5e-05,0.9896753531,5.473987883e-05,51817.6458,97.03597974,6.075159695 +2.000,64,0.342439,2,-0.729875,0.000925,0.6906935419,0.000952424,609.8646525,0.5777193555,4.831383534 +2.000,64,0.344439,2,-0.273375,0.001015,0.7753066219,0.0006890451702,795.6218933,0.9548946289,5.182226483 +2.000,64,0.346439,2,0.150745,0.001815,0.8484574134,7.32364244e-05,988.9933066,0.2162964404,5.294920787 +2.000,128,0.342439,2,-1.11442,0.0044,0.6218126361,0.0006040253546,1462.22364,9.065684592,4.646312197 +2.000,128,0.344439,2,-0.21115,0.02142,0.7940175078,0.00535123564,2582.77262,29.21267426,5.904261059 +2.000,128,0.346439,2,0.526825,0.000575,0.9136367023,0.001176402642,3738.474323,4.161624458,5.695668442 +2.000,256,0.342439,2,-1.64115,0.00362,0.4968424236,0.003351915576,2630.976863,18.76242561,4.003232319 +2.000,256,0.344439,2,-0.18811,0.00235,0.8017268862,0.0001058507,8335.67395,1.575287407,7.009625327 +2.000,256,0.346439,2,0.86817,0.00081,0.966950923,0.0004384136819,14787.62732,2.034715283,5.751439515 +2.000,512,0.342439,2,-1.960565,0.001495,0.3846644438,0.0005374869797,3140.140744,32.48199194,1.737054063 +2.000,512,0.344439,2,-0.130795,0.006875,0.8158937775,0.0008726370632,27586.98173,140.1853856,7.643587173 +2.000,512,0.346439,2,0.99148,0.00023,0.9908370917,8.866418467e-05,59190.99908,18.37308775,5.368956431 +2.500,64,0.367446,2,-0.433825,0.010995,0.7690967277,0.00205804296,952.0912816,8.038472788,4.783032817 +2.500,64,0.369446,2,-0.03368,0.00716,0.8364134878,0.001597042873,1153.58738,3.10770792,4.531419901 +2.500,64,0.371446,2,0.320305,0.002625,0.8915492095,0.0002197412065,1360.047071,4.845475254,4.741648408 +2.500,128,0.367446,2,-0.86324,0.00106,0.6923913737,0.0004997691424,2468.834775,5.487879276,4.9607227 +2.500,128,0.369446,2,-0.00506,0.00025,0.8444277631,0.0009734111138,3876.122717,1.728251337,5.580085331 +2.500,128,0.371446,2,0.592285,0.005395,0.9328520577,0.0007007191024,5104.406745,14.08504357,4.82726634 +2.500,256,0.367446,2,-1.495905,0.000995,0.5538760677,0.002155124649,4878.406268,17.56823382,4.369891483 +2.500,256,0.369446,2,0.00267,0.00566,0.8471624361,0.001400265481,12957.37647,36.07608515,5.994515623 +2.500,256,0.371446,2,0.86591,0.00122,0.9724022824,0.0002854189467,20049.61409,17.36444303,4.984650123 +2.500,512,0.367446,2,-1.94182,0.00068,0.4053482489,0.002052692609,6063.018332,13.83304267,1.980543563 +2.500,512,0.369446,2,0.00919,0.00622,0.8520767367,0.001997804299,43577.01924,121.6449289,6.89132832 +2.500,512,0.371446,2,0.986925,1.5e-05,0.991593496,1.823227433e-05,79522.63454,11.45415376,4.980002439 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/critical_finite_size.svg" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/critical_finite_size.svg" new file mode 100644 index 000000000..510e6d868 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/critical_finite_size.svg" @@ -0,0 +1,85 @@ + + +Track A critical finite-size data (published beta_c) + +Rp +L (log2) + + + + + +sigma=1.75 + + + + + +sigma=1.875 + + + + + +sigma=2.0 + + + + + +sigma=2.5 + +Qm +L (log2) + + + + + +sigma=1.75 + + + + + +sigma=1.875 + + + + + +sigma=2.0 + + + + + +sigma=2.5 + +chi/L^2 +L (log2) + + + + + +sigma=1.75 + + + + + +sigma=1.875 + + + + + +sigma=2.0 + + + + + +sigma=2.5 + \ No newline at end of file diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/crossings.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/crossings.csv" new file mode 100644 index 000000000..83f7f1db9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/crossings.csv" @@ -0,0 +1,25 @@ +sigma,observable,L,2L,beta_cross,status +1.750,Rp,64,128,0.3288136861,interpolated +1.750,Rp,128,256,0.3290090155,interpolated +1.750,Rp,256,512,0.3291483968,interpolated +1.750,Qm,64,128,0.3287837193,interpolated +1.750,Qm,128,256,0.3292162057,interpolated +1.750,Qm,256,512,0.3294341214,interpolated +1.875,Rp,64,128,0.3368280463,interpolated +1.875,Rp,128,256,0.3370272502,interpolated +1.875,Rp,256,512,0.3373044206,interpolated +1.875,Qm,64,128,0.3368179456,interpolated +1.875,Qm,128,256,0.3372309657,interpolated +1.875,Qm,256,512,0.3375933995,interpolated +2.000,Rp,64,128,0.3443447617,interpolated +2.000,Rp,128,256,0.3446883563,interpolated +2.000,Rp,256,512,0.3448569871,interpolated +2.000,Qm,64,128,0.3442897211,interpolated +2.000,Qm,128,256,0.3449172367,interpolated +2.000,Qm,256,512,0.3451653723,interpolated +2.500,Rp,64,128,0.3696908739,interpolated +2.500,Rp,128,256,0.3699628471,interpolated +2.500,Rp,256,512,0.3701947814,interpolated +2.500,Qm,64,128,0.36975545,interpolated +2.500,Qm,128,256,0.3701665618,interpolated +2.500,Qm,256,512,0.3704351329,interpolated diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/eta_fits.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/eta_fits.csv" new file mode 100644 index 000000000..eae85afe3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/eta_fits.csv" @@ -0,0 +1,9 @@ +sigma,Lmin,eta,amplitude,rss +1.750,64,0.38340867,0.6450673809,0.0003266643637 +1.750,128,0.3728631828,0.6069471107,0.0001485647538 +1.875,64,0.3290007194,0.63871099,0.0001183328803 +1.875,128,0.3204366755,0.6078840828,8.735749166e-07 +2.000,64,0.2962339285,0.6637037215,0.0001410110436 +2.000,128,0.2915024611,0.6458103082,0.0001051583848 +2.500,64,0.2540807541,0.810494702,6.436602987e-06 +2.500,128,0.2545593178,0.812738246,6.069819905e-06 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/final_report.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/final_report.md" new file mode 100644 index 000000000..162be7633 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/final_report.md" @@ -0,0 +1,27 @@ +# Issue #86 Track A reproduction report + +## Data integrity + +- Slurm array 22958313: 96/96 cells completed with exit code 0:0. +- 96 summaries, 96 raw-block files, 96 metadata files, and zero non-empty stderr logs. +- Each cell used 10,000 thermalization and 100,000 measurement sweeps with two independent seeds per point. +- Coupling normalization errors are at floating-point roundoff. + +## Critical finite-size values + +| sigma | Rp(L=64) | Rp(128) | Rp(256) | Rp(512) | Qm(512) | eta, L>=64 | eta, L>=128 | +|---:|---:|---:|---:|---:|---:|---:|---:| +| 1.75 | -0.57267 | -0.53124 | -0.50906 | -0.45422 | 0.74199 | 0.3834 | 0.3729 | +| 1.875 | -0.40894 | -0.36351 | -0.30338 | -0.27176 | 0.78523 | 0.3290 | 0.3204 | +| 2.0 | -0.27337 | -0.21115 | -0.18811 | -0.13079 | 0.81589 | 0.2962 | 0.2915 | +| 2.5 | -0.03368 | -0.00506 | 0.00267 | 0.00919 | 0.85208 | 0.2541 | 0.2546 | + +## Assessment + +The finite-size trends are reproduced: Rp and Qm vary smoothly with L; sigma=2.5 approaches the short-range anchors (Rp=0, Qm=0.857, eta=0.25), while sigma<=2 remains visibly separated at L=512. +At sigma=1.875, L=512 gives Rp=-0.27176 and Qm=0.78523, moving toward the published thermodynamic estimates -0.207(9) and 0.815(8). The school-scale eta estimates (0.3290 using L>=64 and 0.3204 using L>=128) remain above the published 0.293(3), demonstrating the stated strong finite-size corrections. +The unrestricted three-parameter correction fits are weakly identified with only four sizes; after dropping L=64 they are underdetermined. Power and logarithmic corrections produce model-dependent limits, and AICc is undefined for n=4,k=3. BIC is reported, but it is not sufficient for a stable boundary verdict. + +**Locked conclusion: finite-size reproduction successful; thermodynamic discrimination between the competing crossover scenarios is inconclusive at L<=512.** + +This follows Issue #86's no-one-fit rule and is not a failure: the raw data reproduce the expected school-scale drift, but do not justify selecting a thermodynamic scenario. diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/finite_size_fits.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/finite_size_fits.csv" new file mode 100644 index 000000000..9465513e2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis/finite_size_fits.csv" @@ -0,0 +1,33 @@ +sigma,observable,Lmin,model,Oinf,amplitude,shape,rss,AICc,BIC,status +1.750,Rp,64,power,0.5712658817,-1.409986547,0.05,0.0001986268295,NaN,-35.48262525,rankable +1.750,Rp,64,log,-0.1162103601,-2.972595523,0.1,0.0003115211933,NaN,-33.6824671,rankable +1.750,Rp,128,power,0.6103065475,-1.462064734,0.05,0.000192527678,NaN,-25.6658119,underdetermined +1.750,Rp,128,log,-0.06987167006,-3.343696292,0.1,0.0002588065807,NaN,-24.7782887,underdetermined +1.750,Qm,64,power,1.120664509,-0.5187448223,0.05,9.131239185e-06,NaN,-47.80153094,rankable +1.750,Qm,64,log,0.8683918709,-1.098501993,0.1,1.597722232e-05,NaN,-45.56368018,rankable +1.750,Qm,128,power,1.113223711,-0.5088191905,0.05,8.909688021e-06,NaN,-34.88511399,underdetermined +1.750,Qm,128,log,0.8771140166,-1.168352801,0.1,1.410959513e-05,NaN,-33.50596646,underdetermined +1.875,Rp,64,power,0.02308624618,-0.9562089329,0.19,9.734766148e-05,NaN,-38.33518175,rankable +1.875,Rp,64,log,0.1690556883,-3.754453461,0.1,0.000107417299,NaN,-37.94145163,rankable +1.875,Rp,128,power,-0.2368976082,-11.53973352,0.93,1.098525962e-09,NaN,-61.88788977,underdetermined +1.875,Rp,128,log,-0.1701429061,-0.2969318179,27.56175652,1.262359899e-10,NaN,-68.37860408,underdetermined +1.875,Qm,64,power,0.9110588407,-0.3003535802,0.14,2.828254921e-06,NaN,-52.48969705,rankable +1.875,Qm,64,log,0.9164067586,-1.122467642,0.1,4.637784774e-06,NaN,-50.51138926,rankable +1.875,Qm,128,power,0.8092916575,-0.7440225713,0.55,3.098256182e-10,NaN,-65.6850345,underdetermined +1.875,Qm,128,log,0.8452226324,-0.2644091713,6.239765783,2.638384206e-12,NaN,-79.98256329,underdetermined +2.000,Rp,64,power,0.5225113911,-1.152124269,0.09,0.00026865898,NaN,-34.27456522,rankable +2.000,Rp,64,log,0.2816788364,-3.58069627,0.1,0.0002877955475,NaN,-33.9993353,rankable +2.000,Rp,128,power,0.979852385,-1.525449412,0.05,0.0002120049114,NaN,-25.37670335,underdetermined +2.000,Rp,128,log,0.2701592712,-3.488442486,0.1,0.000284537813,NaN,-24.49393321,underdetermined +2.000,Qm,64,power,0.8618506181,-0.2867556387,0.29,1.444896598e-05,NaN,-45.96584518,rankable +2.000,Qm,64,log,0.9155946972,-0.7529399822,0.2921606854,1.39822394e-05,NaN,-46.09718495,rankable +2.000,Qm,128,power,1.118980711,-0.4156122672,0.05,7.788983334e-06,NaN,-35.28840065,underdetermined +2.000,Qm,128,log,0.9260070997,-0.9534316916,0.1,1.170079693e-05,NaN,-34.06756081,underdetermined +2.500,Rp,64,power,0.0105266277,-16.17589453,1.42,4.62249786e-06,NaN,-50.52459571,rankable +2.500,Rp,64,log,0.02272961882,-0.0394712304,31.76989663,2.032313223e-06,NaN,-53.81163794,rankable +2.500,Rp,128,power,0.04358714624,-0.1636398724,0.25,7.748128416e-11,NaN,-69.84295411,underdetermined +2.500,Rp,128,log,0.08271757319,-0.6280674911,0.1,3.929548761e-10,NaN,-64.97197899,underdetermined +2.500,Qm,64,power,0.859042193,-0.202979222,0.53,2.37640902e-06,NaN,-53.18597446,rankable +2.500,Qm,64,log,0.8704760308,-0.08899322553,4.635969473,2.161623412e-06,NaN,-53.56489852,rankable +2.500,Qm,128,power,0.95806975,-0.1453262083,0.05,8.909256103e-07,NaN,-41.79301471,underdetermined +2.500,Qm,128,log,0.8906035435,-0.3334658459,0.1,1.355186663e-06,NaN,-40.53471406,underdetermined diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/aggregated_partial.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/aggregated_partial.csv" new file mode 100644 index 000000000..689e2c97f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/aggregated_partial.csv" @@ -0,0 +1,37 @@ +sigma,L,beta,Rp,Rp_seed_se,Qm,Qm_seed_se,chi,tau_m2_max +1.75,64,0.327136,-1.019095,0.0071949999999999514,0.6122925398031167,0.0015191555971981185,396.0063387109375,4.434937913290691 +1.75,64,0.329136,-0.57267,2.999999999997449e-05,0.6990594751933943,0.0008459518207263872,540.299388305664,5.3633636582391615 +1.75,64,0.331136,-0.11495499999999997,0.0014649999999999939,0.7844918838734362,0.0003806897007865295,708.0887028857421,5.988957954789244 +1.75,128,0.327136,-1.345275,0.0026749999999999825,0.5476948742664083,0.000309662715729686,864.9614192565919,4.395063882042119 +1.75,128,0.329136,-0.53124,0.007140000000000035,0.7152096755051935,0.0016263209986605574,1636.9327226062012,6.1305999213003854 +1.75,128,0.331136,0.36456,0.006500000000000033,0.8735320972517865,0.0015834320378890208,2689.2475710510253,6.873257484821232 +1.75,256,0.327136,-1.75933,0.0007399999999999629,0.44540613768755843,0.0007279295747197045,1392.7509177493287,3.120647726159905 +1.75,256,0.329136,-0.5090600000000001,0.007130000000000025,0.7251738257960704,0.0009456444473282533,4981.551713818359,7.216903617926508 +1.75,256,0.331136,0.84127,0.0013499999999999621,0.9548141123878255,0.0004972916876206934,10886.11301824127,7.310636205628091 +1.875,64,0.334985,-0.86446,0.008500000000000008,0.6553014223791491,0.0005536550643529535,502.66888696777346,4.601810091262582 +1.875,64,0.336985,-0.40893999999999997,0.005039999999999989,0.7436036282295417,0.0014097986403284744,669.8967337207031,5.086975141927036 +1.875,64,0.338985,0.05404499999999998,0.005704999999999987,0.8246712830561107,0.0010711048520525843,860.3893959375,5.549705797745135 +1.875,128,0.334985,-1.233375,0.0009250000000001757,0.5848411063216987,0.0009810087279887856,1150.6436298986816,4.687936114639411 +1.875,128,0.336985,-0.36350499999999997,0.009255000000000013,0.7577009101114902,0.0031508140990352262,2104.6460445336916,6.433400104121065 +1.875,128,0.338985,0.469905,0.008894999999999985,0.8992001192290788,0.001530581806778619,3250.2259049304203,6.214774085788235 +1.875,256,0.334985,-1.71282,0.004189999999999916,0.47247320061357334,0.0012235299328124671,1938.5232674057006,3.3494818809973372 +1.875,256,0.336985,-0.30338,0.004479999999999984,0.7740358905572498,0.0019774907970371847,6734.120234640197,6.868768274544465 +1.875,256,0.338985,0.86162,0.005830000000000002,0.9627759544264044,0.0008968324978653186,12967.564375917053,5.984282968886087 +2.0,64,0.342439,-0.729875,0.000925000000000009,0.6906935419306997,0.0009524239999918471,609.8646524511719,4.831383533910204 +2.0,64,0.344439,-0.27337500000000003,0.0010150000000000159,0.7753066218558056,0.0006890451702322163,795.62189328125,5.182226483073607 +2.0,64,0.346439,0.150745,0.0018150000000000386,0.8484574134093554,7.323642440243416e-05,988.9933065576172,5.294920787154871 +2.0,128,0.342439,-1.11442,0.0043999999999999595,0.6218126360840068,0.0006040253545765983,1462.2236404492187,4.646312197041315 +2.0,128,0.344439,-0.21114999999999998,0.02142000000000002,0.7940175078351643,0.00535123564004386,2582.772619916992,5.904261058802786 +2.0,128,0.346439,0.5268249999999999,0.0005750000000000477,0.9136367022795591,0.0011764026415114759,3738.4743226904297,5.695668442293344 +2.0,256,0.342439,-1.64115,0.003620000000000067,0.4968424236039276,0.003351915575976777,2630.9768625698853,4.003232319267759 +2.0,256,0.344439,-0.18810999999999997,0.002349999999999991,0.8017268862259639,0.00010585069996144057,8335.673949806518,7.009625327133042 +2.0,256,0.346439,0.86817,0.0008099999999999773,0.9669509230110738,0.0004384136819428064,14787.627322532959,5.7514395150414614 +2.5,64,0.367446,-0.433825,0.010995000000000059,0.769096727668334,0.0020580429603754835,952.0912816162108,4.783032817005111 +2.5,64,0.369446,-0.03367999999999999,0.00716,0.8364134877500884,0.0015970428726544972,1153.5873803417967,4.531419900753455 +2.5,64,0.371446,0.32030499999999995,0.0026250000000000158,0.8915492095299913,0.00021974120654516538,1360.047071201172,4.741648408317867 +2.5,128,0.367446,-0.86324,0.0010600000000000054,0.692391373679943,0.0004997691424262207,2468.834774591064,4.960722699888125 +2.5,128,0.369446,-0.005060000000000037,0.0002500000000000002,0.8444277631320786,0.0009734111138209877,3876.1227174353025,5.580085330556553 +2.5,128,0.371446,0.592285,0.005395000000000039,0.932852057704021,0.0007007191023725711,5104.406744532471,4.827266339919963 +2.5,256,0.367446,-1.495905,0.000995000000000079,0.553876067683799,0.002155124648741846,4878.4062680548095,4.369891482506522 +2.5,256,0.369446,0.0026700000000000057,0.0056599999999999975,0.8471624360538752,0.0014002654808581425,12957.376469917603,5.994515622733402 +2.5,256,0.371446,0.86591,0.0012199999999999434,0.9724022823810021,0.00028541894670469636,20049.614086080015,4.984650123387343 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/crossings_partial.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/crossings_partial.csv" new file mode 100644 index 000000000..3190a3c07 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/crossings_partial.csv" @@ -0,0 +1,17 @@ +sigma,observable,L,2L,beta_cross,status +1.75,Rp,64,128,0.32881368613846845,interpolated +1.75,Rp,128,256,0.3290090155166252,interpolated +1.75,Qm,64,128,0.3287837192695786,interpolated +1.75,Qm,128,256,0.3292162057411926,interpolated +1.875,Rp,64,128,0.33682804630838986,interpolated +1.875,Rp,128,256,0.3370272501798368,interpolated +1.875,Qm,64,128,0.3368179456448475,interpolated +1.875,Qm,128,256,0.3372309656698443,interpolated +2.0,Rp,64,128,0.34434476170912076,interpolated +2.0,Rp,128,256,0.3446883563344181,interpolated +2.0,Qm,64,128,0.34428972109799066,interpolated +2.0,Qm,128,256,0.3449172366559311,interpolated +2.5,Rp,64,128,0.36969087390604916,interpolated +2.5,Rp,128,256,0.36996284707249705,interpolated +2.5,Qm,64,128,0.36975545002048443,interpolated +2.5,Qm,128,256,0.37016656175449264,interpolated diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/partial_report.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/partial_report.md" new file mode 100644 index 000000000..a1709fc81 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/analysis_partial/partial_report.md" @@ -0,0 +1,34 @@ +# Track A partial validation (L <= 256) + +- Complete cells: 72/72 expected partial cells +- Maximum tau_int(m2): 7.311 +- Maximum |sumJ-4|: 2.220e-15 + +## sigma=2.5 central-beta control + +| L | Rp | Qm | chi | +|---:|---:|---:|---:| +| 64 | -0.033680 | 0.836413 | 1153.587 | +| 128 | -0.005060 | 0.844428 | 3876.123 | +| 256 | 0.002670 | 0.847162 | 12957.376 | + +## Preliminary crossings + +| sigma | obs | L/2L | beta | status | +|---:|:---:|:---:|---:|:---| +| 1.75 | Rp | 64/128 | 0.3288137 | interpolated | +| 1.75 | Rp | 128/256 | 0.3290090 | interpolated | +| 1.75 | Qm | 64/128 | 0.3287837 | interpolated | +| 1.75 | Qm | 128/256 | 0.3292162 | interpolated | +| 1.875 | Rp | 64/128 | 0.3368280 | interpolated | +| 1.875 | Rp | 128/256 | 0.3370273 | interpolated | +| 1.875 | Qm | 64/128 | 0.3368179 | interpolated | +| 1.875 | Qm | 128/256 | 0.3372310 | interpolated | +| 2.0 | Rp | 64/128 | 0.3443448 | interpolated | +| 2.0 | Rp | 128/256 | 0.3446884 | interpolated | +| 2.0 | Qm | 64/128 | 0.3442897 | interpolated | +| 2.0 | Qm | 128/256 | 0.3449172 | interpolated | +| 2.5 | Rp | 64/128 | 0.3696909 | interpolated | +| 2.5 | Rp | 128/256 | 0.3699628 | interpolated | +| 2.5 | Qm | 64/128 | 0.3697555 | interpolated | +| 2.5 | Qm | 128/256 | 0.3701666 | interpolated | diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/blocks.csv" new file mode 100644 index 000000000..49ceba36b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09643399639129639,-1.0136,1112.0918 +2,0.09534741249084473,-1.0266,1105.0812 +3,0.09610495219230653,-1.0318,1114.546 +4,0.09822653632164001,-0.9934,1124.8632 +5,0.10099384450912476,-0.9954,1146.8004 +6,0.09530471067428589,-1.0198,1107.3528 +7,0.0963475664138794,-1.0076,1114.787 +8,0.09898156609535218,-0.9908,1129.3912 +9,0.09883684458732606,-1.016,1127.9692 +10,0.09780300559997558,-1.0068,1121.4768 +11,0.0976774465084076,-0.992,1122.7768 +12,0.09887975425720215,-0.9692,1134.8642 +13,0.09673821482658386,-1.0366,1115.4194 +14,0.10088812022209168,-0.9692,1146.9934 +15,0.09619827837944031,-1.0398,1112.151 +16,0.09749350590705871,-1.0234,1114.9488 +17,0.10271514673233033,-0.9606,1150.4746 +18,0.09580378561019898,-1.0168,1111.1038 +19,0.09519413437843323,-1.0426,1113.4152 +20,0.09277881522178649,-1.086,1085.3318 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/metadata.txt" new file mode 100644 index 000000000..1f9fb234b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:39.393 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958315 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/summary.csv" new file mode 100644 index 000000000..e931bb5a9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/001/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.327136,11002,10000,100000,0.2786925244140625,0.09743738186597824,0.015467354982059528,0.6138116954003148,399.10351612304686,0.59212,0.17234,-1.0119,1120.59193,0.0005230599433506921,0.0065796256492456,4.434937913290691,20,80.5488851070404,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/blocks.csv" new file mode 100644 index 000000000..cfb78a4d1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09660514960289002,-1.0118,1116.4786 +2,0.09250084009170532,-1.0622,1088.0874 +3,0.09046711807250976,-1.0774,1084.3656 +4,0.09908666067123413,-0.998,1129.9264 +5,0.10096299638748168,-0.9774,1142.9118 +6,0.09087196049690247,-1.107,1076.7266 +7,0.10364299173355103,-0.9268,1159.3106 +8,0.09518197679519654,-1.0504,1100.8956 +9,0.09531083154678345,-1.0332,1108.0262 +10,0.09469075422286988,-1.0368,1099.0878 +11,0.08838802523612976,-1.0996,1062.8814 +12,0.09541184730529785,-1.021,1103.2684 +13,0.09798874073028564,-0.9956,1128.4846 +14,0.09436117997169495,-1.0366,1104.8954 +15,0.09814982628822326,-1.0076,1131.2678 +16,0.09216448402404785,-1.0726,1081.8034 +17,0.09827758870124817,-0.9994,1127.7944 +18,0.09764506292343139,-1.0242,1123.1834 +19,0.09970585317611694,-0.9816,1133.084 +20,0.0970878761768341,-1.0066,1112.648 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/metadata.txt" new file mode 100644 index 000000000..ce428a884 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:38.090 +hostname=a06r02n01 +julia=1.12.6 +slurm_job=22958316 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/summary.csv" new file mode 100644 index 000000000..5f2518573 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/002/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.327136,22004,10000,100000,0.2760883447265625,0.0959250882077217,0.015065526405710107,0.6107733842059185,392.9091612988281,0.59631,0.16633,-1.02629,1110.75637,0.0008459070751942889,0.009802110138021031,4.396393183370368,20,79.36017203330994,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/blocks.csv" new file mode 100644 index 000000000..96c11c378 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1314429621696472,-0.5804,1355.7774 +2,0.13221343836784363,-0.5788,1360.0804 +3,0.13145392127037048,-0.5932,1356.8336 +4,0.12942732963562012,-0.6162,1340.9488 +5,0.1326529187679291,-0.5886,1361.8424 +6,0.13350832324028014,-0.5458,1368.4636 +7,0.12609280695915223,-0.6344,1330.059 +8,0.12517126355171204,-0.6396,1314.4398 +9,0.1349777717590332,-0.5402,1369.0766 +10,0.13632924880981445,-0.5418,1384.158 +11,0.13929279379844667,-0.4962,1398.4814 +12,0.1353156207084656,-0.4936,1388.1866 +13,0.1228798481464386,-0.6558,1303.9788 +14,0.13274396858215332,-0.563,1362.9302 +15,0.13722652034759522,-0.5018,1388.635 +16,0.1292951666355133,-0.6138,1341.3386 +17,0.13474052729606628,-0.5614,1368.733 +18,0.13128841514587403,-0.5746,1351.5102 +19,0.13432075638771057,-0.551,1371.8008 +20,0.131617546749115,-0.5838,1356.5956 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/metadata.txt" new file mode 100644 index 000000000..bdd04c898 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:53:02.739 +hostname=f13r07 +julia=1.12.6 +slurm_job=22958317 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/summary.csv" new file mode 100644 index 000000000..88356e152 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/003/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.329136,11004,10000,100000,0.3346206689453125,0.13209955741643906,0.024992774395612895,0.6982135233726678,541.0797871777344,0.4327,0.2927,-0.5727,1358.69349,0.0009104689138810821,0.010289130698281355,5.3633636582391615,20,99.92384696006775,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/blocks.csv" new file mode 100644 index 000000000..ce68ec5f5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.13144907307624817,-0.5664,1356.069 +2,0.13400181679725648,-0.5738,1369.7642 +3,0.12932975373268127,-0.5806,1338.5252 +4,0.13152078294754027,-0.5362,1358.1544 +5,0.1316518829345703,-0.5766,1355.4118 +6,0.1280475494861603,-0.6316,1329.7712 +7,0.13652771310806275,-0.53,1380.3818 +8,0.13884492506980897,-0.5036,1396.0326 +9,0.1312550649166107,-0.5678,1355.4298 +10,0.13339357209205627,-0.5682,1365.5528 +11,0.12631243567466735,-0.624,1325.6206 +12,0.1438079406261444,-0.4484,1430.6902 +13,0.12875724744796752,-0.5608,1343.2264 +14,0.12873867220878601,-0.6054,1338.0408 +15,0.1227528796672821,-0.682,1305.1762 +16,0.13040553402900695,-0.583,1342.2438 +17,0.13085714025497436,-0.6142,1347.2082 +18,0.13429778113365173,-0.547,1373.7534 +19,0.13040534105300902,-0.5796,1346.4384 +20,0.1320129593372345,-0.5736,1353.8468 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/metadata.txt" new file mode 100644 index 000000000..8529cf26f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:28.424 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958318 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/summary.csv" new file mode 100644 index 000000000..3c8b822b8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/004/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.329136,22006,10000,100000,0.334234912109375,0.13171850327968598,0.024788726357297723,0.6999054270141206,539.5189894335938,0.43268,0.29272,-0.57264,1355.56688,0.001007585956753111,0.010923066852934857,5.320664647249277,20,70.92860794067383,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/blocks.csv" new file mode 100644 index 000000000..f2be60dff --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.17490871148109435,-0.081,1621.506 +2,0.17605727891921996,-0.0908,1626.2062 +3,0.17311707558631897,-0.1202,1614.834 +4,0.17409210963249205,-0.089,1616.0804 +5,0.1765663146018982,-0.0942,1629.1858 +6,0.17796436638832092,-0.079,1630.7966 +7,0.174575848197937,-0.1144,1608.9348 +8,0.17567787823677064,-0.0832,1621.6632 +9,0.17463672409057618,-0.1214,1615.136 +10,0.17145317192077636,-0.1376,1596.711 +11,0.1732026589870453,-0.1366,1604.561 +12,0.17763057055473327,-0.059,1638.4402 +13,0.1702165843486786,-0.1446,1593.3504 +14,0.16742925310134887,-0.1804,1572.6416 +15,0.1697135196208954,-0.1336,1597.2152 +16,0.17435116629600525,-0.0874,1610.8148 +17,0.1747606635570526,-0.1132,1616.4892 +18,0.1705626200199127,-0.1424,1597.1974 +19,0.1699455466747284,-0.1374,1591.2556 +20,0.16634959659576415,-0.183,1571.2712 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/metadata.txt" new file mode 100644 index 000000000..8ebfc8eae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:27.955 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958319 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/summary.csv" new file mode 100644 index 000000000..f8ced9f99 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/005/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.331136,11006,10000,100000,0.3943558935546875,0.17316058294057846,0.038203128117694905,0.7848725735742227,709.2657477246094,0.28034,0.44426,-0.11641999999999997,1608.71453,0.0007277561074078283,0.007511337395809364,5.988957954789244,20,70.46320486068726,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/blocks.csv" new file mode 100644 index 000000000..0e3656897 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.17038758220672606,-0.1432,1590.211 +2,0.16482935996055603,-0.1944,1559.5776 +3,0.17335790586471558,-0.0876,1617.4546 +4,0.17258968954086304,-0.1134,1606.165 +5,0.18044977741241455,-0.0432,1641.836 +6,0.17317745671272278,-0.119,1611.2286 +7,0.16890910806655884,-0.1478,1584.8822 +8,0.17101539902687074,-0.1122,1604.797 +9,0.17643839154243468,-0.074,1634.7292 +10,0.1711791663646698,-0.1352,1598.5678 +11,0.1682528084754944,-0.138,1584.966 +12,0.17040774755477905,-0.1278,1594.2392 +13,0.1691846260070801,-0.1362,1586.249 +14,0.17172926621437073,-0.1456,1596.565 +15,0.17616950206756593,-0.072,1627.7758 +16,0.18066505494117738,-0.0156,1654.4524 +17,0.17572309641838074,-0.08,1625.5818 +18,0.17849393382072448,-0.0808,1634.4332 +19,0.1668548581123352,-0.1782,1575.7864 +20,0.17190234999656678,-0.1256,1610.172 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/metadata.txt" new file mode 100644 index 000000000..b4ac9a17e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:31.088 +hostname=a02r08n08 +julia=1.12.6 +slurm_job=22958320 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/summary.csv" new file mode 100644 index 000000000..47ebbd2b9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/006/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.75,0.331136,22008,10000,100000,0.39348998046875,0.17258585401535034,0.03798680241727223,0.7841111941726496,706.911658046875,0.27934,0.44519,-0.11348999999999998,1606.98349,0.0009632528546089015,0.009795342341079628,5.801198647454892,20,73.13085412979126,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/blocks.csv" new file mode 100644 index 000000000..6a161b837 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.05209053575694561,-1.358,3134.2536 +2,0.05247771600484848,-1.3438,3168.2916 +3,0.05321692637503147,-1.3468,3177.7086 +4,0.0535377194583416,-1.3306,3206.2338 +5,0.053749509367346765,-1.3296,3201.4786 +6,0.054856574645638465,-1.3144,3233.0428 +7,0.05016370500326157,-1.378,3072.7818 +8,0.05319874656498432,-1.346,3196.687 +9,0.052913121351599694,-1.3468,3157.8642 +10,0.051786611595749855,-1.3626,3116.3784 +11,0.054836032021045686,-1.2992,3232.6876 +12,0.05490692116916179,-1.3014,3268.4086 +13,0.050843730068206784,-1.3762,3084.67 +14,0.05358499329984188,-1.345,3209.0056 +15,0.05138969032466412,-1.3632,3126.524 +16,0.05174293322563171,-1.3652,3137.815 +17,0.05327147244513035,-1.3374,3200.3568 +18,0.052436477622389795,-1.3436,3162.1386 +19,0.05217587166428566,-1.3586,3161.722 +20,0.05531063959896564,-1.3056,3237.425 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/metadata.txt" new file mode 100644 index 000000000..ae5cd039b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:57:04.460 +hostname=a02r08n08 +julia=1.12.6 +slurm_job=22958321 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/summary.csv" new file mode 100644 index 000000000..7f20b93bb --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/007/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.327136,11008,10000,100000,0.20010685668945313,0.052924496378153565,0.005117058805710656,0.5473852115506785,867.114948659668,0.71865,0.0947,-1.3426,3174.27368,0.0003140421632088465,0.005219074328087817,4.395063882042119,20,321.8595600128174,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/blocks.csv" new file mode 100644 index 000000000..c391dd3c0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.05503969155550003,-1.3236,3245.2464 +2,0.051385389575362206,-1.3542,3110.6584 +3,0.05467116113603115,-1.3182,3226.6638 +4,0.05413186732530594,-1.3222,3233.543 +5,0.0537073154181242,-1.3342,3218.7206 +6,0.053392599195241926,-1.338,3182.3388 +7,0.05528832501173019,-1.31,3250.532 +8,0.05332932496964932,-1.36,3164.0882 +9,0.05283540986180305,-1.3208,3179.2452 +10,0.051695859882235524,-1.3484,3131.217 +11,0.050540547174215314,-1.3916,3103.9946 +12,0.051280639547109604,-1.3776,3126.8912 +13,0.05530836017131805,-1.2932,3262.156 +14,0.049317095589637754,-1.3938,3067.8498 +15,0.050800008139014245,-1.3856,3092.0556 +16,0.05322528429627418,-1.353,3188.194 +17,0.05010764221251011,-1.3824,3092.267 +18,0.05365968753695488,-1.323,3212.4534 +19,0.051846589505672454,-1.3774,3165.0278 +20,0.05166948931515217,-1.3518,3144.5602 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/metadata.txt" new file mode 100644 index 000000000..e1c03bd03 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:57:55.139 +hostname=a06r05n01 +julia=1.12.6 +slurm_job=22958322 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/summary.csv" new file mode 100644 index 000000000..7c01dced5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/008/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.327136,22010,10000,100000,0.19952679443359375,0.05266161437094211,0.005060625306910936,0.5480045369821379,862.8078898535156,0.72081,0.09367,-1.34795,3169.88515,0.0004005521678062195,0.006650997155156111,4.236154391054735,20,366.73086190223694,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/blocks.csv" new file mode 100644 index 000000000..16d6216c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09783280086517333,-0.5674,4708.4634 +2,0.1029590425312519,-0.4822,4831.3944 +3,0.10092987489402294,-0.521,4787.051 +4,0.1042131860256195,-0.4696,4870.5492 +5,0.10176766683757305,-0.4912,4799.913 +6,0.10227130275964737,-0.4856,4828.7632 +7,0.10065924189090729,-0.5034,4791.6878 +8,0.09613728166222572,-0.593,4655.4594 +9,0.10313592573404312,-0.4732,4847.7724 +10,0.09806654219627381,-0.5558,4697.1684 +11,0.09311184886693954,-0.6256,4563.4956 +12,0.09688704903721809,-0.5908,4674.385 +13,0.09846754158735276,-0.5664,4719.7872 +14,0.09834133862257004,-0.5754,4711.0272 +15,0.10186853224337102,-0.5154,4817.933 +16,0.0952180279046297,-0.5978,4650.8422 +17,0.0970220535159111,-0.5694,4649.831 +18,0.10268935611248016,-0.512,4819.9836 +19,0.09872664252221584,-0.5412,4733.409 +20,0.09979096443355083,-0.5312,4732.9954 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/metadata.txt" new file mode 100644 index 000000000..7ecfb0c18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:58:05.653 +hostname=a06r05n01 +julia=1.12.6 +slurm_job=22958323 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/summary.csv" new file mode 100644 index 000000000..a7cdfda95 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/009/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.329136,11010,10000,100000,0.29184087890625,0.09950481101214886,0.013875334047569653,0.713583354506533,1630.286823623047,0.4193,0.30022,-0.5383800000000001,4744.59557,0.0006703029027691848,0.010398490781181458,6.1305999213003854,20,377.1856789588928,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/blocks.csv" new file mode 100644 index 000000000..161e2edab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09897129361331462,-0.5622,4734.1676 +2,0.10026355616748334,-0.5224,4770.6778 +3,0.09942002620995044,-0.535,4736.0306 +4,0.09578910376131534,-0.5766,4650.7466 +5,0.10692779706418515,-0.4364,4934.2214 +6,0.10158060588538646,-0.5034,4809.4382 +7,0.10565506257116794,-0.4366,4930.7288 +8,0.09324486726522446,-0.6166,4564.492 +9,0.10324530471265315,-0.4834,4853.9382 +10,0.09931883822977543,-0.5272,4747.1476 +11,0.103329031676054,-0.4568,4879.2358 +12,0.10044983304440976,-0.514,4764.8534 +13,0.10441188138723373,-0.4692,4857.1888 +14,0.10066874203383923,-0.5344,4793.9684 +15,0.09926599712967872,-0.5476,4729.6348 +16,0.09430879827141762,-0.6164,4601.05 +17,0.09958287272453308,-0.5422,4755.4348 +18,0.09992284488976001,-0.543,4762.129 +19,0.0988740064650774,-0.5254,4756.8198 +20,0.10109109645485878,-0.5332,4774.85 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/metadata.txt" new file mode 100644 index 000000000..3f75105c3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:57:32.828 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958324 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/summary.csv" new file mode 100644 index 000000000..8edb575c3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/010/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.329136,22012,10000,100000,0.2932711413574219,0.10031607797786593,0.014038518642955971,0.7168359965038541,1643.5786215893554,0.41444,0.30478,-0.5241,4770.33768,0.0007661616310028863,0.011229683409325671,5.848092197901233,20,345.29772901535034,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/blocks.csv" new file mode 100644 index 000000000..a44fe92b5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16557896257042884,0.3808,6489.1936 +2,0.1693434509217739,0.42,6552.183 +3,0.1611416118592024,0.329,6385.4202 +4,0.16344235190451145,0.346,6424.854 +5,0.1653899371743202,0.3926,6496.141 +6,0.1667307998687029,0.3688,6489.383 +7,0.16690874931812286,0.4038,6521.0068 +8,0.16246695616841317,0.3284,6397.8228 +9,0.16759914322495462,0.426,6549.4648 +10,0.16138285974860192,0.3196,6369.7082 +11,0.16497321300804615,0.366,6466.7136 +12,0.16260078159868718,0.3514,6394.191 +13,0.169112019020319,0.4204,6570.1644 +14,0.1637497882694006,0.3598,6452.5504 +15,0.16519903774857522,0.394,6484.4254 +16,0.1621957013517618,0.3806,6437.3354 +17,0.1659233200252056,0.3872,6492.8042 +18,0.15936054931282997,0.3026,6344.2866 +19,0.1661023379713297,0.3608,6467.404 +20,0.1656516887485981,0.3834,6490.234 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/metadata.txt" new file mode 100644 index 000000000..72ab8ddee --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:57:46.062 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958325 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/summary.csv" new file mode 100644 index 000000000..9a7327422 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/011/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.331136,11012,10000,100000,0.395038583984375,0.16474266299068926,0.03101321379966056,0.8751155292896755,2699.143790439453,0.13218,0.63542,0.37106,6463.76432,0.0005952985123218235,0.007730637612431256,6.873257484821232,20,362.8631749153137,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/blocks.csv" new file mode 100644 index 000000000..715dafd5e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16812605941593647,0.4036,6528.647 +2,0.16093381546139718,0.311,6367.7452 +3,0.1624485281765461,0.3314,6409.0392 +4,0.16589356257617474,0.3952,6492.0584 +5,0.16255571530759336,0.3544,6420.57 +6,0.16491302201747896,0.356,6476.97 +7,0.17063139747977257,0.4492,6616.4534 +8,0.1654500252366066,0.3944,6481.4568 +9,0.1633558916181326,0.3566,6432.4152 +10,0.16400167768299578,0.3588,6450.662 +11,0.16194807292222976,0.3158,6387.4636 +12,0.15926328176856042,0.3092,6338.3314 +13,0.16106895696520807,0.3526,6380.5156 +14,0.16168988764584064,0.3356,6390.2488 +15,0.16524044698476792,0.3858,6482.8502 +16,0.16694032362401484,0.3998,6520.1636 +17,0.16445261838436126,0.345,6431.2444 +18,0.15950715198218823,0.3228,6335.043 +19,0.16004329386651517,0.3264,6352.5372 +20,0.1622288388311863,0.3576,6423.1302 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/metadata.txt" new file mode 100644 index 000000000..37e9f8ca5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:57:30.997 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958326 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/summary.csv" new file mode 100644 index 000000000..67d886cce --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/012/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.75,0.331136,22014,10000,100000,0.39324531372070315,0.16353462839737534,0.030671042633578872,0.8719486652138975,2679.3513516625976,0.13633,0.63072,0.35805999999999993,6435.87726,0.000663803564567918,0.008217710015249798,6.358540080300822,20,346.13217306137085,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/blocks.csv" new file mode 100644 index 000000000..70a7e4757 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.021378451712802053,-1.7574,7509.5066 +2,0.020923728053830564,-1.7592,7354.7718 +3,0.020862972894124688,-1.7652,7350.203 +4,0.021189505782164633,-1.7698,7481.5932 +5,0.020283690396510064,-1.7702,7302.4768 +6,0.020728780234232545,-1.7672,7225.3254 +7,0.021472840583510698,-1.7504,7439.3408 +8,0.021277791282348336,-1.7482,7456.1508 +9,0.022049535181932152,-1.732,7609.4138 +10,0.019401006660610436,-1.801,7070.0888 +11,0.019680200341902675,-1.7872,7157.9568 +12,0.021648723549954594,-1.7612,7557.0038 +13,0.02151816757954657,-1.759,7529.7198 +14,0.021750841904617846,-1.752,7522.9338 +15,0.022814249337650836,-1.7448,7734.373 +16,0.02125337463468313,-1.7742,7462.0516 +17,0.021736658308282496,-1.7618,7566.8272 +18,0.021554803777858615,-1.7538,7513.0092 +19,0.022373821564018726,-1.7354,7609.2046 +20,0.021465345745906233,-1.7514,7489.1194 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/metadata.txt" new file mode 100644 index 000000000..e74195196 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:11.827 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22958327 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/summary.csv" new file mode 100644 index 000000000..6c5637122 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/013/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.327136,11014,10000,100000,0.12161050567626953,0.021268224476324395,0.0010172240602816809,0.44467820811283876,1393.8343592803956,0.89091,0.02175,-1.76007,7447.05351,0.00018220602281888908,0.0036064350381242844,3.0846546691506394,20,1577.8003170490265,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/blocks.csv" new file mode 100644 index 000000000..20bae0ebd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.02070045690778643,-1.7698,7367.0042 +2,0.0206235202152282,-1.7622,7323.4024 +3,0.02122320210170001,-1.7434,7500.0474 +4,0.02117897219657898,-1.7514,7472.831 +5,0.021183346576429903,-1.7652,7417.6968 +6,0.021348757205158473,-1.7704,7489.1652 +7,0.020756216868758202,-1.776,7337.395 +8,0.021979211795330047,-1.7526,7620.2652 +9,0.0207541075354442,-1.7628,7436.134 +10,0.020912938823737202,-1.779,7427.4124 +11,0.020323788219690324,-1.7678,7350.4854 +12,0.021765163727477194,-1.755,7573.52 +13,0.0209507451813668,-1.7722,7405.0894 +14,0.02126615746207535,-1.756,7444.2578 +15,0.02114653997272253,-1.768,7410.1982 +16,0.021653008782491087,-1.745,7502.2942 +17,0.021072457926906644,-1.7562,7389.135 +18,0.022074832240492104,-1.7424,7617.8366 +19,0.022158642669022083,-1.736,7647.4922 +20,0.021631142886728048,-1.7404,7520.444 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/metadata.txt" new file mode 100644 index 000000000..048f836c5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:23.349 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22958328 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/summary.csv" new file mode 100644 index 000000000..b8488fffd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/014/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.327136,22016,10000,100000,0.12165420104980469,0.02123516046475619,0.0010107545535159627,0.44613406726227817,1391.6674762182618,0.89053,0.02247,-1.75859,7462.60532,0.00011371811338447551,0.0028328328763383053,3.120647726159905,20,1589.2475328445435,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/blocks.csv" new file mode 100644 index 000000000..f042784a9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07805898400731384,-0.4668,16919.0124 +2,0.08260470017045736,-0.3504,17633.4574 +3,0.0743815301867202,-0.547,16461.5628 +4,0.07326187064703554,-0.5962,16295.9312 +5,0.07605539422705769,-0.541,16498.3172 +6,0.07615197762548924,-0.5024,16733.8382 +7,0.07202235906720161,-0.5994,16155.5302 +8,0.07794590620696544,-0.4796,16927.4376 +9,0.07580004104599357,-0.51,16574.431 +10,0.07328966191597283,-0.5564,16333.3898 +11,0.075298111256212,-0.5278,16484.699 +12,0.07631150217112154,-0.497,16731.7816 +13,0.08007265347782522,-0.4258,17229.305 +14,0.07787748062107712,-0.4634,16994.1214 +15,0.07406361272037029,-0.5292,16504.3532 +16,0.0752098572568968,-0.513,16556.1296 +17,0.07451056720800697,-0.545,16539.325 +18,0.07329255661126226,-0.5886,16293.1398 +19,0.07122599081676453,-0.609,16110.6064 +20,0.07770648476164788,-0.4758,16820.6466 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/metadata.txt" new file mode 100644 index 000000000..3cabc3de1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:51.305 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22958329 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/summary.csv" new file mode 100644 index 000000000..5eb021a9a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/015/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.329136,11016,10000,100000,0.2554534719848633,0.07575706210006959,0.007924480993470482,0.7242281813487421,4964.814821790161,0.41103,0.30587,-0.51619,16639.85077,0.0006158971126100273,0.014138230924843835,7.216903617926508,20,1615.487487077713,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/blocks.csv" new file mode 100644 index 000000000..393237f98 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07654948163740337,-0.5162,16677.0646 +2,0.07849036602042615,-0.453,16958.4816 +3,0.07221120942719281,-0.57,16231.9726 +4,0.07481936605293303,-0.5422,16434.6546 +5,0.07515158354081214,-0.525,16570.1464 +6,0.07922499937191606,-0.4324,17176.6582 +7,0.076542993218638,-0.4922,16696.4714 +8,0.07545256264694035,-0.5326,16677.0564 +9,0.07865213986951858,-0.441,17013.1402 +10,0.07388866253439337,-0.569,16412.4134 +11,0.07783061074689031,-0.4728,16959.374 +12,0.07787453913781792,-0.4762,16907.0926 +13,0.0725088265761733,-0.57,16250.2918 +14,0.08188491782937199,-0.398,17391.95 +15,0.07503289373163134,-0.5166,16528.9448 +16,0.0743930176148191,-0.5412,16523.852 +17,0.07360209157429635,-0.5472,16458.3866 +18,0.0768214320005849,-0.491,16821.67 +19,0.07455948567260057,-0.5478,16389.3622 +20,0.07986545099783689,-0.4042,17195.764 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/metadata.txt" new file mode 100644 index 000000000..7d2365dae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:43.553 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22958330 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/summary.csv" new file mode 100644 index 000000000..4e7b00245 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/016/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.329136,22018,10000,100000,0.25654847259521485,0.07626783151010982,0.00801077833831489,0.7261194702433986,4998.288605846557,0.40539,0.30885,-0.50193,16713.73737,0.0005727802446564334,0.012138752862326158,7.042689612540829,20,1607.8695261478424,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/blocks.csv" new file mode 100644 index 000000000..3b113de41 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1665571412583813,0.8318,26508.8218 +2,0.16505111945997925,0.8484,26426.8754 +3,0.165525760082528,0.8516,26495.1112 +4,0.16430305974297227,0.8334,26374.963 +5,0.16489020828399809,0.8268,26414.9804 +6,0.16964335420522839,0.8682,26818.0018 +7,0.16659437841903418,0.8444,26552.667 +8,0.16506461580321194,0.838,26412.8362 +9,0.16995031547062098,0.8728,26825.1248 +10,0.16697318952511997,0.8368,26548.348 +11,0.16622818540725856,0.8318,26514.8332 +12,0.16899419867973775,0.8462,26715.9508 +13,0.16475069664549083,0.8642,26465.7848 +14,0.16292970811855048,0.81,26211.1856 +15,0.1667509136069566,0.8262,26516.4058 +16,0.16488196140900255,0.8468,26443.4762 +17,0.16602172597181053,0.835,26489.2046 +18,0.16575474861599504,0.8376,26478.5914 +19,0.1665640381084755,0.8476,26530.8538 +20,0.16883553010541946,0.8548,26732.8088 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/metadata.txt" new file mode 100644 index 000000000..0e61f5acf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:21:47.533 +hostname=f13r01 +julia=1.12.6 +slurm_job=22958331 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/summary.csv" new file mode 100644 index 000000000..16834e493 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/017/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.331136,11018,10000,100000,0.40481462493896486,0.16631324244598858,0.028954008603788953,0.9553114040754462,10899.504656940308,0.01934,0.8813,0.8426199999999999,26523.84123,0.0004131919331285043,0.0034001207408901777,6.453650827407921,20,1662.3353168964386,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/blocks.csv" new file mode 100644 index 000000000..e2a72a166 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1667253963727504,0.841,26562.099 +2,0.1694627841314301,0.8574,26766.2276 +3,0.16679017292037607,0.848,26546.7576 +4,0.1686003959162161,0.8614,26711.624 +5,0.16370112351868302,0.8318,26338.3216 +6,0.16524795867092906,0.824,26451.06 +7,0.16469774757511912,0.8282,26399.5978 +8,0.16799725041352212,0.8652,26656.0762 +9,0.1638348087195307,0.8332,26348.5054 +10,0.1699868575591594,0.8764,26851.976 +11,0.16514573221933096,0.8338,26438.7386 +12,0.16656291295289993,0.8478,26530.1192 +13,0.16562815793212504,0.8438,26477.4246 +14,0.16190592363718898,0.8056,26165.7032 +15,0.16378745258152486,0.8414,26337.8808 +16,0.1637619618419558,0.8216,26271.3988 +17,0.1681347322491929,0.844,26667.1794 +18,0.16482444690112025,0.83,26398.6348 +19,0.16396646494232117,0.8208,26300.5784 +20,0.1673289602600038,0.843,26600.422 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/metadata.txt" new file mode 100644 index 000000000..69687ef74 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:22:00.163 +hostname=f13r01 +julia=1.12.6 +slurm_job=22958332 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/summary.csv" new file mode 100644 index 000000000..07bacea67 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/018/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.75,0.331136,22020,10000,100000,0.4042488165283203,0.16590456206576898,0.028841914044896895,0.9543168207002048,10872.721379542236,0.02028,0.88048,0.83992,26491.01625,0.0004907852314357583,0.003778593444795647,7.310636205628091,20,1671.3548519611359,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/blocks.csv" new file mode 100644 index 000000000..789a645e8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.006462503432447557,-1.976,14514.637 +2,0.006422892692068126,-1.966,14251.3428 +3,0.006894015930837486,-1.9566,14650.588 +4,0.006463005731825251,-1.9668,14392.0604 +5,0.006114013673528098,-1.9738,13942.1116 +6,0.006756243799661752,-1.9676,14440.2666 +7,0.006257732612767722,-1.9754,14087.415 +8,0.006555663818947505,-1.9714,14458.4276 +9,0.006468712399725337,-1.9654,14376.17 +10,0.006319388185103889,-1.97,14275.8504 +11,0.006265493575576693,-1.9762,14104.8708 +12,0.006482788032479584,-1.9608,14559.1796 +13,0.006623064994625747,-1.9606,14476.0888 +14,0.0061204000183497555,-1.9756,14015.0694 +15,0.0067083979336544875,-1.9608,14598.4266 +16,0.006279310643754434,-1.9716,14071.9508 +17,0.006545522864104715,-1.966,14330.2498 +18,0.006234666246024426,-1.9706,14372.9012 +19,0.006112207376281731,-1.9734,13803.7238 +20,0.006236338670481928,-1.9718,14201.4286 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/metadata.txt" new file mode 100644 index 000000000..b06a8a6ad --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:49:39.471 +hostname=f13r01 +julia=1.12.6 +slurm_job=22958333 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/summary.csv" new file mode 100644 index 000000000..330fc3206 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/019/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.327136,11020,10000,100000,0.06483468925476074,0.0064161181316123115,0.00011095073338786742,0.3710346982105291,1681.9468714933778,0.98494,0.00106,-1.96882,14296.13794,4.953260523902068e-5,0.0013054460822585561,1.4391676771750312,20,9825.173690080643,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/blocks.csv" new file mode 100644 index 000000000..ed183dfaf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.0065435809468152,-1.9634,14428.0224 +2,0.005990369270578958,-1.971,13949.3734 +3,0.006252452290861401,-1.9732,13949.4874 +4,0.006400716049142647,-1.9718,14150.1602 +5,0.006461966922157444,-1.9672,14345.5946 +6,0.006559382327552885,-1.969,14239.0232 +7,0.006318412744812667,-1.9706,14240.825 +8,0.006113781388476491,-1.9716,14117.1232 +9,0.0065352586096269075,-1.971,14540.0526 +10,0.0064612892769160685,-1.9676,14175.8516 +11,0.006349237894685939,-1.9668,14209.4074 +12,0.006716900065296795,-1.9626,14439.3204 +13,0.006116327119013294,-1.9682,14175.861 +14,0.005950873806118034,-1.9736,13773.3702 +15,0.006348561863868963,-1.963,14236.9066 +16,0.006146373846614733,-1.9758,14022.7092 +17,0.0060472054309793745,-1.9764,14151.3832 +18,0.006072067223663907,-1.9772,13879.398 +19,0.00616520667092409,-1.971,14039.5848 +20,0.006429674093250651,-1.9682,14427.5372 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/metadata.txt" new file mode 100644 index 000000000..b6b3efe70 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:44:58.834 +hostname=f13r01 +julia=1.12.6 +slurm_job=22958334 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/summary.csv" new file mode 100644 index 000000000..e942ab3ec --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/020/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.327136,22022,10000,100000,0.06420296012878418,0.006298981892067823,0.00010704515839340885,0.3706582667735246,1651.2403091142273,0.98545,0.00094,-1.9699600000000002,14174.54958,4.829006464461587e-5,0.0009422928363697163,1.4125764413991098,20,9560.640244960785,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/blocks.csv" new file mode 100644 index 000000000..777d090b7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.06334145508053479,-0.3488,61405.7324 +2,0.06042272543372819,-0.4402,60096.7834 +3,0.05814223193287617,-0.4786,58722.045 +4,0.05938499803905142,-0.4338,59651.0322 +5,0.059677902194543275,-0.475,59036.3336 +6,0.06123673323241528,-0.4108,60423.4988 +7,0.0593320615567849,-0.458,59184.126 +8,0.0579878063222277,-0.4834,58321.105 +9,0.06212743382503977,-0.3926,61004.3706 +10,0.056804389293678106,-0.54,57823.7066 +11,0.06059828827569727,-0.425,59889.0178 +12,0.06173955656813923,-0.3706,60668.583 +13,0.06047414508596994,-0.4256,60173.6862 +14,0.056945588051679076,-0.5142,57985.9406 +15,0.05977760986367939,-0.4484,59546.7046 +16,0.059284242748445834,-0.4322,59313.4864 +17,0.05881556792223128,-0.463,59165.6068 +18,0.056851738126564307,-0.5346,57478.3076 +19,0.058366355876124,-0.4954,58537.378 +20,0.059282400056836194,-0.4494,59198.286 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/metadata.txt" new file mode 100644 index 000000000..70bb2f4a3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:29:35.165 +hostname=a04r02n03 +julia=1.12.6 +slurm_job=22958335 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/summary.csv" new file mode 100644 index 000000000..0daaa7a31 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/021/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.329136,11022,10000,100000,0.22785492469787597,0.05952966147431231,0.004772953921956057,0.7424711516581972,15605.343577522126,0.38822,0.32546,-0.45098,59381.28653,0.0003960781362403323,0.011178936019421338,8.396020823939518,20,8592.585215091705,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/blocks.csv" new file mode 100644 index 000000000..b4e52cd33 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.061733463065442626,-0.4004,60707.4446 +2,0.055732873498334085,-0.56,57165.8576 +3,0.059611034886550625,-0.4694,59081.489 +4,0.054625410124997144,-0.5932,56490.9378 +5,0.0598517829392571,-0.4662,59364.5858 +6,0.05612907357360236,-0.5582,57186.2152 +7,0.06331619255280821,-0.3852,61268.7282 +8,0.056824783988040875,-0.5248,57856.6884 +9,0.060574400976137255,-0.4346,60019.3112 +10,0.06094458972390276,-0.419,60217.4714 +11,0.060796588533907195,-0.4374,59828.8642 +12,0.05854724281585077,-0.4712,58804.6324 +13,0.0594137672787765,-0.4824,59043.2502 +14,0.06159270633379929,-0.3792,60411.2426 +15,0.06232328483291203,-0.398,60881.7818 +16,0.060812838013540024,-0.43,59997.9864 +17,0.059954427133174615,-0.4142,59575.3634 +18,0.05870872102511348,-0.4914,58834.1854 +19,0.058716954320238435,-0.4792,58669.6852 +20,0.0625304664954776,-0.3554,61298.7516 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/metadata.txt" new file mode 100644 index 000000000..045178236 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:21:06.954 +hostname=a04r02n03 +julia=1.12.6 +slurm_job=22958336 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/summary.csv" new file mode 100644 index 000000000..b132ebf18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/022/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.329136,22024,10000,100000,0.22805248947143555,0.059637030105593146,0.004796456191558716,0.7415006450125909,15633.48962000061,0.391,0.32453,-0.45747000000000004,59335.22362,0.0005289660420897597,0.014496883694163559,8.435902751834536,20,8136.219342947006,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/blocks.csv" new file mode 100644 index 000000000..d8baa00bd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16847548757029,0.9928,107398.582 +2,0.16630444730177987,0.9932,106755.3344 +3,0.16887699881771115,0.9946,107538.7042 +4,0.16695379264293006,0.9936,106919.7284 +5,0.16740373356610072,0.9952,107109.5632 +6,0.16839979672788177,0.9952,107395.4268 +7,0.16909656201601028,0.9912,107539.0368 +8,0.16852330506655852,0.9942,107448.8106 +9,0.16718677244874416,0.9928,107054.0662 +10,0.16727274004238424,0.991,107082.2194 +11,0.1677830518558272,0.9934,107239.4982 +12,0.16894115516225575,0.9952,107522.1436 +13,0.1680952578015742,0.9938,107339.5736 +14,0.1684996407423052,0.9922,107426.883 +15,0.16827583618302597,0.9908,107323.9912 +16,0.16755384957061614,0.9908,107135.3996 +17,0.16897185679860413,0.992,107540.2406 +18,0.16731591162254336,0.9936,107054.2336 +19,0.16892506877663546,0.9926,107524.4168 +20,0.16809078407164196,0.9938,107303.3396 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/metadata.txt" new file mode 100644 index 000000000..3a56d6b81 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:01:50.665 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958337 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/summary.csv" new file mode 100644 index 000000000..f0227ad26 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/023/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.331136,11024,10000,100000,0.40930099212646487,0.16804730243927102,0.028573579560543284,0.9883219495576173,44052.59205064026,0.00014,0.99338,0.9931000000000001,107282.55959,0.0001765532136211549,0.00032167325690912805,6.326258703565434,20,7046.844964027405,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/blocks.csv" new file mode 100644 index 000000000..cc73bb2db --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16795528611470945,0.9918,107253.996 +2,0.16786870018055197,0.9924,107220.055 +3,0.16821713836077834,0.9954,107389.6864 +4,0.16803132576530333,0.9938,107330.3328 +5,0.1678618881964707,0.9926,107197.5712 +6,0.1684895945364493,0.9944,107421.4668 +7,0.16650901013578986,0.991,106847.436 +8,0.16830853918200592,0.9944,107364.791 +9,0.16748625831014943,0.9934,107117.5504 +10,0.16878378905807623,0.9918,107525.9878 +11,0.1682787822710583,0.9946,107324.93 +12,0.16650794073161668,0.9932,106872.3998 +13,0.16711463970401091,0.9916,107005.5312 +14,0.16821147393935826,0.9952,107354.361 +15,0.16791680650351337,0.9932,107303.3404 +16,0.1677649430615944,0.9914,107159.7388 +17,0.16821096043495928,0.993,107322.2804 +18,0.16939878579251236,0.9936,107688.6204 +19,0.1672798507247586,0.992,107061.7406 +20,0.16932135059337597,0.9944,107711.7804 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/metadata.txt" new file mode 100644 index 000000000..cc705e38b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:02:55.920 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958338 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/summary.csv" new file mode 100644 index 000000000..04db290eb --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/024/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.75,0.331136,22026,10000,100000,0.40921660179138186,0.16797585317985214,0.02854566054976248,0.9884475155973933,44033.86205597916,0.0002,0.99356,0.99316,107273.67982,0.0001699178938443063,0.00029329345821476764,5.979361454065847,20,7104.006736040115,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/blocks.csv" new file mode 100644 index 000000000..010274cfe --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.12257257966995239,-0.8698,1279.7556 +2,0.125586364030838,-0.8414,1293.604 +3,0.12537884106636046,-0.8342,1304.4698 +4,0.12850816588401795,-0.8144,1310.8602 +5,0.11731790432929992,-0.9206,1249.3828 +6,0.12451034078598022,-0.8638,1293.1524 +7,0.12631223320961,-0.826,1309.289 +8,0.12091269550323486,-0.8816,1273.5832 +9,0.12147873558998108,-0.8736,1265.8726 +10,0.12136955327987671,-0.8616,1274.2604 +11,0.11415111198425293,-0.9582,1227.1746 +12,0.1266324508190155,-0.8506,1303.734 +13,0.12164581413269043,-0.8758,1278.576 +14,0.12100591020584106,-0.8752,1271.8014 +15,0.11956148619651795,-0.9098,1270.9232 +16,0.11737155451774597,-0.9288,1249.3496 +17,0.11931989822387695,-0.8918,1268.6526 +18,0.12532272052764892,-0.8448,1299.9846 +19,0.11544244208335877,-0.9644,1231.0158 +20,0.13097872047424317,-0.7728,1329.5958 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/metadata.txt" new file mode 100644 index 000000000..ca7f77ba2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:29.974 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958339 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/summary.csv" new file mode 100644 index 000000000..aee009fe6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/025/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.334985,11026,10000,100000,0.316658388671875,0.12226897612571716,0.02283276594304678,0.6547477673147961,500.8137262109375,0.53882,0.20468,-0.87296,1279.25188,0.0009835165767225912,0.010575031168300466,4.5714792570190586,20,72.20878100395203,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/blocks.csv" new file mode 100644 index 000000000..28ca366fd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.11795082497596741,-0.902,1256.801 +2,0.12499026780128479,-0.8532,1288.749 +3,0.1256116253376007,-0.8474,1303.3548 +4,0.1250519528865814,-0.821,1304.1618 +5,0.1236483657360077,-0.8476,1290.1414 +6,0.12675131092071534,-0.7968,1306.8378 +7,0.12162578330039978,-0.8698,1273.071 +8,0.12704764227867127,-0.7972,1309.9748 +9,0.12512549510002136,-0.8316,1299.226 +10,0.11571188426017762,-0.9428,1240.7358 +11,0.12375814566612243,-0.8682,1282.0702 +12,0.12276672863960267,-0.836,1293.0898 +13,0.12583408484458924,-0.8204,1300.977 +14,0.1272812418937683,-0.8336,1306.3368 +15,0.12349013061523438,-0.8642,1291.039 +16,0.12008145895004273,-0.8822,1273.9264 +17,0.11013984699249267,-0.9984,1203.5158 +18,0.12391407322883606,-0.8576,1287.0916 +19,0.13028472986221312,-0.7862,1326.7984 +20,0.12243073348999023,-0.863,1278.5958 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/metadata.txt" new file mode 100644 index 000000000..d248acb32 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:28.234 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958340 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/summary.csv" new file mode 100644 index 000000000..439569ee7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/026/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.334985,22028,10000,100000,0.3180278369140625,0.12317481633901596,0.02313321326914221,0.655855077443502,504.5240477246094,0.53262,0.20928,-0.8559599999999999,1285.82471,0.0010073845326266902,0.01112707083032897,4.601810091262582,20,70.62999892234802,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/blocks.csv" new file mode 100644 index 000000000..14daca60d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16458759541511536,-0.399,1543.2034 +2,0.16478810596466065,-0.3912,1541.3412 +3,0.15917702980041504,-0.4402,1514.5624 +4,0.16054823184013367,-0.4396,1522.2832 +5,0.1694133816719055,-0.3724,1561.7352 +6,0.15837737183570863,-0.4726,1512.089 +7,0.17184874382019044,-0.3506,1573.2602 +8,0.1647814510345459,-0.3932,1542.728 +9,0.15963969163894653,-0.4598,1513.5478 +10,0.1552140193939209,-0.4856,1497.5336 +11,0.16597854471206666,-0.3682,1554.4522 +12,0.16643846478462218,-0.3692,1555.5236 +13,0.1697225459098816,-0.3272,1575.537 +14,0.16563087902069093,-0.381,1555.2418 +15,0.16271863298416137,-0.4262,1534.9754 +16,0.1667073046207428,-0.3928,1555.681 +17,0.16166148505210876,-0.4032,1531.9802 +18,0.16440363159179688,-0.4092,1549.0736 +19,0.16125694074630736,-0.4436,1523.72 +20,0.16833766622543336,-0.3532,1563.8624 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/metadata.txt" new file mode 100644 index 000000000..ea9e29900 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:40.746 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958341 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/summary.csv" new file mode 100644 index 000000000..239f59d7c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/027/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.336985,11028,10000,100000,0.37870572265625,0.16406158590316772,0.036128481713610605,0.7450134268698703,671.996255859375,0.37204,0.34018,-0.4039,1541.11656,0.000948148953496751,0.009587003263739267,5.00716590105024,20,81.7017879486084,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/blocks.csv" new file mode 100644 index 000000000..95d1d2788 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.17063073139190674,-0.3594,1572.1028 +2,0.1604035262107849,-0.445,1521.8574 +3,0.15815437088012696,-0.4746,1507.5384 +4,0.16546240930557252,-0.3876,1543.317 +5,0.16229441685676574,-0.4142,1531.4794 +6,0.1582881254196167,-0.455,1511.2452 +7,0.16427520542144775,-0.3998,1546.2526 +8,0.1560141902923584,-0.4796,1494.0822 +9,0.17312633905410765,-0.3222,1582.1236 +10,0.1647048538684845,-0.3762,1550.7706 +11,0.16220152416229247,-0.4114,1535.7654 +12,0.15965834741592408,-0.4132,1520.1718 +13,0.16077809534072876,-0.4626,1523.2892 +14,0.17051690950393678,-0.3264,1584.3416 +15,0.15969649319648743,-0.4502,1515.4618 +16,0.16512884788513182,-0.389,1547.3496 +17,0.16160875358581542,-0.4262,1526.3484 +18,0.15605600171089173,-0.4834,1491.6078 +19,0.16428651547431947,-0.4198,1537.986 +20,0.16744291520118712,-0.3838,1560.1538 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/metadata.txt" new file mode 100644 index 000000000..16ddfa0e5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:40.706 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958342 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/summary.csv" new file mode 100644 index 000000000..185e5a245 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/028/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.336985,22030,10000,100000,0.37712982421875,0.16303642860889433,0.03581392891430394,0.7421938295892133,667.7972115820312,0.37565,0.33732,-0.41397999999999996,1535.16223,0.0010678344841143655,0.010543522830828912,5.086975141927036,20,81.69473481178284,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/blocks.csv" new file mode 100644 index 000000000..74862bba7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.20426078186035157,0.0052,1765.7234 +2,0.20960575757026673,0.0202,1788.8588 +3,0.20372190413475036,0.017,1767.3066 +4,0.2172461603164673,0.1248,1835.0668 +5,0.20939343948364258,0.0362,1789.6858 +6,0.2083582770347595,0.0368,1790.4588 +7,0.20861184067726135,0.025,1781.0156 +8,0.20169745388031005,-0.018,1749.2872 +9,0.21459964270591736,0.0944,1816.4128 +10,0.20491935157775878,0.0228,1768.7318 +11,0.20609353590011598,0.0038,1773.4056 +12,0.20897893810272217,0.0702,1792.6982 +13,0.21018989272117614,0.0566,1792.9358 +14,0.2130365574836731,0.0622,1811.78 +15,0.20841787109375,0.0586,1789.9524 +16,0.21735348806381224,0.1358,1834.2628 +17,0.20953216395378113,0.07,1795.0674 +18,0.2059975917339325,0.0032,1771.1278 +19,0.20896871418952942,0.071,1787.0506 +20,0.2114042625427246,0.071,1804.3178 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/metadata.txt" new file mode 100644 index 000000000..35286198e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:40.870 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958343 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/summary.csv" new file mode 100644 index 000000000..184d13663 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/029/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.338985,11030,10000,100000,0.4384098046875,0.20911938125133514,0.05309726342009889,0.8236001782040581,856.5529856054687,0.226,0.50034,0.048339999999999994,1790.2573,0.0009344405244947873,0.009103441801405607,5.549705797745135,20,81.69217681884766,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/blocks.csv" new file mode 100644 index 000000000..12615101d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.20997573022842408,0.0394,1791.1104 +2,0.21232098865509033,0.0812,1804.3566 +3,0.19777345080375672,-0.0464,1733.4856 +4,0.2134494128227234,0.0736,1809.4866 +5,0.20863997926712036,0.0228,1788.5386 +6,0.21270276856422424,0.062,1810.5194 +7,0.21102122445106505,0.0634,1797.4708 +8,0.21404718828201294,0.0888,1808.961 +9,0.21412887377738954,0.079,1816.55 +10,0.21430208196640016,0.0968,1812.1574 +11,0.21659699802398683,0.1264,1832.437 +12,0.20982940940856934,0.0304,1788.2804 +13,0.20862495870590209,0.0402,1794.084 +14,0.2103519633769989,0.0502,1794.8702 +15,0.2153628723144531,0.1112,1824.1758 +16,0.21571428313255311,0.1158,1828.1164 +17,0.21226632418632507,0.075,1806.1102 +18,0.20824987258911132,0.0464,1785.4816 +19,0.2102627163887024,0.0552,1795.7136 +20,0.2042314727306366,-0.0164,1767.1626 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/metadata.txt" new file mode 100644 index 000000000..9ddeb11e3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:52:41.518 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958344 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/summary.csv" new file mode 100644 index 000000000..49a97ed0a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/030/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,1.875,0.338985,22032,10000,100000,0.44054662109375,0.2109926284837723,0.05391256392598113,0.8257423879081632,864.2258062695313,0.22276,0.50527,0.05974999999999997,1799.45341,0.0009702450720672574,0.009473062918224051,5.4711761772227785,20,82.46753907203674,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/blocks.csv" new file mode 100644 index 000000000..3e550923f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07170453898310661,-1.221,3757.5166 +2,0.07416009328961372,-1.1894,3869.0396 +3,0.06949436294436455,-1.2618,3731.5748 +4,0.07168192154467105,-1.218,3772.9296 +5,0.07135402291119099,-1.2112,3785.9682 +6,0.06520835156142711,-1.315,3584.7272 +7,0.07536997200846672,-1.1816,3880.2878 +8,0.07302480738759042,-1.201,3836.081 +9,0.0675137864947319,-1.2722,3653.5846 +10,0.07182694321870804,-1.2218,3769.3554 +11,0.07004898387491704,-1.2204,3754.5334 +12,0.06613343524634838,-1.277,3605.805 +13,0.06908477320671082,-1.2642,3703.2578 +14,0.06986749084889889,-1.2464,3709.0824 +15,0.06990885848999023,-1.243,3713.6284 +16,0.0700545910000801,-1.2154,3711.5766 +17,0.07265722247064113,-1.1946,3816.2834 +18,0.06975691096186638,-1.218,3723.0532 +19,0.06839821893572808,-1.2798,3658.1612 +20,0.0688351732134819,-1.2342,3698.7994 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/metadata.txt" new file mode 100644 index 000000000..bc7cf2ec8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:58:17.476 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958345 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/summary.csv" new file mode 100644 index 000000000..aaaef8ab0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/031/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.334985,11032,10000,100000,0.23360603149414064,0.07030422292962671,0.008465527584620297,0.5838600975937099,1151.864388479004,0.67566,0.11702,-1.2343000000000002,3736.76228,0.0005633669766125236,0.007803784506992674,4.687936114639411,20,389.0043909549713,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/blocks.csv" new file mode 100644 index 000000000..e78b222b1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07456055664420128,-1.1376,3895.0998 +2,0.06830049238801003,-1.259,3686.1566 +3,0.06795198781490326,-1.2742,3638.6378 +4,0.07028178911805152,-1.2426,3710.2974 +5,0.07034198503792286,-1.2166,3746.9432 +6,0.07253612649142742,-1.2106,3827.7392 +7,0.07413764008879661,-1.1634,3860.095 +8,0.07102053970694541,-1.2168,3792.0034 +9,0.0685813366919756,-1.2566,3704.7172 +10,0.0698266156733036,-1.2348,3700.4772 +11,0.07083521887660027,-1.24,3752.553 +12,0.06930815412402153,-1.2522,3716.4622 +13,0.07000608861446381,-1.238,3736.6214 +14,0.06584715551137924,-1.293,3621.8014 +15,0.07209566479325294,-1.195,3785.5372 +16,0.0667137465417385,-1.2764,3671.6328 +17,0.07150658449232579,-1.2406,3783.7668 +18,0.07051690016388894,-1.2292,3764.533 +19,0.06819132386445999,-1.2448,3668.5544 +20,0.07054418432712554,-1.2276,3757.5646 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/metadata.txt" new file mode 100644 index 000000000..32c429c80 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:58:07.193 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958346 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/summary.csv" new file mode 100644 index 000000000..0e326abfc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/032/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.334985,22034,10000,100000,0.2337776318359375,0.0701552045482397,0.008401445761036021,0.5858221150496875,1149.4228713183593,0.67441,0.11637,-1.2324499999999998,3741.05968,0.0004972297357439398,0.008209274280381079,4.4149045308910555,20,379.01800417900085,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/blocks.csv" new file mode 100644 index 000000000..cba886bb5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.12915922593474388,-0.3556,5480.1652 +2,0.13273417973816395,-0.3102,5568.3214 +3,0.12767862140834332,-0.3934,5438.8326 +4,0.12693508297204972,-0.3816,5454.4976 +5,0.12981874879598618,-0.3328,5515.702 +6,0.1264568864494562,-0.3874,5427.9058 +7,0.1346768352687359,-0.3,5623.868 +8,0.12738286514878272,-0.3506,5483.3912 +9,0.13495427639782429,-0.2742,5657.9738 +10,0.131192047265172,-0.3176,5579.006 +11,0.12933465722203255,-0.3546,5488.8988 +12,0.1287302120000124,-0.363,5471.6922 +13,0.1280113543987274,-0.3798,5471.3412 +14,0.13224850615859032,-0.3166,5566.7744 +15,0.12968578971922398,-0.3754,5509.9916 +16,0.13188501405119896,-0.3352,5558.292 +17,0.12663296181857586,-0.3888,5436.9784 +18,0.12984701188504696,-0.3406,5506.282 +19,0.12110547156631947,-0.4412,5313.2842 +20,0.12732056303620337,-0.3864,5431.8954 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/metadata.txt" new file mode 100644 index 000000000..b0ff871fc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:47.506 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958404 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/summary.csv" new file mode 100644 index 000000000..bf3af0bfc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/033/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.336985,11034,10000,100000,0.3378339086914062,0.12928951556175947,0.02196982447735012,0.7608517242105254,2118.279422963867,0.35555,0.35685,-0.35424999999999995,5499.25469,0.0007117691484975538,0.008799041514787128,6.433400104121065,20,390.75076699256897,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/blocks.csv" new file mode 100644 index 000000000..0aa517350 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.13148791497945786,-0.3252,5546.2536 +2,0.13013320815265178,-0.3302,5537.8476 +3,0.13004567023217678,-0.3218,5511.8064 +4,0.12859295632839202,-0.3706,5492.3684 +5,0.1249162818223238,-0.4196,5387.723 +6,0.1238881110817194,-0.4242,5355.4078 +7,0.13026778092086316,-0.317,5523.4916 +8,0.12838118854463101,-0.3764,5448.5868 +9,0.12502490883171558,-0.3952,5378.814 +10,0.12229204514920712,-0.4302,5335.1932 +11,0.12745648169219495,-0.379,5460.7682 +12,0.12210313448607922,-0.4292,5302.4224 +13,0.12956950453817845,-0.3674,5510.1504 +14,0.126040811252594,-0.3796,5428.5196 +15,0.1243196753770113,-0.4164,5353.0928 +16,0.13065055555701255,-0.346,5523.1972 +17,0.13661611630022527,-0.2476,5684.5918 +18,0.1266244231134653,-0.4122,5435.4626 +19,0.1270824529647827,-0.3828,5431.2798 +20,0.12701247460246087,-0.3846,5451.025 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/metadata.txt" new file mode 100644 index 000000000..cbd4bba0e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:42.110 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958405 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/summary.csv" new file mode 100644 index 000000000..fc7dfc3b4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/034/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.336985,22036,10000,100000,0.33488015869140625,0.12762528479635715,0.021586655949590403,0.7545500960124549,2091.0126661035156,0.36151,0.35026,-0.37276,5454.90011,0.0007804662346427556,0.010490884263568012,6.0873636064373535,20,389.92432594299316,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/blocks.csv" new file mode 100644 index 000000000..fadeea943 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.20074877138733863,0.4884,7192.3364 +2,0.2013030406564474,0.4932,7186.932 +3,0.20282334672510624,0.5164,7238.441 +4,0.19206284559369088,0.4226,7019.0496 +5,0.19840609996914862,0.4904,7145.242 +6,0.19644192571640015,0.4374,7095.8482 +7,0.20253439707159995,0.5118,7222.1838 +8,0.19344782714247705,0.4094,7040.0304 +9,0.2002757324308157,0.5188,7198.1796 +10,0.2012426690608263,0.52,7210.6294 +11,0.19835381138324737,0.472,7140.274 +12,0.20009600608348846,0.4776,7149.7834 +13,0.20262360815107822,0.5012,7219.1546 +14,0.19797680931091308,0.4848,7140.0674 +15,0.1961273340135813,0.44,7091.3904 +16,0.20285764260292052,0.5054,7220.5482 +17,0.19896171971857549,0.4742,7146.2936 +18,0.19461080596446992,0.416,7044.5794 +19,0.20147224727571011,0.4988,7197.8336 +20,0.2020329129755497,0.4976,7222.072 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/metadata.txt" new file mode 100644 index 000000000..4a02a6322 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:14.215 +hostname=a03r04n02 +julia=1.12.6 +slurm_job=22958406 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/summary.csv" new file mode 100644 index 000000000..25c17cd32 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/035/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.338985,11036,10000,100000,0.43727010986328124,0.19921997766166927,0.044062669845574665,0.9007307010358574,3264.0201140087893,0.10253,0.68386,0.4788,7156.04345,0.0007264106217846378,0.007853916220587027,6.214774085788235,20,363.22447681427,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/blocks.csv" new file mode 100644 index 000000000..b5084ee49 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.2003025722414255,0.481,7172.7582 +2,0.20193162876069545,0.508,7216.0962 +3,0.19749693358838558,0.4544,7111.7244 +4,0.19807079785466195,0.4712,7138.3116 +5,0.19712182168066503,0.4502,7128.8524 +6,0.19711589936614038,0.4578,7110.7342 +7,0.20041106915473939,0.4896,7181.5178 +8,0.19906858290731907,0.4728,7143.6614 +9,0.19430940359532833,0.4708,7081.1976 +10,0.19848705547749995,0.483,7148.6424 +11,0.1961975403815508,0.4462,7110.2316 +12,0.20065758558213712,0.463,7168.0076 +13,0.19190525827109814,0.4196,7018.8538 +14,0.19556340140104295,0.4402,7089.1228 +15,0.19771634454727172,0.4712,7134.5198 +16,0.1987098153322935,0.4552,7149.1322 +17,0.19620171611607073,0.4394,7080.3622 +18,0.19543695371747016,0.4576,7105.8772 +19,0.19856897013187408,0.4642,7147.1648 +20,0.1954489348679781,0.4248,7063.2134 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/metadata.txt" new file mode 100644 index 000000000..ea1fd0933 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:58:27.327 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958407 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/summary.csv" new file mode 100644 index 000000000..e45202536 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/036/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,1.875,0.338985,22038,10000,100000,0.43505541870117187,0.1975361142487824,0.043468687312880464,0.8976695374223002,3236.431695852051,0.10634,0.67369,0.46101000000000003,7124.99908,0.000537276300640994,0.004792219022320947,6.095533017780469,20,319.36437797546387,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/blocks.csv" new file mode 100644 index 000000000..3f02ede79 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.030516934389434754,-1.6952,9152.0174 +2,0.027596176436543465,-1.7372,8603.2054 +3,0.026976410285942255,-1.7498,8582.2696 +4,0.02891817646417767,-1.7296,8864.4788 +5,0.029645557579025626,-1.715,9022.828 +6,0.029731124467775226,-1.7042,9117.1472 +7,0.028291150290332735,-1.7348,8606.2828 +8,0.030511530826054515,-1.6904,9236.1444 +9,0.03013754621837288,-1.7166,9092.856 +10,0.027078057130612433,-1.758,8550.9454 +11,0.02822297192644328,-1.7198,8772.1204 +12,0.03169222011696547,-1.6674,9430.4096 +13,0.028460210989415646,-1.7168,8832.6078 +14,0.03032839633859694,-1.7152,8990.381 +15,0.02962679971214384,-1.727,8956.3344 +16,0.03126988569032401,-1.6796,9304.2024 +17,0.028961203605122863,-1.7126,8877.5328 +18,0.02689607162550092,-1.769,8541.153 +19,0.02941112853474915,-1.7162,8941.0174 +20,0.03120301706325263,-1.6858,9296.3632 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/metadata.txt" new file mode 100644 index 000000000..51639da18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:06.195 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958408 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/summary.csv" new file mode 100644 index 000000000..60e794e57 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/037/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.334985,11038,10000,100000,0.14423939727783203,0.029273728484539314,0.0018184653119196633,0.47124967068076085,1918.4830699627685,0.87195,0.02689,-1.71701,8938.51485,0.0003264830629550198,0.005771700014088707,3.337595321972212,20,1495.8864550590515,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/blocks.csv" new file mode 100644 index 000000000..9cc0ad5a0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.031469421635754405,-1.7012,9244.8348 +2,0.02790002631563693,-1.7308,8712.9264 +3,0.02974929038286209,-1.7092,9064.89 +4,0.02946307434607297,-1.7068,8928.1942 +5,0.030341815222427248,-1.7044,9113.0746 +6,0.030618737598322333,-1.6902,9158.6966 +7,0.03047538948841393,-1.7198,9099.2124 +8,0.030526764901541173,-1.6832,9057.856 +9,0.030084597666747866,-1.7042,9112.8688 +10,0.02983213557302952,-1.7148,8989.0594 +11,0.030089958068542182,-1.7106,9005.3692 +12,0.02986064994595945,-1.711,9020.7938 +13,0.02842782394234091,-1.7128,8789.1798 +14,0.028741933963820337,-1.747,8815.7648 +15,0.030823197909444572,-1.6778,9289.9512 +16,0.028963295664452018,-1.725,8893.7144 +17,0.03041405925936997,-1.6986,9144.743 +18,0.03145987421087921,-1.685,9261.0184 +19,0.029602054589800537,-1.7158,9010.7072 +20,0.02886203482747078,-1.7244,8841.4272 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/metadata.txt" new file mode 100644 index 000000000..97781bfbc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:26:23.130 +hostname=a03r04n02 +julia=1.12.6 +slurm_job=22958409 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/summary.csv" new file mode 100644 index 000000000..ee7420ca2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/038/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.334985,22040,10000,100000,0.14590974426269532,0.02988530677564442,0.0018854501276464272,0.4736967305463858,1958.5634648486327,0.86851,0.02839,-1.70863,9027.71411,0.00021328274436389596,0.0037744926462826922,3.3494818809973372,20,1828.07297706604,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/blocks.csv" new file mode 100644 index 000000000..a736e19d0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1018464965838939,-0.3246,19631.522 +2,0.10313634901046753,-0.2994,19811.9014 +3,0.10411046157926321,-0.3116,19946.2448 +4,0.10739330884702504,-0.2148,20316.0572 +5,0.10532250484135001,-0.1954,20075.9462 +6,0.10001454437207431,-0.3412,19368.3686 +7,0.10270035776030272,-0.2936,19727.059 +8,0.10781457225047052,-0.2314,20316.8402 +9,0.1003445067672059,-0.342,19457.1676 +10,0.09935879459697754,-0.3466,19409.736 +11,0.09771082188580185,-0.4066,19172.8456 +12,0.10010125380158424,-0.3482,19476.6884 +13,0.1079477075913921,-0.2312,20207.1578 +14,0.10137264801319688,-0.3226,19600.8796 +15,0.10175130959469825,-0.307,19652.4828 +16,0.10303444801419974,-0.3124,19697.519 +17,0.10314945375565439,-0.2896,19795.5394 +18,0.10831942052617669,-0.202,20232.7702 +19,0.09944254806432873,-0.3652,19324.6554 +20,0.10174127629194409,-0.2926,19647.2768 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/metadata.txt" new file mode 100644 index 000000000..9aa0927df --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:25:57.726 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958412 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/summary.csv" new file mode 100644 index 000000000..80a1ec5c8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/039/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.336985,11040,10000,100000,0.3026632873535156,0.10283063920740038,0.013626234564858555,0.776013381354287,6739.108771096191,0.33499,0.37108,-0.2989,19743.4329,0.0007011676886317225,0.012819364464089393,6.648829649407275,20,1797.4034821987152,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/blocks.csv" new file mode 100644 index 000000000..d19f10f85 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1035477623624727,-0.2878,19754.9676 +2,0.10181560074351728,-0.3164,19591.0454 +3,0.10256679166853427,-0.311,19733.5018 +4,0.10491739615220577,-0.2816,19930.8056 +5,0.1053383588835597,-0.2792,20006.425 +6,0.10389474418219179,-0.2932,19864.2808 +7,0.10397350838407875,-0.282,19858.446 +8,0.09854157074969262,-0.3864,19260.091 +9,0.10112134800571948,-0.332,19479.0546 +10,0.09927455334831028,-0.3704,19313.2746 +11,0.10222515968643128,-0.3218,19724.6774 +12,0.10494717721696943,-0.2838,19944.7626 +13,0.10294185873754323,-0.2716,19794.912 +14,0.10170247474703938,-0.3454,19553.811 +15,0.10351564516834914,-0.2848,19712.584 +16,0.1025500644646585,-0.2908,19714.5882 +17,0.10302511032167821,-0.3124,19705.949 +18,0.10213341461438685,-0.2984,19645.2394 +19,0.10336717795729637,-0.2858,19750.0842 +20,0.10216830573286861,-0.3224,19646.2926 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/metadata.txt" new file mode 100644 index 000000000..c3dd27926 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:25:17.050 +hostname=a06r02n01 +julia=1.12.6 +slurm_job=22958413 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/summary.csv" new file mode 100644 index 000000000..c96c89673 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/040/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.336985,22042,10000,100000,0.30191174835205076,0.10267840115637518,0.01365551371153261,0.7720583997602126,6729.131698184204,0.33829,0.36872,-0.30785999999999997,19699.23964,0.0003843168521853592,0.007009498818332915,6.868768274544465,20,1764.4207201004028,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/blocks.csv" new file mode 100644 index 000000000..a3d9f2bf2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19863359011951834,0.8688,29036.5236 +2,0.198774613876082,0.8714,29018.7086 +3,0.19554751001242549,0.857,28797.8736 +4,0.20271616942621767,0.889,29318.8946 +5,0.19926301228515803,0.8718,29065.787 +6,0.19687159115746616,0.8686,28911.5076 +7,0.1961620744170621,0.8622,28857.387 +8,0.19882371168211102,0.8704,29032.4534 +9,0.1967301490779966,0.8586,28903.62 +10,0.1954990676233545,0.8494,28799.1346 +11,0.19690534704569726,0.8606,28897.0004 +12,0.20181544144470245,0.8892,29253.7646 +13,0.20071507826764137,0.8732,29157.093 +14,0.19931450218446553,0.8666,29063.2066 +15,0.19871509121619166,0.8584,29006.2716 +16,0.19753159653227775,0.8566,28922.9278 +17,0.1970448700385168,0.8608,28927.886 +18,0.19825826418083162,0.8634,28975.7004 +19,0.20027692139875145,0.8762,29173.4462 +20,0.19998733712453395,0.8768,29093.7318 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/metadata.txt" new file mode 100644 index 000000000..1bd1f0e07 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:21:56.718 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958414 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/summary.csv" new file mode 100644 index 000000000..f548b4227 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/041/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.338985,11042,10000,100000,0.4429431857299805,0.19847929695555008,0.04087905340328472,0.9636727869242697,13007.53920527893,0.01437,0.89619,0.86745,29010.64592,0.0004447208178025148,0.0023111116031263508,5.984282968886087,20,1584.549665927887,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/blocks.csv" new file mode 100644 index 000000000..9fd9fa1b2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19727900186162442,0.8634,28897.4304 +2,0.19125681591518223,0.808,28462.0592 +3,0.19972517711296678,0.8694,29120.2428 +4,0.19812281875647605,0.8538,28982.2318 +5,0.197617826789245,0.8628,28959.764 +6,0.1976334196479991,0.8584,28960.232 +7,0.198686201284267,0.87,29049.998 +8,0.19419518808051944,0.833,28659.5944 +9,0.19828741757962853,0.8646,29019.9816 +10,0.198413454778865,0.8496,29024.4092 +11,0.19792448751349,0.8592,28972.807 +12,0.19895905728824437,0.8706,29072.7616 +13,0.19813686777949333,0.852,28987.5628 +14,0.19679404515996576,0.8708,28908.3098 +15,0.19693916502930223,0.8432,28888.7552 +16,0.1962930178059265,0.8494,28818.0476 +17,0.1962596397779882,0.8594,28852.5874 +18,0.19758022506795825,0.8604,28971.213 +19,0.1989257733117789,0.8604,29048.2748 +20,0.19615763900838792,0.8574,28838.5344 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/metadata.txt" new file mode 100644 index 000000000..cc3142e56 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:20:59.262 +hostname=a04r02n04 +julia=1.12.6 +slurm_job=22958415 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/summary.csv" new file mode 100644 index 000000000..f9f866108 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/042/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,1.875,0.338985,22044,10000,100000,0.4413589141845703,0.19725936197746546,0.04045337402660413,0.9618791219285391,12927.589546555177,0.01642,0.88863,0.85579,28924.73985,0.00042110875230516305,0.0033056084717372454,5.965588494139841,20,1535.9628920555115,3.999999999999998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/blocks.csv" new file mode 100644 index 000000000..2923d486c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.009115162474662066,-1.9658,17532.6104 +2,0.008596899932820815,-1.9694,16802.6888 +3,0.008943478461320046,-1.968,17213.2482 +4,0.009353999468800611,-1.968,17683.3716 +5,0.00892356359012192,-1.9676,17111.5844 +6,0.009051619812648277,-1.9716,17040.3308 +7,0.009111207602126524,-1.962,17462.6808 +8,0.00901565513041569,-1.968,17053.9268 +9,0.008672422719886526,-1.9748,16743.3052 +10,0.009098272084386554,-1.9704,17311.2256 +11,0.008609014834347182,-1.9698,17008.2632 +12,0.00858110368141206,-1.972,16922.441 +13,0.009359800834418274,-1.9586,17560.0338 +14,0.009488301723694895,-1.958,17644.2692 +15,0.00932185669777682,-1.9596,17548.079 +16,0.009450027544912882,-1.958,17620.5794 +17,0.008995438257814386,-1.959,17183.9932 +18,0.00923558635575464,-1.962,17535.853 +19,0.008757612835615873,-1.9704,17121.989 +20,0.009304068506741897,-1.9656,17461.6534 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/metadata.txt" new file mode 100644 index 000000000..e29abb13c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:39:50.459 +hostname=f13r15 +julia=1.12.6 +slurm_job=22958416 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/summary.csv" new file mode 100644 index 000000000..6be29a090 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/043/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.334985,11044,10000,100000,0.07725897338867188,0.009049254627483896,0.0002162067520942006,0.37875324669490396,2372.2078050671385,0.98364,0.00135,-1.96593,17278.10634,6.49475865856722e-5,0.001179765810837498,1.5862090224450875,20,8889.915621042252,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/blocks.csv" new file mode 100644 index 000000000..02f2faf58 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.008841574052069336,-1.9634,17222.2134 +2,0.008955272553383839,-1.9678,17007.7152 +3,0.009193584061122966,-1.9636,17228.7032 +4,0.008460563860938419,-1.9606,16693.7498 +5,0.009197229866229463,-1.9608,17471.6796 +6,0.008826325076050126,-1.9572,17041.7572 +7,0.008496381142246536,-1.9726,16491.17 +8,0.009202731304732151,-1.9706,17297.182 +9,0.008875369206187315,-1.973,17198.0964 +10,0.009061179230513517,-1.9726,17159.2578 +11,0.009096779979020357,-1.961,17310.3368 +12,0.009068362956913188,-1.969,17444.6614 +13,0.008999607570527587,-1.9722,17412.8222 +14,0.00914657439608127,-1.9706,17232.6386 +15,0.008767793698247988,-1.968,17123.3528 +16,0.008568021894199774,-1.971,16819.6086 +17,0.008466339169477578,-1.9726,16697.0842 +18,0.009338358554430305,-1.9604,17492.1944 +19,0.008739503311167936,-1.97,16817.4176 +20,0.008816002714994829,-1.965,17045.8558 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/metadata.txt" new file mode 100644 index 000000000..7852b0bc1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T23:14:37.089 +hostname=f13r07 +julia=1.12.6 +slurm_job=22958440 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/summary.csv" new file mode 100644 index 000000000..b5b5e840b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/044/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.334985,22046,10000,100000,0.07671750869750976,0.008905877729926725,0.00020821999534209552,0.38091758675767223,2334.6224116339113,0.98416,0.00122,-1.9671,17110.37485,5.934951184626946e-5,0.0011436322559468552,1.584316731236378,20,17482.370089054108,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/blocks.csv" new file mode 100644 index 000000000..69d9b9b35 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.0804127539732377,-0.3328,69872.2498 +2,0.08195489393961616,-0.2832,70706.9354 +3,0.08252786515061744,-0.2818,70773.0498 +4,0.08531935229809023,-0.193,72617.4854 +5,0.08458536831806414,-0.2234,71917.7686 +6,0.08015737914700294,-0.3424,69660.3934 +7,0.0817114762875135,-0.2808,70829.983 +8,0.08455545147070662,-0.1994,72140.4436 +9,0.08265734366909601,-0.2952,70987.6796 +10,0.08187887588461162,-0.2886,70257.1076 +11,0.08133437837702222,-0.281,70228.2148 +12,0.08452773613781901,-0.2208,71783.3508 +13,0.08009308637052309,-0.3154,69793.9094 +14,0.08251306787207723,-0.2832,71082.7682 +15,0.07811762484355131,-0.396,68418.5926 +16,0.08702725972661284,-0.1654,73458.3662 +17,0.0837304391710437,-0.2484,71466.861 +18,0.08481693495387445,-0.1866,72310.8468 +19,0.08436845852202969,-0.232,71905.3842 +20,0.08063470825836994,-0.3042,70104.109 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/metadata.txt" new file mode 100644 index 000000000..0de648a37 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:07:35.604 +hostname=a03r04n01 +julia=1.12.6 +slurm_job=22958546 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/summary.csv" new file mode 100644 index 000000000..edff1860a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/045/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.336985,11046,10000,100000,0.2721413587188721,0.08264622271857398,0.008681060298387873,0.7868161140312069,21665.21140833786,0.32512,0.38256,-0.26768000000000003,71015.77496,0.0004922750027203357,0.013099211707901398,8.02795382072845,20,10310.451022863388,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/blocks.csv" new file mode 100644 index 000000000..b0c45b179 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.08026443491965765,-0.3326,69817.0704 +2,0.08118466860740446,-0.285,70603.118 +3,0.0819305313053308,-0.2842,70796.8854 +4,0.08514710310184163,-0.2162,72181.886 +5,0.08395724383874331,-0.242,71750.474 +6,0.08202658113695216,-0.298,70807.4926 +7,0.0885688062035595,-0.1534,73747.3552 +8,0.07846717579675605,-0.3406,69243.4286 +9,0.08310585487455828,-0.2456,71423.9222 +10,0.07942151602229569,-0.334,69433.8506 +11,0.08150513950332533,-0.262,70739.2612 +12,0.08137291956706903,-0.262,70516.6942 +13,0.08090037343211007,-0.3132,69795.1302 +14,0.07937113800967345,-0.3312,69311.994 +15,0.08273614762008656,-0.2492,71332.3798 +16,0.08416429583922727,-0.2474,71591.7176 +17,0.0829975187227712,-0.262,71220.5646 +18,0.08047242602461484,-0.2862,69884.1282 +19,0.08197197079915786,-0.3042,70472.224 +20,0.08282532379791373,-0.2678,71032.4808 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/metadata.txt" new file mode 100644 index 000000000..be734eaa5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:21:39.555 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958557 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/summary.csv" new file mode 100644 index 000000000..c6f8811bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/046/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.336985,22048,10000,100000,0.27109933197021485,0.08211955845615244,0.008605478184194425,0.7836429001027932,21527.149531929626,0.3277,0.37956,-0.27584,70785.10288,0.000509457886754594,0.01020590747402802,7.965491860888844,20,7789.97754907608,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/blocks.csv" new file mode 100644 index 000000000..4bf378a10 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19780522989358287,0.993,116460.8144 +2,0.19814798988963012,0.9932,116509.5782 +3,0.1997276309134555,0.9916,116951.3582 +4,0.19748928988205736,0.9918,116356.7604 +5,0.19878201782869873,0.9934,116697.3102 +6,0.19748356720481533,0.9914,116390.2434 +7,0.1969047993683256,0.9908,116156.2614 +8,0.1983827535904129,0.9932,116587.7856 +9,0.19635488894406009,0.9924,116049.93 +10,0.19804856809308985,0.9928,116527.3718 +11,0.19853095983781385,0.9904,116642.1366 +12,0.19885726648772833,0.9932,116730.2768 +13,0.19961606630873865,0.9932,116970.5844 +14,0.19757440415823366,0.9938,116334.6038 +15,0.1985962975374423,0.9878,116643.1492 +16,0.19966403818423858,0.9914,116976.5928 +17,0.19838347060889938,0.992,116635.1386 +18,0.19685098839034326,0.991,116235.9248 +19,0.19641202943664976,0.9886,116033.3818 +20,0.19716363607360982,0.9918,116284.5502 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/metadata.txt" new file mode 100644 index 000000000..6007c48a6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:22:29.184 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958558 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/summary.csv" new file mode 100644 index 000000000..a82ef5803 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/047/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.338985,11048,10000,100000,0.44440291793823244,0.1980387946315913,0.0396263228314385,0.9897300929476597,51914.68177990387,0.00013,0.9921,0.9918399999999999,116508.68763,0.00022844376648251572,0.00035321083609770617,6.075159695396873,20,7791.917752981186,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/blocks.csv" new file mode 100644 index 000000000..1e12f73e9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19677595707830042,0.9918,116154.8942 +2,0.19830658440293045,0.9928,116561.1116 +3,0.19858573938519694,0.9918,116575.1054 +4,0.1959839797340217,0.9902,115875.8512 +5,0.1973956119427341,0.9924,116326.456 +6,0.19746435625351733,0.9926,116323.9218 +7,0.19709899640058864,0.9908,116243.194 +8,0.19777186987266177,0.9934,116481.5254 +9,0.19689206705029355,0.9932,116212.064 +10,0.19789591595567763,0.9928,116541.8828 +11,0.19902073263167402,0.9912,116763.2296 +12,0.19777899158913642,0.9906,116395.3774 +13,0.19445335973873734,0.9898,115507.9724 +14,0.1953697071853443,0.9902,115813.5422 +15,0.19787931981744478,0.9928,116463.3212 +16,0.19746200668982927,0.9934,116323.953 +17,0.19549947052971692,0.9888,115824.6686 +18,0.19897162553049857,0.992,116762.0396 +19,0.1973444184906315,0.9898,116298.377 +20,0.1980186668897164,0.9926,116485.536 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/metadata.txt" new file mode 100644 index 000000000..7764314dd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:29:50.410 +hostname=a01r07n08 +julia=1.12.6 +slurm_job=22958560 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/summary.csv" new file mode 100644 index 000000000..ad72dc149 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/048/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,1.875,0.338985,22050,10000,100000,0.4435671128082275,0.1972984688584326,0.039334958563972934,0.9896206131899941,51720.60982042496,0.00016,0.99197,0.99165,116296.70117,0.00026867051134142904,0.00030877516944073896,5.451692269260383,20,8200.039871931076,3.9999999999999982 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/blocks.csv" new file mode 100644 index 000000000..a94d592e5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.14615964155197145,-0.7416,1418.8962 +2,0.14523270874023436,-0.7598,1420.3442 +3,0.14629794788360595,-0.7304,1418.2372 +4,0.15721770057678222,-0.6754,1478.4296 +5,0.14805668330192565,-0.7488,1423.7692 +6,0.1462693379878998,-0.7514,1422.4562 +7,0.15048812398910522,-0.7332,1439.8224 +8,0.14516789503097535,-0.7374,1415.9064 +9,0.14819824800491332,-0.7688,1431.7538 +10,0.1481699420452118,-0.7274,1430.349 +11,0.14475158514976502,-0.7676,1410.0626 +12,0.1551331400871277,-0.6632,1469.9924 +13,0.14813123726844787,-0.737,1437.3158 +14,0.14620438618659973,-0.7336,1421.8956 +15,0.14760704917907716,-0.7448,1429.9008 +16,0.15069058542251587,-0.6856,1442.3934 +17,0.15187067079544067,-0.6836,1447.8976 +18,0.1491262237071991,-0.7464,1438.9626 +19,0.15084129538536073,-0.7076,1441.7936 +20,0.14941945071220397,-0.7354,1435.3892 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/metadata.txt" new file mode 100644 index 000000000..ab467af60 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:36.423 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22958565 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/summary.csv" new file mode 100644 index 000000000..90c8f6f61 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/049/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.342439,11050,10000,100000,0.3538096435546875,0.14875169265031815,0.03199189636935152,0.6916459659306915,609.2869330957031,0.48553,0.24211,-0.72895,1433.77839,0.0007314232804860927,0.006776831661508278,4.831383533910204,20,85.91051888465881,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/blocks.csv" new file mode 100644 index 000000000..d647f719c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.15077363662719726,-0.7136,1438.0634 +2,0.14595847144126892,-0.7528,1421.8116 +3,0.14867705478668214,-0.72,1435.996 +4,0.1519740692138672,-0.7076,1450.23 +5,0.14787397289276122,-0.7326,1430.519 +6,0.1504804238796234,-0.7268,1438.378 +7,0.15261914014816283,-0.7086,1449.1236 +8,0.14817488498687745,-0.7568,1435.0328 +9,0.13963152351379393,-0.8126,1382.675 +10,0.15440383167266847,-0.6718,1460.8952 +11,0.15106277780532837,-0.7278,1445.4842 +12,0.14290223393440246,-0.7774,1401.952 +13,0.15269286966323853,-0.6812,1466.8062 +14,0.14809054951667786,-0.7406,1432.8452 +15,0.15816174550056458,-0.6452,1489.8616 +16,0.14931002473831176,-0.7248,1435.2704 +17,0.14709390234947203,-0.75,1430.2478 +18,0.15334027471542358,-0.7002,1457.4862 +19,0.1420758975982666,-0.785,1393.1894 +20,0.1453783586025238,-0.7806,1417.04 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/metadata.txt" new file mode 100644 index 000000000..1c971723e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:45.262 +hostname=a03r04n01 +julia=1.12.6 +slurm_job=22958581 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/summary.csv" new file mode 100644 index 000000000..fc85ff35c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/050/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.342439,22052,10000,100000,0.3540371044921875,0.14903378217935562,0.03220203588459252,0.6897411179307078,610.4423718066406,0.48586,0.24092,-0.7308,1435.64538,0.000998680878727124,0.009121668822384594,4.640748208537683,20,84.86414790153503,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/blocks.csv" new file mode 100644 index 000000000..bf8ac63ae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19435220975875855,-0.3018,1685.0248 +2,0.1969114089488983,-0.2556,1707.4026 +3,0.1951921802997589,-0.2702,1698.5048 +4,0.19173853430747986,-0.2944,1678.5786 +5,0.18860218329429626,-0.3114,1666.4432 +6,0.19561054282188414,-0.2542,1699.3924 +7,0.19431913161277772,-0.257,1694.1536 +8,0.19761286630630492,-0.2138,1711.751 +9,0.1956222086429596,-0.2588,1702.759 +10,0.1885846181869507,-0.3378,1657.5122 +11,0.19074093976020812,-0.3036,1664.268 +12,0.20008888330459595,-0.237,1723.2284 +13,0.19214762654304504,-0.291,1684.228 +14,0.186869344997406,-0.3538,1653.8228 +15,0.1985540291786194,-0.2348,1717.0014 +16,0.19481755833625794,-0.2362,1700.1508 +17,0.19251656880378723,-0.3164,1682.4602 +18,0.19359738206863403,-0.2534,1702.6366 +19,0.1945148856639862,-0.2542,1692.0598 +20,0.19781685152053832,-0.2524,1704.589 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/metadata.txt" new file mode 100644 index 000000000..a2e90679c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:32.246 +hostname=a04r07n05 +julia=1.12.6 +slurm_job=22958582 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/summary.csv" new file mode 100644 index 000000000..c135dcf45 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/051/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.344439,11052,10000,100000,0.415446982421875,0.19401049771785736,0.04859181402232665,0.7746175766855734,794.6669986523438,0.32794,0.38149,-0.27439,1691.29836,0.0007822937432340049,0.0083497050058197,5.144091845202248,20,72.80629086494446,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/blocks.csv" new file mode 100644 index 000000000..334d95649 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.19223223361968994,-0.2846,1691.1234 +2,0.1888349733352661,-0.3244,1664.4454 +3,0.19383097553253173,-0.2782,1692.3304 +4,0.18860404834747316,-0.302,1670.2152 +5,0.19336883163452148,-0.2882,1691.675 +6,0.20344351305961608,-0.2116,1742.2486 +7,0.19429012808799745,-0.3018,1700.666 +8,0.18985383257865907,-0.3142,1673.5716 +9,0.188562490940094,-0.317,1664.773 +10,0.18263701014518738,-0.3794,1638.3262 +11,0.19640664339065553,-0.2394,1702.4174 +12,0.1960506190776825,-0.2484,1707.3286 +13,0.2004256929397583,-0.2184,1726.5954 +14,0.19340006189346312,-0.2866,1687.5968 +15,0.19906528325080872,-0.2308,1716.246 +16,0.19440827736854555,-0.2684,1693.2428 +17,0.19567325625419615,-0.2602,1702.3372 +18,0.20323131484985352,-0.226,1735.7336 +19,0.19510867671966553,-0.2714,1698.1644 +20,0.20010723419189452,-0.1962,1736.1176 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/metadata.txt" new file mode 100644 index 000000000..9754e8c62 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T17:59:54.784 +hostname=a01r04n01 +julia=1.12.6 +slurm_job=22958591 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/summary.csv" new file mode 100644 index 000000000..d1b2e2e84 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/052/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.344439,22054,10000,100000,0.416264169921875,0.19447675486087798,0.04873894248168395,0.7759956670260378,796.5767879101562,0.32736,0.38236,-0.27236,1696.75773,0.001174233610553151,0.01005211263471777,5.182226483073607,20,83.44601607322693,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/blocks.csv" new file mode 100644 index 000000000..e89baf33a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.23567586641311644,0.1322,1913.1134 +2,0.23745274143218995,0.129,1925.048 +3,0.24136010456085205,0.1276,1941.5172 +4,0.23843885869979858,0.108,1925.9262 +5,0.2372762114048004,0.1372,1923.527 +6,0.24154199814796448,0.1404,1936.3514 +7,0.24514991941452027,0.1696,1957.435 +8,0.24790168943405153,0.1746,1961.2658 +9,0.24199863095283508,0.1284,1936.9164 +10,0.24247036547660827,0.1572,1941.0496 +11,0.24009914617538453,0.1536,1933.6314 +12,0.2357872634410858,0.1192,1911.8352 +13,0.24425945835113524,0.2032,1955.24 +14,0.24448216052055358,0.1694,1953.5764 +15,0.23963522863388062,0.1372,1930.5284 +16,0.23720908794403076,0.0916,1913.191 +17,0.2399530463218689,0.14,1932.5042 +18,0.24228082847595214,0.1642,1942.7012 +19,0.24594825568199158,0.203,1966.6128 +20,0.24909188323020934,0.193,1968.0968 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/metadata.txt" new file mode 100644 index 000000000..9e56f21c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:00:06.371 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22958592 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/summary.csv" new file mode 100644 index 000000000..639dc212d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/053/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.346439,11054,10000,100000,0.474321337890625,0.24140063723564148,0.06867667970413412,0.8485306498337579,988.7770101171875,0.19502,0.53897,0.14892999999999995,1938.50337,0.0008679237717146078,0.006779741882992301,5.294920787154871,20,84.24535989761353,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/blocks.csv" new file mode 100644 index 000000000..c425bd43b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.23926212811470032,0.124,1927.2438 +2,0.23239036026000975,0.0818,1902.5922 +3,0.23754070262908936,0.1294,1917.16 +4,0.24529450626373292,0.2004,1954.0174 +5,0.24617290210723877,0.177,1962.7798 +6,0.24315281977653502,0.1864,1953.7224 +7,0.24492658586502075,0.1784,1956.348 +8,0.24095060486793518,0.154,1939.217 +9,0.23258374795913697,0.0762,1897.0236 +10,0.24638614449501037,0.1754,1962.252 +11,0.23721012754440307,0.1264,1922.6672 +12,0.24307963747978212,0.147,1947.481 +13,0.2467720190048218,0.1912,1963.171 +14,0.23848930072784424,0.1208,1921.1474 +15,0.24160262417793274,0.1514,1940.3958 +16,0.2373621554851532,0.1262,1919.811 +17,0.24845466175079345,0.2112,1977.0658 +18,0.24703136620521546,0.2056,1964.4326 +19,0.23976910743713378,0.141,1935.3766 +20,0.2416935124874115,0.1474,1938.538 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/metadata.txt" new file mode 100644 index 000000000..cd863762d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:00:36.782 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958595 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/summary.csv" new file mode 100644 index 000000000..1344e0155 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/054/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.0,0.346439,22056,10000,100000,0.4744570947265625,0.24150625073194504,0.06874865270340322,0.848384176984953,989.2096029980469,0.19284,0.53824,0.15256000000000003,1940.12213,0.0010449604151430234,0.008543666167339837,5.265300142404853,20,70.96956396102905,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/blocks.csv" new file mode 100644 index 000000000..2f3b54fba --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.0900622445911169,-1.1222,4322.3632 +2,0.09154516918063164,-1.0934,4363.5372 +3,0.08823784178495407,-1.1168,4267.0442 +4,0.09067949465811252,-1.0788,4340.1058 +5,0.09351135042905807,-1.085,4389.5476 +6,0.08767461578249931,-1.13,4235.188 +7,0.09037475015223026,-1.0968,4312.655 +8,0.09097536445260047,-1.0732,4332.2114 +9,0.0917619983136654,-1.1072,4336.3048 +10,0.0889790847748518,-1.107,4288.592 +11,0.09249739491939545,-1.0834,4379.1442 +12,0.08797938805818557,-1.1498,4270.1454 +13,0.08703910456001758,-1.1262,4253.2916 +14,0.08783684085905552,-1.1328,4292.3936 +15,0.09019037030935287,-1.115,4335.5882 +16,0.09219983586966991,-1.0668,4384.255 +17,0.09106315142214298,-1.1044,4308.154 +18,0.0864272706270218,-1.158,4203.3742 +19,0.08907676138877868,-1.1294,4297.7938 +20,0.08789544472396374,-1.1242,4254.8838 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/metadata.txt" new file mode 100644 index 000000000..43e65a6f7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:06:20.772 +hostname=a03r04n02 +julia=1.12.6 +slurm_job=22958616 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/summary.csv" new file mode 100644 index 000000000..a409959ba --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/055/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.342439,11056,10000,100000,0.2680102087402344,0.08980037384286522,0.012956123513274674,0.6224166614385834,1471.2893250415038,0.62613,0.14224,-1.11002,4308.32865,0.00044708040689887856,0.005594374994487532,4.646312197041315,20,364.02279901504517,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/blocks.csv" new file mode 100644 index 000000000..e76c056c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.08725237580537797,-1.1316,4247.9964 +2,0.08348260768055916,-1.2046,4132.0324 +3,0.08840375432372093,-1.1204,4250.7672 +4,0.08535820797085762,-1.167,4182.8354 +5,0.0902880355656147,-1.11,4303.0562 +6,0.09177668153047562,-1.0762,4386.8786 +7,0.08665858817100525,-1.145,4237.6206 +8,0.08677226985394955,-1.1426,4208.1246 +9,0.0894885111361742,-1.1126,4290.536 +10,0.08892426221966744,-1.1158,4274.804 +11,0.08918946815431118,-1.1426,4284.1678 +12,0.08935984765589237,-1.0806,4332.7436 +13,0.0917606467306614,-1.0832,4344.7616 +14,0.09488811060786247,-1.0436,4468.2342 +15,0.08353063785135746,-1.187,4117.3864 +16,0.08945312685370445,-1.1082,4291.0482 +17,0.09144283636212348,-1.0714,4357.3228 +18,0.09113002784848213,-1.0822,4339.662 +19,0.08635741801857948,-1.1382,4222.2194 +20,0.08835704349279404,-1.1136,4267.177 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/metadata.txt" new file mode 100644 index 000000000..fc3af02c5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:07:08.767 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22958618 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/summary.csv" new file mode 100644 index 000000000..95ced5435 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/056/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.342439,22058,10000,100000,0.26624657348632813,0.08869372289165854,0.012663341017030157,0.6212086107294302,1453.1579558569335,0.62871,0.1386,-1.11882,4276.96872,0.0006402568804414834,0.00899490967158648,4.63792933342574,20,407.30149602890015,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/blocks.csv" new file mode 100644 index 000000000..5285500a9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.15940109362006188,-0.1786,6202.9056 +2,0.15627673346698284,-0.2376,6078.5168 +3,0.15699349105358124,-0.21,6159.7254 +4,0.15958863629996778,-0.1576,6209.3576 +5,0.16269234245419503,-0.1538,6267.5906 +6,0.16277100457251073,-0.1336,6230.3932 +7,0.16209538792073727,-0.1494,6277.0898 +8,0.15887697948515414,-0.2064,6194.1304 +9,0.16065512908697127,-0.1892,6191.5324 +10,0.16053262309134006,-0.1972,6200.9724 +11,0.16503271903395653,-0.1282,6327.029 +12,0.15847603629231452,-0.206,6141.8722 +13,0.1567663907557726,-0.2388,6115.5392 +14,0.15882293858230115,-0.19,6184.4538 +15,0.15830103456377984,-0.2104,6161.8026 +16,0.1634810066461563,-0.147,6275.1688 +17,0.15822911796569825,-0.1996,6191.8134 +18,0.15777969499528408,-0.1958,6160.5962 +19,0.15983053128421307,-0.197,6195.6272 +20,0.15185571988821028,-0.2684,6041.805 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/metadata.txt" new file mode 100644 index 000000000..e80903254 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:06:39.005 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958620 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/summary.csv" new file mode 100644 index 000000000..826f6f3c2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/057/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.344439,11058,10000,100000,0.3795284838867187,0.15942293055295945,0.031794676729040725,0.7993687434752083,2611.9852941796876,0.29893,0.40813,-0.18972999999999995,6190.39608,0.000662891457618573,0.008167396995629057,5.904261058802786,20,373.4678199291229,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/blocks.csv" new file mode 100644 index 000000000..ff0e647fd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.15583638620078563,-0.2544,6114.5552 +2,0.14974467218220233,-0.301,5986.7578 +3,0.1607500564813614,-0.1672,6225.4758 +4,0.15770641369223595,-0.2004,6159.8142 +5,0.1523031854391098,-0.2506,6030.9576 +6,0.15235825140476228,-0.2878,6026.6594 +7,0.15244303953349592,-0.2622,6016.336 +8,0.15636537068486214,-0.1964,6114.2132 +9,0.14999068182706832,-0.2954,5968.3986 +10,0.15856918922960758,-0.1992,6187.554 +11,0.1506126873612404,-0.3136,5961.6798 +12,0.15803924758136273,-0.2136,6165.528 +13,0.16281418191492558,-0.1572,6256.6296 +14,0.15618359733223916,-0.222,6095.0676 +15,0.15280549327731133,-0.2604,6036.7482 +16,0.15358039074838162,-0.2506,6061.2556 +17,0.15729837194681168,-0.2124,6147.5202 +18,0.15987957537174224,-0.208,6190.5326 +19,0.1652816822618246,-0.1328,6311.7476 +20,0.15457613106369972,-0.2662,6050.2404 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/metadata.txt" new file mode 100644 index 000000000..49933ac9a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:06:55.981 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958621 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/summary.csv" new file mode 100644 index 000000000..a8a434818 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/058/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.344439,22060,10000,100000,0.3741111547851563,0.15585693027675152,0.030800585205300067,0.7886662721951205,2553.559945654297,0.3139,0.39523,-0.23257,6105.38357,0.0009559646683956012,0.011121740445016497,5.735841627189887,20,392.8383901119232,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/blocks.csv" new file mode 100644 index 000000000..548ad6fe1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22391391161084176,0.4884,7603.1622 +2,0.23259889653623103,0.5648,7776.525 +3,0.22441381932497023,0.5002,7614.6196 +4,0.22415970104932786,0.4908,7622.7724 +5,0.22778449496626854,0.528,7659.6472 +6,0.2271241322696209,0.505,7657.4706 +7,0.2334385455697775,0.575,7787.6024 +8,0.22986674775481225,0.553,7702.992 +9,0.23002475654184817,0.5612,7737.0236 +10,0.2306646009862423,0.5576,7728.6246 +11,0.2274366263538599,0.5112,7676.2414 +12,0.22507466630637646,0.5084,7627.6582 +13,0.2275742226600647,0.5536,7699.069 +14,0.2253655243128538,0.507,7640.9302 +15,0.22859160092771053,0.5236,7692.9638 +16,0.2280780277311802,0.5128,7686.8444 +17,0.22799283429384232,0.5232,7681.9964 +18,0.22800192645788192,0.5034,7664.53 +19,0.22875742127001286,0.5216,7683.9664 +20,0.22762472353577615,0.5362,7682.1664 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/metadata.txt" new file mode 100644 index 000000000..7f66799f0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:06:59.642 +hostname=a03r04n01 +julia=1.12.6 +slurm_job=22958622 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/summary.csv" new file mode 100644 index 000000000..6039a97b9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/059/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.346439,11060,10000,100000,0.46900225341796875,0.22792435902297498,0.05693345064617188,0.9124602996380476,3734.312698232422,0.08851,0.70327,0.5262499999999999,7681.34029,0.0005792084973157624,0.005873398997980103,5.695668442293344,20,386.65677881240845,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/blocks.csv" new file mode 100644 index 000000000..a0e7970ee --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22667366931736468,0.4958,7653.98 +2,0.22672531946003438,0.5214,7662.8424 +3,0.22930368033349513,0.5072,7709.172 +4,0.2299032464236021,0.5616,7726.2824 +5,0.23046163425445557,0.5494,7734.2248 +6,0.22637795431911945,0.5238,7664.2336 +7,0.22806265359222888,0.5368,7672.8284 +8,0.22554455944895743,0.5042,7632.3022 +9,0.22847392232716082,0.5388,7697.9106 +10,0.2235928429454565,0.4784,7601.1174 +11,0.23007026889026164,0.5378,7724.7408 +12,0.23260393339693547,0.5626,7788.3986 +13,0.23153063955307007,0.5402,7746.9214 +14,0.2241491886138916,0.5054,7610.8122 +15,0.23041621831059456,0.5392,7725.0186 +16,0.2309806596457958,0.5578,7739.1956 +17,0.22852341579794883,0.5262,7683.5516 +18,0.22675139766037464,0.507,7659.073 +19,0.23219729239344597,0.5516,7756.4406 +20,0.22630489973723888,0.5028,7644.783 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/metadata.txt" new file mode 100644 index 000000000..dc6e93526 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:07:08.764 +hostname=a01r04n01 +julia=1.12.6 +slurm_job=22958624 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/summary.csv" new file mode 100644 index 000000000..35ac9e563 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/060/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.0,0.346439,22062,10000,100000,0.4697899755859375,0.22843236982107162,0.05704044607731434,0.9148131049210706,3742.6359471484375,0.08755,0.7025,0.5274,7691.69146,0.0005830068781519672,0.00536401263784374,5.44878934100994,20,390.228080034256,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/blocks.csv" new file mode 100644 index 000000000..1f01c5041 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.04027977368719876,-1.656,10569.8184 +2,0.04048033307008445,-1.6232,10636.494 +3,0.04069191463869065,-1.6402,10627.927 +4,0.03965337271727622,-1.6436,10633.9906 +5,0.04015655122082681,-1.65,10651.572 +6,0.040035736359655856,-1.6632,10597.0288 +7,0.03890520271956921,-1.6426,10532.186 +8,0.04169323219321668,-1.6148,10851.482 +9,0.04144799243733287,-1.627,10797.5272 +10,0.04113720749765635,-1.6274,10801.0108 +11,0.03999373532589525,-1.6304,10630.0964 +12,0.042012693665362894,-1.6002,10938.74 +13,0.04079016757775098,-1.6312,10788.0482 +14,0.0416173259479925,-1.6092,10951.0648 +15,0.04066667288374156,-1.6222,10663.8538 +16,0.04098779312018305,-1.6244,10669.0578 +17,0.039194444291107355,-1.6638,10571.5506 +18,0.03686291532758623,-1.6904,10228.3386 +19,0.040973969000391665,-1.649,10752.7966 +20,0.04105522369816899,-1.6418,10830.6892 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/metadata.txt" new file mode 100644 index 000000000..dc2256acf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:33:36.286 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958625 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/summary.csv" new file mode 100644 index 000000000..689caa360 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/061/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.342439,11062,10000,100000,0.17155449981689452,0.04043181286898442,0.0032681927079638773,0.5001943391799044,2649.7392881817627,0.83794,0.03835,-1.63753,10686.16364,0.0002611894407164736,0.004726838823480004,3.6898635685034025,20,1807.0036568641663,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/blocks.csv" new file mode 100644 index 000000000..c9b00379c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.03690952147245407,-1.6762,10181.3248 +2,0.039830698564276096,-1.6372,10573.0892 +3,0.03910547616928816,-1.6468,10451.4248 +4,0.041315307269059125,-1.6328,10731.6408 +5,0.03955078578777611,-1.6468,10598.2306 +6,0.03844498753678054,-1.663,10436.122 +7,0.03947801517639309,-1.6624,10624.035 +8,0.04046774923466146,-1.6274,10675.2826 +9,0.040440353206172584,-1.6306,10608.3148 +10,0.03636112474035472,-1.6864,10148.7646 +11,0.03996740804854781,-1.6348,10637.5322 +12,0.04059388711247593,-1.649,10556.5108 +13,0.040045641415566206,-1.6264,10608.6138 +14,0.04139830688629299,-1.638,10957.4084 +15,0.04107678518071771,-1.6344,10799.5294 +16,0.04218418729119003,-1.6156,11063.8194 +17,0.0406341702979058,-1.638,10630.472 +18,0.03999540490955114,-1.642,10588.5492 +19,0.03754927504695952,-1.6812,10281.7354 +20,0.04183549624476582,-1.6264,10800.8776 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/metadata.txt" new file mode 100644 index 000000000..f85271492 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:34:06.817 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958634 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/summary.csv" new file mode 100644 index 000000000..6a2f69f56 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/062/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.342439,22064,10000,100000,0.16970316833496094,0.039859229079559445,0.003219429993021895,0.49349050802795086,2612.214436958008,0.8413,0.03783,-1.64477,10597.66387,0.0003489781268530465,0.004368699071685684,4.003232319267759,20,1805.2754459381104,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/blocks.csv" new file mode 100644 index 000000000..f4da9510d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1275641496403143,-0.1944,22190.2894 +2,0.12611982923615725,-0.1854,22079.169 +3,0.13423328371662646,-0.086,22901.5034 +4,0.12508258336689324,-0.2236,21894.9768 +5,0.13109254540856927,-0.1184,22610.5252 +6,0.12430144391898065,-0.2484,21845.8344 +7,0.12994196377433836,-0.1722,22384.194 +8,0.12701847644578665,-0.1924,22115.0064 +9,0.12517511861808597,-0.1988,22002.1028 +10,0.12693216540776192,-0.1904,22138.3978 +11,0.1244634334165603,-0.2316,21822.4922 +12,0.13113362741451712,-0.1518,22565.5342 +13,0.13447407875675707,-0.063,22912.33 +14,0.12631053840685635,-0.181,22103.2256 +15,0.1268584963226691,-0.1882,22148.4516 +16,0.12946617913041264,-0.1584,22438.3274 +17,0.12027770446781069,-0.2824,21422.8438 +18,0.12613686522580683,-0.2008,22020.6838 +19,0.12103968825619668,-0.2396,21545.3742 +20,0.1267043785115704,-0.2084,22015.106 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/metadata.txt" new file mode 100644 index 000000000..3dc477c62 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:33:54.143 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22958806 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/summary.csv" new file mode 100644 index 000000000..84b83a021 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/063/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.344439,11064,10000,100000,0.33919780792236326,0.12721632747213357,0.020189083442499263,0.8016210355260024,8337.249237213746,0.29655,0.40734,-0.18575999999999998,22157.8184,0.0008266651431880331,0.011744872117338339,7.009625327133042,20,1493.306398153305,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/blocks.csv" new file mode 100644 index 000000000..7c5f4cb1b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.12831680915709584,-0.1632,22200.3084 +2,0.12843141335956754,-0.1612,22252.13 +3,0.12532056149579585,-0.2354,21913.588 +4,0.12598138163443653,-0.2282,22000.178 +5,0.12129071944151074,-0.254,21622.9702 +6,0.12530733833592386,-0.2114,21982.479 +7,0.1231426228903234,-0.2626,21754.6914 +8,0.13003183057680726,-0.1404,22525.1962 +9,0.1227341588485986,-0.2808,21652.526 +10,0.12675563859622926,-0.1958,22113.0828 +11,0.12796154530607165,-0.151,22294.64 +12,0.12411787473130971,-0.2388,21811.6574 +13,0.12743710136301817,-0.1754,22211.7326 +14,0.12882728792969136,-0.1712,22274.1782 +15,0.13201906909868122,-0.112,22617.4772 +16,0.12871034439504148,-0.1588,22386.656 +17,0.12875158359762282,-0.1678,22362.2274 +18,0.12894305413402618,-0.1668,22295.825 +19,0.12575282205138355,-0.2238,21966.4412 +20,0.13353191336914896,-0.1106,22834.5748 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/metadata.txt" new file mode 100644 index 000000000..941006496 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:40:58.302 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958809 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/summary.csv" new file mode 100644 index 000000000..f6a629397 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/064/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.344439,22066,10000,100000,0.3391459085083008,0.1271682535156142,0.02016850143112266,0.8018327369259253,8334.098662399292,0.29994,0.40942,-0.19045999999999996,22153.62799,0.0006821150063342474,0.010958218257017016,6.921085314047435,20,1856.006464958191,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/blocks.csv" new file mode 100644 index 000000000..cef92f4ca --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22901531184092164,0.8832,31205.4338 +2,0.22534985407795757,0.8638,30941.4308 +3,0.22591078410167248,0.8696,30959.249 +4,0.22429836355317384,0.865,30906.417 +5,0.22600022793840616,0.8528,30943.845 +6,0.22721511697806418,0.8696,31078.4626 +7,0.2293159259574488,0.8824,31216.089 +8,0.2242407798588276,0.8688,30895.3386 +9,0.2267399608651176,0.89,31064.5732 +10,0.22423623757977038,0.858,30841.2118 +11,0.22692346991114318,0.8724,31055.454 +12,0.2233215962536633,0.8686,30831.3064 +13,0.22241897848658262,0.846,30722.7196 +14,0.2281609966415912,0.887,31114.1204 +15,0.22419552244786173,0.865,30901.9916 +16,0.22546173116751014,0.8756,30973.5986 +17,0.22753066270239652,0.8792,31068.0106 +18,0.22546888845078647,0.854,30951.7232 +19,0.22312639530934394,0.8698,30805.6826 +20,0.22451586269177495,0.8588,30874.2238 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/metadata.txt" new file mode 100644 index 000000000..44706e0bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:41:00.149 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22958811 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/summary.csv" new file mode 100644 index 000000000..85c8b08a8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/065/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.346439,11066,10000,100000,0.47245954406738283,0.22567233334070072,0.052692543080260945,0.9665125093291309,14789.662037816162,0.01387,0.89672,0.86898,30967.54408,0.00043421906590694083,0.0026194776498177533,5.7514395150414614,20,1845.4024369716644,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/blocks.csv" new file mode 100644 index 000000000..c9a204dc7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.2266024822421372,0.8674,31020.3894 +2,0.22467942954283207,0.854,30879.476 +3,0.2256064481874928,0.875,30980.7478 +4,0.22407891465798022,0.8584,30876.148 +5,0.22601554441880434,0.8758,31007.2844 +6,0.22600549137499185,0.876,31011.526 +7,0.22710345182921737,0.8766,31062.2374 +8,0.22341702121216803,0.8758,30821.8724 +9,0.22829129391796887,0.8694,31124.8004 +10,0.22456252471543847,0.8574,30855.7564 +11,0.22604182634428144,0.878,30998.2536 +12,0.22798083389624954,0.8752,31119.207 +13,0.222270067291148,0.8526,30734.6812 +14,0.22499345832280815,0.8618,30880.7192 +15,0.22373948910534383,0.8606,30860.8698 +16,0.22794559306949377,0.8778,31136.133 +17,0.22537906711716205,0.8666,30941.662 +18,0.2271590513791889,0.869,31087.6246 +19,0.2235457263449207,0.859,30802.8834 +20,0.2267870601920411,0.8608,30963.691 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/metadata.txt" new file mode 100644 index 000000000..45b7cd6bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:39:07.637 +hostname=a01r03n07 +julia=1.12.6 +slurm_job=22958812 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/summary.csv" new file mode 100644 index 000000000..7596ff577 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/066/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.0,0.346439,22068,10000,100000,0.4724893206787109,0.22561023875808342,0.05261581650928574,0.9673893366930165,14785.592607249755,0.01419,0.89574,0.86736,30958.29815,0.00037779897827517825,0.0019312717380823928,5.3400539377889435,20,1737.173556804657,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/blocks.csv" new file mode 100644 index 000000000..8f2b64d4f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.012423532980063464,-1.9672,20378.4228 +2,0.011912940361490473,-1.9602,20389.8152 +3,0.012281166714953724,-1.9604,20503.1002 +4,0.011807992998324334,-1.9582,20300.4644 +5,0.012551281405915507,-1.9452,20964.523 +6,0.012920782339049038,-1.9556,20696.7542 +7,0.012213679645687807,-1.9566,20553.758 +8,0.011901517253450584,-1.9602,20166.2936 +9,0.012081392508745193,-1.9582,20229.1182 +10,0.01255485524282558,-1.9542,20916.7218 +11,0.012312368786905427,-1.966,20317.4162 +12,0.01162376661892049,-1.9616,19826.0452 +13,0.012212827570317313,-1.9628,20405.045 +14,0.012197033748857212,-1.9518,20530.868 +15,0.011139618827286176,-1.967,19787.4516 +16,0.011722944754885976,-1.9602,19777.033 +17,0.012291796044970396,-1.9602,20422.3776 +18,0.01125908259662101,-1.963,19577.7292 +19,0.011699435068387538,-1.9644,19989.2988 +20,0.012943890044803265,-1.9484,20854.2174 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/metadata.txt" new file mode 100644 index 000000000..05929ac54 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T22:00:33.112 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22958816 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/summary.csv" new file mode 100644 index 000000000..eee2f9826 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/067/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.342439,11068,10000,100000,0.08950727600097656,0.012102595275623025,0.00038131354700192687,0.38412695682378317,3172.6227359329223,0.98017,0.00127,-1.9590699999999999,20329.32267,0.00010723306733853489,0.0013083758513596402,1.7370540626994633,20,12676.226624965668,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/blocks.csv" new file mode 100644 index 000000000..27e9330c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.011457112626824528,-1.9618,19844.6872 +2,0.011345480180368758,-1.9662,19782.71 +3,0.011696984253567643,-1.9604,19986.0396 +4,0.011842116777959745,-1.9632,20261.221 +5,0.012151056611014064,-1.9626,20117.549 +6,0.012291497258993332,-1.9598,20469.718 +7,0.011425143415969797,-1.9616,19767.655 +8,0.01206945569467498,-1.9614,20300.8548 +9,0.011600162915547845,-1.9698,19938.5044 +10,0.011749351748626213,-1.9588,19884.4686 +11,0.0121805776003981,-1.9628,20266.2036 +12,0.012042387840466108,-1.9612,20225.8718 +13,0.012258053354045843,-1.9586,20220.332 +14,0.012566672391002067,-1.953,20464.5172 +15,0.01204342277526157,-1.9542,20166.0396 +16,0.011442082161619328,-1.968,19858.2746 +17,0.011869821167353075,-1.9606,19913.2248 +18,0.011518946899473668,-1.9692,19434.4728 +19,0.011945371182565577,-1.9698,20163.4196 +20,0.011599850023456383,-1.9582,19790.062 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/metadata.txt" new file mode 100644 index 000000000..192190c5c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:35:27.642 +hostname=a01r03n07 +julia=1.12.6 +slurm_job=22958817 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/summary.csv" new file mode 100644 index 000000000..a9b73760b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/068/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.342439,22070,10000,100000,0.08861758140563965,0.01185477734395943,0.00036483655621649517,0.3852019307831078,3107.658752054901,0.98186,0.00166,-1.96206,20042.79128,7.661555149635493e-5,0.001049019592411486,1.6728918867791018,20,7980.673137187958,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/blocks.csv" new file mode 100644 index 000000000..d9015e5da --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.10858640677636722,-0.0532,82793.4022 +2,0.10693632188958581,-0.1188,81527.3488 +3,0.10554979166043922,-0.1256,81135.5968 +4,0.10398399607172469,-0.172,80306.1688 +5,0.10120236774565419,-0.2046,79057.213 +6,0.10634915314046665,-0.1538,81357.26 +7,0.10045813193107024,-0.2246,78719.1844 +8,0.10892876049021724,-0.0826,82443.0356 +9,0.11027736621602671,-0.0476,83167.8518 +10,0.10196357622691431,-0.17,79708.4804 +11,0.10211218575417297,-0.1956,79215.7014 +12,0.10481747753085802,-0.1244,80748.2414 +13,0.10111255724459188,-0.2028,78870.7618 +14,0.1081316333921859,-0.1,82032.2366 +15,0.11056215793596348,-0.039,83267.3704 +16,0.10894129033932695,-0.0468,82731.152 +17,0.10251882461461936,-0.1896,79615.8456 +18,0.10491765266504371,-0.1438,80857.2958 +19,0.10940355353001505,-0.047,82914.9242 +20,0.10866176635092124,-0.0366,82856.9762 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/metadata.txt" new file mode 100644 index 000000000..6fdbafa51 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T20:31:21.139 +hostname=a02r07n01 +julia=1.12.6 +slurm_job=22959037 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/summary.csv" new file mode 100644 index 000000000..855f4dbe7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/069/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.344439,11070,10000,100000,0.3106457024383545,0.10577074857530824,0.013697246918092676,0.8167664145269646,27727.167114525604,0.27702,0.43012,-0.12391999999999997,81166.30236,0.0007507327303337645,0.014315794736841135,7.4948853076459026,20,7150.454889059067,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/blocks.csv" new file mode 100644 index 000000000..425be296a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1067717204684508,-0.1206,81237.9726 +2,0.10581011211692821,-0.1092,81610.1932 +3,0.10659771998196374,-0.1336,81422.1024 +4,0.1022222602500231,-0.185,79471.3564 +5,0.10047337195199216,-0.216,78944.5866 +6,0.1029203002410708,-0.1962,79542.6928 +7,0.10410412484026747,-0.1608,80187.562 +8,0.11039926241544308,-0.031,83615.779 +9,0.10599425185188883,-0.1,81397.8612 +10,0.10694847585089738,-0.0946,82073.449 +11,0.10317459342575167,-0.1456,80579.0132 +12,0.09931655594031326,-0.2224,78494.0764 +13,0.10449709703046829,-0.1308,80666.2684 +14,0.10304449762642616,-0.1748,79826.8738 +15,0.10702333156261593,-0.059,82166.553 +16,0.10690466572792502,-0.0916,81866.3832 +17,0.10543030232731253,-0.1182,81194.416 +18,0.10206821872870205,-0.1926,79511.6406 +19,0.10276306436441374,-0.1824,79551.3396 +20,0.10756045251326868,-0.089,81856.8842 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/metadata.txt" new file mode 100644 index 000000000..3b791d489 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:24:44.710 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959038 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/summary.csv" new file mode 100644 index 000000000..df8fb828f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/070/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.344439,22072,10000,100000,0.3090101982879639,0.10470121896080614,0.013450381479049842,0.8150211404006267,27446.796343261565,0.28025,0.42283,-0.13767000000000001,80760.85018,0.0006061225400851414,0.011793479688280923,7.643587173109097,20,10003.460584878922,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/blocks.csv" new file mode 100644 index 000000000..49a834c9b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22490222151821945,0.991,124150.5474 +2,0.22516973990374245,0.992,124228.636 +3,0.22576280193440615,0.9926,124404.499 +4,0.22595509486887605,0.9906,124444.9544 +5,0.22695022809277288,0.9916,124712.1668 +6,0.22455274948369477,0.991,124137.124 +7,0.2235936482157209,0.9878,123821.3468 +8,0.22556839385947677,0.9932,124380.7584 +9,0.2251830941334483,0.9902,124228.542 +10,0.22600836534035626,0.9904,124491.049 +11,0.22385131375588244,0.9892,123947.1556 +12,0.22580644532935693,0.9914,124446.2476 +13,0.22622788673471658,0.9938,124522.8644 +14,0.22629176194624742,0.9926,124584.7882 +15,0.22585986738675273,0.99,124458.3926 +16,0.22672022835852113,0.9916,124698.1016 +17,0.22507277374529513,0.9894,124238.8554 +18,0.22782586319991388,0.9926,124969.005 +19,0.226304484775709,0.9916,124514.196 +20,0.22690612868216123,0.9924,124682.6898 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/metadata.txt" new file mode 100644 index 000000000..cced6711f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:28:49.307 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959040 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/summary.csv" new file mode 100644 index 000000000..850bd40bd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/071/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.346439,11072,10000,100000,0.4745202674865723,0.22572565456326352,0.0514278597004234,0.9907484275025018,59172.62598983215,0.0001,0.99145,0.9912500000000001,124403.096,0.00023241382337382997,0.0003305099727773199,5.368956430695166,20,10179.851246118546,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/blocks.csv" new file mode 100644 index 000000000..e0b383160 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22595527429517825,0.9912,124470.459 +2,0.22608374910363926,0.9926,124538.9136 +3,0.2264278622114798,0.9922,124587.7828 +4,0.22690786084218417,0.993,124733.6138 +5,0.2272599252530723,0.9948,124831.3432 +6,0.22605646251948783,0.9904,124465.7678 +7,0.22689748572390528,0.9918,124691.4762 +8,0.2248771538824076,0.9918,124194.6324 +9,0.22651549866135465,0.9924,124634.918 +10,0.22459314155393512,0.9904,124096.8334 +11,0.22590270450364333,0.9922,124509.909 +12,0.22474878575120819,0.99,124115.9218 +13,0.2257137777359225,0.9902,124403.2528 +14,0.2261959047891665,0.9932,124555.7844 +15,0.22680917884467636,0.9916,124649.9614 +16,0.22568105560281546,0.9938,124317.1902 +17,0.22509328778844792,0.9922,124176.3856 +18,0.22478917068545706,0.9876,124182.2136 +19,0.22543193079351914,0.992,124250.1512 +20,0.22537639142783591,0.9908,124303.7826 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/metadata.txt" new file mode 100644 index 000000000..bbd58c7b0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:28:31.921 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959043 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/summary.csv" new file mode 100644 index 000000000..b0149e73b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/072/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.0,0.346439,22074,10000,100000,0.4746760651397705,0.22586583009846684,0.05148253832718758,0.9909257558718432,59209.37216533249,0.00014,0.99199,0.9917100000000001,124435.51464,0.00017777676663833687,0.0003498796785663387,4.952122061191909,20,10412.952621936798,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/blocks.csv" new file mode 100644 index 000000000..f6b9f87aa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.22334132189750672,-0.4936,1807.6822 +2,0.23914693570137024,-0.4034,1870.5656 +3,0.23856770782470704,-0.3808,1876.9258 +4,0.23069769887924194,-0.455,1837.1982 +5,0.24077494587898254,-0.3844,1879.9496 +6,0.23699273996353148,-0.4038,1855.8656 +7,0.22575582695007324,-0.5098,1814.2068 +8,0.22689448261260986,-0.4882,1825.8178 +9,0.22984495162963867,-0.4744,1834.2486 +10,0.2404373592376709,-0.3904,1880.3062 +11,0.23164893264770509,-0.4218,1846.9442 +12,0.2354637363433838,-0.4048,1855.768 +13,0.23647984318733214,-0.41,1859.2914 +14,0.24013908414840698,-0.3886,1877.7044 +15,0.23724437446594238,-0.3878,1872.4794 +16,0.2375709837436676,-0.4026,1864.271 +17,0.23434032182693482,-0.3934,1858.4192 +18,0.23553259191513062,-0.3928,1858.8238 +19,0.23481889958381652,-0.43,1859.7066 +20,0.23244082798957824,-0.441,1847.0318 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/metadata.txt" new file mode 100644 index 000000000..87a30eff5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:22:23.490 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959044 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/summary.csv" new file mode 100644 index 000000000..0450e7432 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/073/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.367446,11074,10000,100000,0.4558372119140625,0.23440667832136153,0.07125222190722792,0.7711547706287095,960.1297544042968,0.37481,0.32679,-0.42282999999999993,1854.16031,0.0011249878591072825,0.00903543055217392,4.783032817005111,20,80.21159482002258,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/blocks.csv" new file mode 100644 index 000000000..2b64add30 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.2478008988380432,-0.324,1915.2614 +2,0.23020101561546324,-0.465,1834.1582 +3,0.23164960794448852,-0.425,1839.2548 +4,0.22223057103157043,-0.5066,1805.5174 +5,0.22909188804626465,-0.4526,1821.7016 +6,0.23915862398147583,-0.374,1881.6346 +7,0.23300763449668885,-0.4164,1846.8326 +8,0.23499255685806275,-0.4074,1854.6924 +9,0.2222812891960144,-0.4934,1802.971 +10,0.23957529878616332,-0.3882,1882.0852 +11,0.22393023595809936,-0.4888,1809.548 +12,0.22644556593894957,-0.4754,1823.9006 +13,0.231960910654068,-0.4368,1849.137 +14,0.2252453008174896,-0.4782,1806.6876 +15,0.23123850526809692,-0.441,1839.0428 +16,0.22604408931732178,-0.4626,1822.0658 +17,0.229068101978302,-0.4552,1836.6036 +18,0.23667887663841247,-0.4084,1858.8424 +19,0.22155154061317445,-0.532,1791.3264 +20,0.22748034362792968,-0.4654,1820.3836 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/metadata.txt" new file mode 100644 index 000000000..5ca5fc64a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:22:29.032 +hostname=a01r08n02 +julia=1.12.6 +slurm_job=22959045 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/summary.csv" new file mode 100644 index 000000000..4261675aa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/074/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.367446,22076,10000,100000,0.451375556640625,0.23048164278030395,0.06925568255913085,0.7670386847079586,944.052808828125,0.38273,0.32064,-0.44482000000000005,1837.08235,0.001505788738262147,0.010990521274932179,4.606829312457647,20,73.94378995895386,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/blocks.csv" new file mode 100644 index 000000000..f0cec3bf5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.27904253253936767,-0.048,2073.6672 +2,0.27964567427635195,-0.0418,2073.4456 +3,0.284062077999115,-0.0106,2092.7348 +4,0.28297847657203673,-0.0352,2086.7384 +5,0.28253029227256776,-0.0058,2091.8828 +6,0.28130196623802184,-0.0468,2077.7392 +7,0.2701831678390503,-0.1296,2031.9564 +8,0.27514618501663207,-0.0794,2060.4842 +9,0.28921965060234067,0.0382,2112.7896 +10,0.2804923873901367,-0.0456,2079.5268 +11,0.2841573106765747,-0.0318,2097.063 +12,0.280727424621582,-0.0388,2078.5238 +13,0.28073968844413755,-0.0436,2073.885 +14,0.2865795386314392,-0.006,2103.996 +15,0.28229112844467164,-0.0334,2085.4978 +16,0.2877779191017151,0.0306,2116.4892 +17,0.28172555389404297,-0.0488,2081.3458 +18,0.28501370792388914,-0.011,2100.7816 +19,0.28396761832237244,0.0208,2103.9282 +20,0.29034293484687806,0.0362,2124.6176 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/metadata.txt" new file mode 100644 index 000000000..aead460c1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:23:13.396 +hostname=a01r08n02 +julia=1.12.6 +slurm_job=22959050 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/summary.csv" new file mode 100644 index 000000000..191d79149 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/075/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.369446,11076,10000,100000,0.510885341796875,0.28239626178264615,0.09516306269988123,0.8380105306227429,1156.6950882617186,0.24434,0.46216,-0.026519999999999988,2087.35465,0.001029911254142556,0.009024894225943797,4.531419900753455,20,74.45031189918518,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/blocks.csv" new file mode 100644 index 000000000..00599975a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.28463154225349424,0.0026,2092.6264 +2,0.2797394726753235,-0.0672,2074.8268 +3,0.28031303176879885,-0.0628,2067.6986 +4,0.2840528549671173,-0.0098,2098.9182 +5,0.26813543243408205,-0.1224,2030.2414 +6,0.27829414486885073,-0.0746,2070.4936 +7,0.2818733802318573,-0.0072,2090.438 +8,0.2744697855472565,-0.0956,2048.503 +9,0.2909481077671051,0.034,2122.5126 +10,0.2865940488815308,-0.0004,2105.7716 +11,0.28369958810806273,-0.0124,2086.1866 +12,0.28052662863731387,-0.0432,2081.654 +13,0.2848252552986145,-0.014,2096.1328 +14,0.28492009997367856,0.0094,2106.845 +15,0.2810086885929108,-0.0348,2080.4724 +16,0.28524282302856446,-0.0246,2094.9754 +17,0.28386168065071105,-0.021,2092.4498 +18,0.2756100046634674,-0.0692,2051.2146 +19,0.26913893671035766,-0.1324,2035.0948 +20,0.2796910184383392,-0.0712,2068.6244 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/metadata.txt" new file mode 100644 index 000000000..2f30f08ec --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:23:21.953 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22959051 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/summary.csv" new file mode 100644 index 000000000..cee482314 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/076/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.369446,22078,10000,100000,0.509074794921875,0.2808788262748718,0.0945033073242017,0.8348164448774339,1150.479672421875,0.24845,0.45606,-0.04083999999999999,2079.784,0.0012627366408402207,0.010006320108074852,4.50703342319269,20,71.81630802154541,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/blocks.csv" new file mode 100644 index 000000000..b36f2fd74 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.32763668732643125,0.3104,2290.7754 +2,0.3310001749038696,0.2952,2297.8672 +3,0.34525813145637513,0.4074,2353.2432 +4,0.33425306034088137,0.3328,2313.1092 +5,0.3375054609298706,0.3542,2318.687 +6,0.3392560755252838,0.3572,2327.9056 +7,0.33066560521125793,0.3266,2299.0224 +8,0.33223711042404175,0.3098,2300.7396 +9,0.3370713250160217,0.3484,2320.3528 +10,0.32929108753204345,0.2912,2287.147 +11,0.33168176279067996,0.3258,2294.5648 +12,0.3293139161109924,0.2772,2291.0604 +13,0.3194261724472046,0.2266,2253.5232 +14,0.33785328183174135,0.3538,2323.238 +15,0.32841494426727297,0.3154,2290.8866 +16,0.33451947288513184,0.313,2307.7574 +17,0.33084407558441165,0.295,2291.412 +18,0.3372685290336609,0.3526,2322.347 +19,0.3350651460170746,0.336,2310.4008 +20,0.3359523673534393,0.33,2319.8166 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/metadata.txt" new file mode 100644 index 000000000..4c495b89b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:23:23.716 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22959052 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/summary.csv" new file mode 100644 index 000000000..bfbdf5f3f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/077/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.371446,11078,10000,100000,0.5635250830078125,0.33322571934938433,0.1245772567631755,0.8913294683234461,1364.8925464550782,0.1414,0.60573,0.32293,2305.69281,0.0012157815890757194,0.008354101104437142,4.741648408317867,20,71.56936287879944,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/blocks.csv" new file mode 100644 index 000000000..5995e55e1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.32260402393341064,0.267,2270.9804 +2,0.32828984355926516,0.3156,2296.0962 +3,0.3290574564933777,0.2904,2290.1704 +4,0.3313707948207855,0.331,2305.8866 +5,0.3263040479183197,0.2716,2275.9038 +6,0.33096227316856386,0.314,2295.2336 +7,0.3327941736221314,0.3282,2308.9022 +8,0.33619714365005493,0.3264,2314.5364 +9,0.3348598659515381,0.3564,2314.961 +10,0.3282169506549835,0.3054,2287.0358 +11,0.33139871010780336,0.3332,2303.491 +12,0.3316313354969025,0.3394,2305.216 +13,0.3325457395076752,0.327,2301.6224 +14,0.33380509967803956,0.3512,2310.7304 +15,0.33360539507865905,0.3466,2309.8016 +16,0.3359139762878418,0.3418,2316.5462 +17,0.3326537877559662,0.3292,2298.1738 +18,0.32421450510025024,0.2664,2263.1744 +19,0.3242669614315033,0.2548,2270.2504 +20,0.3365032084941864,0.358,2317.991 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/metadata.txt" new file mode 100644 index 000000000..68e3f08f3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:23:58.785 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959083 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/summary.csv" new file mode 100644 index 000000000..d0825571d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/078/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +64,2.5,0.371446,22080,10000,100000,0.5615423974609375,0.3308597646355629,0.12275397541514234,0.8917689507365364,1355.2015959472656,0.14181,0.6013,0.31767999999999996,2297.83518,0.0009211398099452721,0.007099153396523305,4.628172304300429,20,81.14888119697571,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/blocks.csv" new file mode 100644 index 000000000..8dd287807 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.15401139867007732,-0.8212,5855.9804 +2,0.13829530714452268,-0.9916,5452.3916 +3,0.15048695365786552,-0.8742,5759.7994 +4,0.15209032280147075,-0.8278,5774.9764 +5,0.1567402302980423,-0.8072,5922.013 +6,0.1495218400269747,-0.8642,5765.416 +7,0.1460151040673256,-0.9166,5626.4174 +8,0.14801524524986745,-0.9286,5690.1938 +9,0.1453430638551712,-0.9324,5640.0158 +10,0.15047993721961975,-0.8816,5735.222 +11,0.1543738403916359,-0.8408,5809.0046 +12,0.14707358294427395,-0.8802,5696.2454 +13,0.15121055126190186,-0.8184,5804.8314 +14,0.149214985370636,-0.8934,5729.5022 +15,0.15064941985309124,-0.8676,5765.7566 +16,0.15372549201250077,-0.8508,5829.0282 +17,0.15691450494527817,-0.8216,5861.8674 +18,0.1560836352646351,-0.8214,5886.5354 +19,0.15437261629104615,-0.84,5853.9036 +20,0.1557953645080328,-0.8064,5870.8196 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/metadata.txt" new file mode 100644 index 000000000..193c29d6f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:29:27.546 +hostname=a03r04n01 +julia=1.12.6 +slurm_job=22959084 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/summary.csv" new file mode 100644 index 000000000..a456a1891 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/079/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.367446,11080,10000,100000,0.35610004150390623,0.15102066979169845,0.03291605462213294,0.6928911428223692,2474.3226538671875,0.53255,0.2008,-0.8643,5766.49601,0.0010334687488145402,0.01101657602744251,4.960722699888125,20,375.24875378608704,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/blocks.csv" new file mode 100644 index 000000000..b2289af09 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1510763545691967,-0.8758,5747.5356 +2,0.14051792860329151,-0.9214,5593.0594 +3,0.15226147005558013,-0.8562,5797.7496 +4,0.14639070826768874,-0.9036,5682.5022 +5,0.15541711042523385,-0.8106,5873.0134 +6,0.14711959992349147,-0.8788,5685.8358 +7,0.14286994669139386,-0.9392,5608.5436 +8,0.152708340421319,-0.8062,5846.1584 +9,0.15457921405732633,-0.8112,5840.483 +10,0.1533047710955143,-0.8374,5845.0256 +11,0.14916024279594423,-0.8702,5733.2458 +12,0.14706820796728134,-0.9024,5687.3058 +13,0.15280510986149312,-0.849,5796.1164 +14,0.15288541370034217,-0.8498,5829.2556 +15,0.15330336170196532,-0.802,5845.3546 +16,0.15226644373238088,-0.8604,5760.7414 +17,0.15153911120295524,-0.8586,5750.302 +18,0.15155149412751198,-0.882,5766.2984 +19,0.15398414828777313,-0.8362,5847.4202 +20,0.14620627558231353,-0.8926,5650.392 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/metadata.txt" new file mode 100644 index 000000000..47276ed8c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:30:01.103 +hostname=a03r04n02 +julia=1.12.6 +slurm_job=22959096 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/summary.csv" new file mode 100644 index 000000000..f80b06131 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/080/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.367446,22082,10000,100000,0.3552917858886719,0.15035076265349984,0.03267181113665804,0.6918916045375167,2463.3468953149413,0.53111,0.20004,-0.86218,5759.31694,0.0009047239025705007,0.008629690486612876,4.6766924147815745,20,362.15371203422546,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/blocks.csv" new file mode 100644 index 000000000..d8a1ef869 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.2365030817180872,0.006,7641.2084 +2,0.2419815425723791,0.0494,7742.1234 +3,0.23882665556669236,0.018,7698.446 +4,0.23925290876626967,0.0412,7716.7106 +5,0.2389914313942194,0.0108,7680.277 +6,0.23860929689407348,0.0164,7676.8334 +7,0.22880886253118515,-0.0804,7505.5226 +8,0.2326724358767271,-0.0398,7591.5958 +9,0.23268136622011662,-0.0322,7578.3296 +10,0.22521974561810493,-0.1186,7429.5622 +11,0.24389757834970952,0.0668,7797.9212 +12,0.24476297210454942,0.055,7831.1026 +13,0.23822344373166562,0.0008,7678.0516 +14,0.22966068782806395,-0.0674,7528.7776 +15,0.23211883640289308,-0.05,7571.1846 +16,0.24057028664052488,0.0198,7727.554 +17,0.2409832749634981,0.0206,7724.6446 +18,0.24166306267976762,0.0086,7733.23 +19,0.23710249536931516,0.017,7672.9744 +20,0.2311748306363821,-0.0482,7542.2228 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/metadata.txt" new file mode 100644 index 000000000..46e1c5933 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:29:36.080 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22959098 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/summary.csv" new file mode 100644 index 000000000..370e8c1f5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/081/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.369446,11082,10000,100000,0.4686266223144531,0.2366852397932112,0.06626428309132622,0.8454011742458996,3877.8509687719725,0.2378,0.47029,-0.005310000000000037,7653.41362,0.001205934596676722,0.010942880165467841,5.580085330556553,20,337.7730460166931,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/blocks.csv" new file mode 100644 index 000000000..b99a75c4f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.23795033071637153,0.0072,7688.4944 +2,0.23326983732283116,-0.0596,7566.9138 +3,0.24156473423540592,0.0324,7718.5082 +4,0.23696443882882595,0.0092,7677.8366 +5,0.23882758118212222,0.0158,7709.331 +6,0.22986901249289513,-0.0534,7502.3786 +7,0.2373045427531004,-0.0092,7654.2758 +8,0.2374912240535021,0.0106,7673.1382 +9,0.23221580842733383,-0.0214,7591.0064 +10,0.2362567669928074,0.013,7662.4592 +11,0.2366313287883997,0.0126,7675.1646 +12,0.23296339646279812,-0.0368,7600.4238 +13,0.24067975372076034,0.0222,7726.1828 +14,0.23486524121165275,-0.0156,7645.1692 +15,0.23715449163019658,0.0194,7663.3812 +16,0.2368276578307152,-0.0162,7670.2266 +17,0.2356858227699995,-0.0372,7621.5258 +18,0.2369598354935646,-0.0138,7636.492 +19,0.23784619830548764,-0.0052,7654.6668 +20,0.2381574290305376,0.0298,7684.7646 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/metadata.txt" new file mode 100644 index 000000000..7e858730c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:29:33.219 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22959101 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/summary.csv" new file mode 100644 index 000000000..78794508a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/082/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.369446,22084,10000,100000,0.467950146484375,0.23647427161246537,0.06629888268504137,0.8434543520182576,3874.3944660986326,0.23755,0.47029,-0.0048100000000000365,7651.11698,0.000620821342921643,0.005977633310935022,5.515826350769217,20,331.9283277988434,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/blocks.csv" new file mode 100644 index 000000000..9c3219f69 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.3146374966710806,0.6166,9071.7888 +2,0.3094437158852816,0.5918,9002.5438 +3,0.3145780833184719,0.6028,9068.8882 +4,0.3134407508134842,0.5722,9045.8864 +5,0.31313991239368916,0.5972,9043.9526 +6,0.30785564930140974,0.5668,8959.4238 +7,0.3120240158647299,0.5932,9026.6834 +8,0.30979112461209296,0.6072,8998.061 +9,0.31415353290736675,0.6236,9073.7506 +10,0.31532628953158853,0.6188,9093.7894 +11,0.307524384868145,0.5788,8973.4632 +12,0.312184737983346,0.6102,9031.1928 +13,0.31408168915510176,0.5954,9050.3416 +14,0.3112675699144602,0.5772,9006.6264 +15,0.314025404676795,0.6182,9075.4852 +16,0.3204701533704996,0.627,9149.9104 +17,0.317845042181015,0.6424,9127.8322 +18,0.31114537677168846,0.5954,9016.8534 +19,0.3052378458678722,0.5336,8906.9872 +20,0.30998614493608473,0.5852,8992.803 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/metadata.txt" new file mode 100644 index 000000000..5b3a19280 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:30:58.933 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959121 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/summary.csv" new file mode 100644 index 000000000..0194463d0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/083/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.371446,11084,10000,100000,0.5515664855957031,0.31240794605121014,0.10454548171321705,0.9335527768063936,5118.491788103027,0.06869,0.73506,0.59768,9035.81317,0.0008003283120967274,0.005557364009747977,4.827266339919963,20,374.6319959163666,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/blocks.csv" new file mode 100644 index 000000000..1d45f297f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.31167759911119935,0.6118,9039.6776 +2,0.30704654604196546,0.5616,8952.1972 +3,0.3120339411765337,0.5938,9016.7254 +4,0.3130298275977373,0.6036,9040.5682 +5,0.30683911964297295,0.5572,8952.289 +6,0.31395966990292073,0.6044,9045.527 +7,0.31091659647226333,0.5848,8997.1446 +8,0.30973553718924524,0.5778,8989.0598 +9,0.3036323235780001,0.5464,8899.5266 +10,0.312279708352685,0.5888,9028.075 +11,0.31341831677556037,0.6096,9047.7236 +12,0.31092407890558243,0.5856,9010.9812 +13,0.31180869154036045,0.5946,9015.437 +14,0.31475565901696684,0.611,9065.5278 +15,0.3064304237276316,0.5656,8955.534 +16,0.30842033035755156,0.5744,8976.3772 +17,0.31345688743889333,0.6152,9059.7604 +18,0.31345865692198277,0.6092,9053.7968 +19,0.3095241680949926,0.5588,8989.4206 +20,0.3104235257744789,0.5836,9000.8278 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/metadata.txt" new file mode 100644 index 000000000..8ab0d5275 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:32:04.708 +hostname=a06r02n01 +julia=1.12.6 +slurm_job=22959148 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/summary.csv" new file mode 100644 index 000000000..908d32ff3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/084/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +128,2.5,0.371446,22086,10000,100000,0.5498611083984375,0.3106885803809762,0.10355335017160441,0.9321513386016484,5090.321700961914,0.07152,0.72993,0.5868899999999999,9006.80884,0.000660298226329361,0.00469370182714084,4.825385286860141,20,364.99097990989685,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/blocks.csv" new file mode 100644 index 000000000..e4aba5789 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07709619067385792,-1.4832,15364.602 +2,0.07733175730630755,-1.4604,15361.1732 +3,0.074081729792431,-1.523,14965.7482 +4,0.07492975977472961,-1.4962,15032.0072 +5,0.07643583462946117,-1.4714,15176.4662 +6,0.07513452149610966,-1.5056,15127.75 +7,0.0731397973915562,-1.5058,14966.769 +8,0.07196874370444566,-1.517,14718.2808 +9,0.07647174678239971,-1.4904,15242.4704 +10,0.0734057625176385,-1.517,14893.9686 +11,0.07665894034858793,-1.48,15296.9384 +12,0.07799516993220895,-1.4738,15443.7888 +13,0.07351977394297719,-1.4978,14886.377 +14,0.07082920180670917,-1.5438,14546.3896 +15,0.07152706534042955,-1.5112,14686.8202 +16,0.0751061673188582,-1.4876,15160.1292 +17,0.07228440381772816,-1.5092,14855.4174 +18,0.0755784083507955,-1.4842,15279.9558 +19,0.0759901874139905,-1.4814,15117.1872 +20,0.07464768124930561,-1.499,15063.5006 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/metadata.txt" new file mode 100644 index 000000000..81a78fca6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T19:02:56.773 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22959175 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/summary.csv" new file mode 100644 index 000000000..a5f6625d6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/085/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.367446,11086,10000,100000,0.23808408142089843,0.07470664217952638,0.01003735485113209,0.556031192332541,4895.974501877441,0.77829,0.05968,-1.4969000000000001,15059.28699,0.00046052093020196105,0.004508740050402691,4.068377660796051,20,2012.1747851371765,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/blocks.csv" new file mode 100644 index 000000000..a3877515b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07654802064243704,-1.4716,15275.07 +2,0.07060014545302838,-1.5236,14598.3656 +3,0.07743381900507956,-1.4586,15437.5158 +4,0.07838297946713865,-1.448,15411.7102 +5,0.07616330394782125,-1.4748,15245.9672 +6,0.07373092758525163,-1.5008,14886.5678 +7,0.07603167037647217,-1.4542,15171.1004 +8,0.07078221510667354,-1.5246,14619.745 +9,0.07720339210350066,-1.4572,15331.1834 +10,0.07651164580155163,-1.4654,15291.8478 +11,0.07315921647753566,-1.5074,14908.2862 +12,0.07113793838098645,-1.5254,14652.1394 +13,0.0720118168713525,-1.5196,14805.169 +14,0.06998591610696167,-1.5444,14540.9602 +15,0.07370869148857892,-1.4886,15098.0468 +16,0.07230977931004018,-1.5248,14730.3524 +17,0.08193736843690276,-1.4356,15788.9606 +18,0.07469186750687659,-1.4898,15099.8554 +19,0.07106028450671584,-1.5238,14733.1676 +20,0.07001904605161399,-1.56,14431.05 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/metadata.txt" new file mode 100644 index 000000000..6a479c0df --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T19:03:08.964 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22959200 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/summary.csv" new file mode 100644 index 000000000..60ccba7a7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/086/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.367446,22088,10000,100000,0.23679407775878905,0.07417050223132596,0.009971097654883783,0.5517209430350573,4860.838034232178,0.77803,0.06115,-1.49491,15002.85304,0.0007329680063334839,0.0079221671011755,4.369891482506522,20,2003.4521579742432,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/blocks.csv" new file mode 100644 index 000000000..9bf018264 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.194555963530764,-0.0554,27616.8038 +2,0.197056867624633,-0.019,27908.6558 +3,0.195292554573901,-0.0472,27777.4942 +4,0.2010484075188637,0.0478,28353.595 +5,0.19898521776851266,0.0136,28120.2128 +6,0.19544485023375602,-0.017,27830.861 +7,0.19538426145073026,-0.036,27760.618 +8,0.1972230124887079,0.0032,27989.7398 +9,0.19744763087127357,-0.0014,28017.5226 +10,0.19723865063525736,0.0078,28021.579 +11,0.20161093355137855,0.051,28399.9498 +12,0.19736452193818987,0.0208,27976.768 +13,0.19572057005539537,-0.0132,27864.5336 +14,0.19832932097483427,0.0164,28092.3946 +15,0.1994323930768296,0.0122,28154.1022 +16,0.1978236378185451,0.015,28014.0708 +17,0.19498285454586148,-0.0436,27789.7192 +18,0.19181614361200483,-0.0398,27496.1528 +19,0.2019128582071513,0.0514,28424.1354 +20,0.194597289211303,-0.0264,27719.7068 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/metadata.txt" new file mode 100644 index 000000000..90301c27f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T19:04:50.203 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22959500 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/summary.csv" new file mode 100644 index 000000000..a24192947 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/087/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.369446,11088,10000,100000,0.42764456665039063,0.19716339698439464,0.04596257253275901,0.8457621705730171,12921.300384769287,0.23716,0.47133,-0.0029899999999999927,27966.43076,0.0005764404755915843,0.007305664348910875,5.984253171754806,20,1908.4162890911102,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/blocks.csv" new file mode 100644 index 000000000..179d4b4b9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.2069567048292607,0.0792,28730.5792 +2,0.1966540646791458,-0.0026,28016.2192 +3,0.19804661239143462,0.0016,28064.5452 +4,0.2009315035512671,0.0368,28295.5604 +5,0.19472566489893944,-0.03,27842.5952 +6,0.19516447559781372,0.0004,27853.4366 +7,0.18943064456824213,-0.0744,27358.157 +8,0.20041432045996188,0.0526,28256.3796 +9,0.19798856240492313,-0.0242,28070.8588 +10,0.19581047774683685,0.0028,27899.9596 +11,0.19203086799699814,-0.0422,27566.7932 +12,0.19945520634818822,0.0306,28217.6972 +13,0.20255475799981504,0.0632,28425.9018 +14,0.19476819677259774,-0.0248,27688.4846 +15,0.19712065693903713,-0.0148,28006.1156 +16,0.20522926630917937,0.0718,28609.3404 +17,0.19760533445328474,-0.006,27900.9268 +18,0.20536216549649836,0.094,28734.266 +19,0.19761828608941287,-0.0222,27897.2684 +20,0.19741926509421318,-0.0252,27880.3096 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/metadata.txt" new file mode 100644 index 000000000..9fecdd6ec --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T19:04:57.188 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22959502 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/summary.csv" new file mode 100644 index 000000000..4f6605048 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/088/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.369446,22090,10000,100000,0.4291795886230469,0.1982643517313525,0.04632392290676764,0.8485627015347333,12993.452555065918,0.23406,0.47645,0.008330000000000004,28065.76972,0.0009852397869526248,0.010097527315869803,5.994515622733402,20,1912.272619009018,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/blocks.csv" new file mode 100644 index 000000000..71d71a924 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.310968647665903,0.8838,36354.3284 +2,0.3065867550864816,0.8728,36129.633 +3,0.3045836707280949,0.8696,35997.7272 +4,0.3071043423842639,0.8628,36156.9656 +5,0.3025688682893291,0.855,35920.757 +6,0.3066760840486735,0.8836,36154.2972 +7,0.3049925806067884,0.8644,36014.2424 +8,0.30532406069971624,0.8492,35992.7344 +9,0.30578401808813216,0.8662,36048.481 +10,0.3096826290773228,0.8854,36289.5562 +11,0.30615108998212964,0.8664,36074.7562 +12,0.3071802458129823,0.8752,36140.35 +13,0.3008789586326107,0.85,35817.8272 +14,0.30800684252586213,0.8646,36185.186 +15,0.3072429544156417,0.8732,36179.9708 +16,0.30330677127260713,0.867,35954.3784 +17,0.3078547342853621,0.8854,36194.9018 +18,0.30431853270474823,0.8616,36002.4218 +19,0.3006435167266056,0.8462,35771.8604 +20,0.30350213197804987,0.8602,35966.5474 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/metadata.txt" new file mode 100644 index 000000000..a98c57de3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:58:29.387 +hostname=a01r08n02 +julia=1.12.6 +slurm_job=22959503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/summary.csv" new file mode 100644 index 000000000..7455c6c13 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/089/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.371446,11090,10000,100000,0.5503520596313477,0.30566787175056526,0.09611277340713971,0.9721168634342975,20032.249643045045,0.01345,0.89403,0.86713,36067.34612,0.0005960978407827846,0.002650571934309156,4.607867447478669,20,1561.015372991562,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/blocks.csv" new file mode 100644 index 000000000..22fc942b2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.31001952695082874,0.8868,36334.707 +2,0.30597097812797874,0.8658,36099.8438 +3,0.3075182860681787,0.866,36167.5768 +4,0.30520329725965856,0.873,36050.0088 +5,0.3059885293610394,0.8586,36055.7912 +6,0.30232922419775277,0.8482,35837.038 +7,0.3043779658246785,0.861,35979.1732 +8,0.30776403075288983,0.8688,36181.889 +9,0.30794737135134637,0.8718,36250.8568 +10,0.3059601907067001,0.871,36095.4814 +11,0.30993130463138224,0.8746,36317.9182 +12,0.3087677733287215,0.8762,36245.4616 +13,0.3035279174467549,0.8622,35971.2842 +14,0.3070903626946732,0.8534,36122.8252 +15,0.3028208024201915,0.8656,35909.44 +16,0.31014039873071014,0.8848,36360.37 +17,0.3025865681407973,0.8448,35864.3364 +18,0.309303578385897,0.869,36264.8268 +19,0.3026698013987392,0.8438,35891.1182 +20,0.3040379421707243,0.8484,35990.4074 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/metadata.txt" new file mode 100644 index 000000000..06bd49504 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T18:59:34.277 +hostname=a01r08n02 +julia=1.12.6 +slurm_job=22959509 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/summary.csv" new file mode 100644 index 000000000..8050ef8ce --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/090/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +256,2.5,0.371446,22092,10000,100000,0.5508979388427734,0.30619779249748214,0.09638971275400506,0.9726877013277069,20066.97852911499,0.01425,0.89319,0.8646900000000001,36099.5177,0.0005993359120628329,0.0027512093034843706,4.984650123387343,20,1600.0176219940186,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/blocks.csv" new file mode 100644 index 000000000..508fc5d51 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.023889820200647227,-1.936,29355.1772 +2,0.02233096478516236,-1.9458,28435.455 +3,0.02332672233101912,-1.9436,29243.2254 +4,0.022107431665482,-1.9464,28682.5356 +5,0.023988506336975843,-1.9392,29621.4338 +6,0.023277461295994,-1.9468,29088.0616 +7,0.023101549320248885,-1.9492,29077.8232 +8,0.022883672114636284,-1.945,28630.9638 +9,0.02287820623667212,-1.9426,28836.0848 +10,0.02202480300264433,-1.9464,28417.5348 +11,0.022893108471878806,-1.9354,29060.9768 +12,0.024460633758583573,-1.9376,29907.093 +13,0.02285624870567117,-1.9472,28883.8524 +14,0.022363491822208745,-1.9448,28632.927 +15,0.023798274470190516,-1.9354,29356.724 +16,0.025042400010407438,-1.9156,30258.4382 +17,0.023378598858590702,-1.943,29147.0046 +18,0.023690799333190078,-1.9264,29754.1188 +19,0.023059297183377202,-1.943,28955.1084 +20,0.02227497653714381,-1.9534,28608.6612 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/metadata.txt" new file mode 100644 index 000000000..1db8d7bbc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:26:38.407 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22959532 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/summary.csv" new file mode 100644 index 000000000..d37553a39 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/091/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.367446,11092,10000,100000,0.12498132629394532,0.02318134832203621,0.0013190320768136008,0.40740094154928597,6076.8513745318605,0.97183,0.00252,-1.9411399999999999,29097.65998,0.00017813305371001587,0.0019074976719307083,1.9085388516239234,20,9361.885948896408,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/blocks.csv" new file mode 100644 index 000000000..c081f4a00 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.022304731861304026,-1.9478,28573.3522 +2,0.02400864098171005,-1.9366,29535.7578 +3,0.024739380259835162,-1.9386,29398.7186 +4,0.022736594513664023,-1.9446,28110.0758 +5,0.02300295852428535,-1.9506,28947.957 +6,0.02268513292714488,-1.944,28900.1978 +7,0.022989116780867333,-1.948,28580.4544 +8,0.022270015416911336,-1.9398,28026.0562 +9,0.023557122383988462,-1.9414,28961.098 +10,0.023573998068878426,-1.9388,29148.8958 +11,0.02229680074051721,-1.9444,28426.2816 +12,0.023026866072311532,-1.9422,28778.4702 +13,0.023575689616950696,-1.933,29096.256 +14,0.022190370864071884,-1.948,28356.8012 +15,0.02392158730479423,-1.9392,29426.614 +16,0.023767588632495607,-1.9436,29065.2116 +17,0.022463579906860834,-1.946,28644.7954 +18,0.022664788133779076,-1.9398,28790.4394 +19,0.023193583432259038,-1.9346,29183.9976 +20,0.022547665216040333,-1.949,28430.0238 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/metadata.txt" new file mode 100644 index 000000000..62aa25f02 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:41:07.886 +hostname=a04r08n06 +julia=1.12.6 +slurm_job=22959557 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/summary.csv" new file mode 100644 index 000000000..273fcc14c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/092/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.367446,22094,10000,100000,0.12456181854248047,0.023075810581933476,0.0013203543298571342,0.4032955563306178,6049.185289190369,0.97268,0.00286,-1.9425,28819.07272,0.00015657081719319972,0.0011042024985910496,1.980543562580579,20,10234.599648952484,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/blocks.csv" new file mode 100644 index 000000000..9ad6ac000 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16944567155817059,0.0466,103940.19 +2,0.17032092454297235,0.0654,104530.5366 +3,0.17298637191471644,0.0878,105240.6502 +4,0.16185992281944492,-0.0586,101223.8452 +5,0.1679775761626428,0.0252,103591.4276 +6,0.16311532121566125,-0.032,101678.6534 +7,0.17156713092194403,0.0856,104931.1778 +8,0.16421998831618112,-0.0086,102330.4058 +9,0.16618086113245226,0.0074,102772.9956 +10,0.1635479511218844,-0.0148,102020.5428 +11,0.16896557528156556,0.0586,104108.8504 +12,0.16804384411947104,0.0416,103853.1858 +13,0.16595216839150526,-0.005,102621.4704 +14,0.16496616614634405,-0.0418,102247.115 +15,0.16784084132962163,0.029,103390.378 +16,0.16685488925883546,0.024,103291.007 +17,0.16486992974162568,0.0042,102274.2482 +18,0.16382615455486813,-0.0164,101983.6448 +19,0.16663712037301157,0.0504,103118.686 +20,0.16476508533002343,-0.0404,102328.2768 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/metadata.txt" new file mode 100644 index 000000000..dbf52a996 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:55:10.704 +hostname=a06r02n01 +julia=1.12.6 +slurm_job=22959582 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/summary.csv" new file mode 100644 index 000000000..c72cc25c5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/093/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.369446,11094,10000,100000,0.3941937720489502,0.1666971747116471,0.032535740997184835,0.8540745409563519,43698.66416761002,0.23023,0.47587,0.015410000000000035,103073.86437,0.0006595584867495816,0.009595640183245503,6.777455194153843,20,11020.715776920319,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/blocks.csv" new file mode 100644 index 000000000..35d1cd33a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.16177577703977003,-0.0594,101349.0752 +2,0.16864642222274562,0.0186,103758.053 +3,0.16522219045429956,0.0016,102592.7608 +4,0.16773908201260493,0.054,103613.9424 +5,0.17061948181784245,0.0456,104537.6102 +6,0.1660364901698893,0.0112,102696.758 +7,0.16665873350939947,0.009,102516.0626 +8,0.16335384661532007,-0.0486,101693.9586 +9,0.1661724307659897,-0.0236,102409.6058 +10,0.16824442798361416,0.0528,103768.5634 +11,0.16662514772764406,0.0256,102564.4566 +12,0.1603101816044422,-0.061,100522.5094 +13,0.1707612719874829,0.0876,104635.1936 +14,0.16497534116207388,-0.013,102320.7134 +15,0.16088009490632685,-0.042,101120.8298 +16,0.17160104707824067,0.081,104729.8156 +17,0.16399309783024946,0.0098,102545.7192 +18,0.15944699746754487,-0.101,100413.2886 +19,0.16230265272700925,-0.0446,101608.8324 +20,0.17001723605010194,0.0558,104208.1676 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/metadata.txt" new file mode 100644 index 000000000..dfe5c5884 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:13:59.270 +hostname=a02r03n02 +julia=1.12.6 +slurm_job=22959583 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/summary.csv" new file mode 100644 index 000000000..afa597239 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/094/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.369446,22096,10000,100000,0.3926022217559814,0.16576909755662958,0.032325696660309856,0.8500789323584519,43455.374309885105,0.23418,0.47133,0.002970000000000028,102680.29581,0.0008145107882683945,0.011534043660308154,6.891328319791566,20,8766.05836391449,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/blocks.csv" new file mode 100644 index 000000000..2a44b7f5d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.30474616136584665,0.9906,144524.7764 +2,0.30310705486986556,0.9868,144101.9428 +3,0.3046747707707342,0.9858,144454.5296 +4,0.30210405834262494,0.985,143966.066 +5,0.30378326502272396,0.988,144348.6768 +6,0.3017773166052764,0.9822,143840.6354 +7,0.303167324298725,0.983,144190.4786 +8,0.3042424538927269,0.9902,144438.4714 +9,0.302215749161446,0.9874,144007.7134 +10,0.3030862126864144,0.988,144099.4808 +11,0.3024866402964224,0.9858,143932.3728 +12,0.30225429831298534,0.9842,143983.2996 +13,0.3051365693997242,0.9896,144584.0448 +14,0.3034684690753813,0.9884,144233.2528 +15,0.30333018703322157,0.9876,144181.9708 +16,0.3038910167682567,0.9886,144329.1602 +17,0.3040119432432577,0.9858,144390.0906 +18,0.30539200445379827,0.988,144644.3384 +19,0.3022706397780101,0.9874,143951.769 +20,0.30282327756215816,0.9864,144066.584 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/metadata.txt" new file mode 100644 index 000000000..03e4b949a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:14:26.371 +hostname=a02r03n02 +julia=1.12.6 +slurm_job=22959595 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/summary.csv" new file mode 100644 index 000000000..67f2d0c94 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/095/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.371446,11096,10000,100000,0.5501907955932617,0.30339847064698,0.09283272320332632,0.9915752637064523,79534.08868928193,0.00028,0.9875,0.98694,144213.48271,0.00023847657289575227,0.0004965353647234555,4.884499146592022,20,8786.277553081512,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/blocks.csv" new file mode 100644 index 000000000..f1bac3da0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.30343188414142935,0.9844,144243.971 +2,0.30274678151294354,0.9858,144155.8536 +3,0.30271134666384897,0.9866,144109.0684 +4,0.30504903593139027,0.9888,144559.782 +5,0.3007413445793325,0.9838,143627.96 +6,0.30494692857848715,0.987,144640.8438 +7,0.30107405445466284,0.9836,143712.0674 +8,0.30215116948137294,0.9878,143979.4144 +9,0.3039390114500187,0.9874,144322.5892 +10,0.3041894024778623,0.9856,144418.9442 +11,0.3017056936373934,0.9882,143848.957 +12,0.3055937536329031,0.9902,144701.6614 +13,0.3044850474608247,0.9882,144440.2216 +14,0.3038328193943482,0.9886,144354.805 +15,0.3027549165576231,0.9864,144103.5854 +16,0.30392500993044813,0.9878,144352.854 +17,0.30478853092479985,0.9894,144572.287 +18,0.30281714398043696,0.9848,144088.0576 +19,0.30167028937974244,0.9862,143836.7402 +20,0.3036674836087506,0.9876,144314.5884 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/metadata.txt" new file mode 100644 index 000000000..5ea1d17dc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/metadata.txt" @@ -0,0 +1,4 @@ +timestamp=2026-07-27T21:15:21.029 +hostname=a01r03n07 +julia=1.12.6 +slurm_job=22958313 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/summary.csv" new file mode 100644 index 000000000..fcf9ad3f9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/cells/096/summary.csv" @@ -0,0 +1,2 @@ +L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +512,2.5,0.371446,22098,10000,100000,0.5501159057617188,0.30331108238893095,0.09277584167124459,0.9916117282551052,79511.18038176392,0.00036,0.98763,0.98691,144219.21258,0.0003072745944870438,0.00041128169370754236,4.980002438820086,20,8388.09800696373,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_1.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_1.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_1.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_1.out" new file mode 100644 index 000000000..f834d6a73 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_1.out" @@ -0,0 +1 @@ +SUCCESS cell=1 L=64 sigma=1.75 beta=0.327136 seed=11002 Rp=-1.0119 Qm=0.6138116954003148 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_10.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_10.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_10.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_10.out" new file mode 100644 index 000000000..96ee6dcb7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_10.out" @@ -0,0 +1 @@ +SUCCESS cell=10 L=128 sigma=1.75 beta=0.329136 seed=22012 Rp=-0.5241 Qm=0.7168359965038541 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_11.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_11.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_11.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_11.out" new file mode 100644 index 000000000..f7fb58e33 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_11.out" @@ -0,0 +1 @@ +SUCCESS cell=11 L=128 sigma=1.75 beta=0.331136 seed=11012 Rp=0.37106 Qm=0.8751155292896755 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_12.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_12.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_12.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_12.out" new file mode 100644 index 000000000..f919132fc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_12.out" @@ -0,0 +1 @@ +SUCCESS cell=12 L=128 sigma=1.75 beta=0.331136 seed=22014 Rp=0.35805999999999993 Qm=0.8719486652138975 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_13.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_13.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_13.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_13.out" new file mode 100644 index 000000000..f1085f264 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_13.out" @@ -0,0 +1 @@ +SUCCESS cell=13 L=256 sigma=1.75 beta=0.327136 seed=11014 Rp=-1.76007 Qm=0.44467820811283876 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_14.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_14.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_14.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_14.out" new file mode 100644 index 000000000..94fc749b2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_14.out" @@ -0,0 +1 @@ +SUCCESS cell=14 L=256 sigma=1.75 beta=0.327136 seed=22016 Rp=-1.75859 Qm=0.44613406726227817 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_15.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_15.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_15.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_15.out" new file mode 100644 index 000000000..856e420fc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_15.out" @@ -0,0 +1 @@ +SUCCESS cell=15 L=256 sigma=1.75 beta=0.329136 seed=11016 Rp=-0.51619 Qm=0.7242281813487421 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_16.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_16.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_16.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_16.out" new file mode 100644 index 000000000..d5451d4c8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_16.out" @@ -0,0 +1 @@ +SUCCESS cell=16 L=256 sigma=1.75 beta=0.329136 seed=22018 Rp=-0.50193 Qm=0.7261194702433986 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_17.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_17.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_17.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_17.out" new file mode 100644 index 000000000..8971b4065 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_17.out" @@ -0,0 +1 @@ +SUCCESS cell=17 L=256 sigma=1.75 beta=0.331136 seed=11018 Rp=0.8426199999999999 Qm=0.9553114040754462 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_18.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_18.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_18.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_18.out" new file mode 100644 index 000000000..3450c383e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_18.out" @@ -0,0 +1 @@ +SUCCESS cell=18 L=256 sigma=1.75 beta=0.331136 seed=22020 Rp=0.83992 Qm=0.9543168207002048 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_19.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_19.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_19.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_19.out" new file mode 100644 index 000000000..4bb1a444b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_19.out" @@ -0,0 +1 @@ +SUCCESS cell=19 L=512 sigma=1.75 beta=0.327136 seed=11020 Rp=-1.96882 Qm=0.3710346982105291 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_2.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_2.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_2.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_2.out" new file mode 100644 index 000000000..2c2498237 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_2.out" @@ -0,0 +1 @@ +SUCCESS cell=2 L=64 sigma=1.75 beta=0.327136 seed=22004 Rp=-1.02629 Qm=0.6107733842059185 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_20.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_20.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_20.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_20.out" new file mode 100644 index 000000000..f76da49fc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_20.out" @@ -0,0 +1 @@ +SUCCESS cell=20 L=512 sigma=1.75 beta=0.327136 seed=22022 Rp=-1.9699600000000002 Qm=0.3706582667735246 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_21.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_21.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_21.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_21.out" new file mode 100644 index 000000000..1cc05a905 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_21.out" @@ -0,0 +1 @@ +SUCCESS cell=21 L=512 sigma=1.75 beta=0.329136 seed=11022 Rp=-0.45098 Qm=0.7424711516581972 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_22.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_22.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_22.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_22.out" new file mode 100644 index 000000000..c16803983 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_22.out" @@ -0,0 +1 @@ +SUCCESS cell=22 L=512 sigma=1.75 beta=0.329136 seed=22024 Rp=-0.45747000000000004 Qm=0.7415006450125909 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_23.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_23.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_23.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_23.out" new file mode 100644 index 000000000..e50798791 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_23.out" @@ -0,0 +1 @@ +SUCCESS cell=23 L=512 sigma=1.75 beta=0.331136 seed=11024 Rp=0.9931000000000001 Qm=0.9883219495576173 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_24.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_24.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_24.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_24.out" new file mode 100644 index 000000000..390a55afc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_24.out" @@ -0,0 +1 @@ +SUCCESS cell=24 L=512 sigma=1.75 beta=0.331136 seed=22026 Rp=0.99316 Qm=0.9884475155973933 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_25.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_25.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_25.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_25.out" new file mode 100644 index 000000000..49a1fc921 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_25.out" @@ -0,0 +1 @@ +SUCCESS cell=25 L=64 sigma=1.875 beta=0.334985 seed=11026 Rp=-0.87296 Qm=0.6547477673147961 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_26.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_26.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_26.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_26.out" new file mode 100644 index 000000000..f272cf8c4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_26.out" @@ -0,0 +1 @@ +SUCCESS cell=26 L=64 sigma=1.875 beta=0.334985 seed=22028 Rp=-0.8559599999999999 Qm=0.655855077443502 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_27.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_27.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_27.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_27.out" new file mode 100644 index 000000000..bb88e2cb2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_27.out" @@ -0,0 +1 @@ +SUCCESS cell=27 L=64 sigma=1.875 beta=0.336985 seed=11028 Rp=-0.4039 Qm=0.7450134268698703 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_28.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_28.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_28.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_28.out" new file mode 100644 index 000000000..d5dd0f4e2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_28.out" @@ -0,0 +1 @@ +SUCCESS cell=28 L=64 sigma=1.875 beta=0.336985 seed=22030 Rp=-0.41397999999999996 Qm=0.7421938295892133 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_29.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_29.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_29.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_29.out" new file mode 100644 index 000000000..86f123827 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_29.out" @@ -0,0 +1 @@ +SUCCESS cell=29 L=64 sigma=1.875 beta=0.338985 seed=11030 Rp=0.048339999999999994 Qm=0.8236001782040581 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_3.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_3.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_3.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_3.out" new file mode 100644 index 000000000..1c8870a60 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_3.out" @@ -0,0 +1 @@ +SUCCESS cell=3 L=64 sigma=1.75 beta=0.329136 seed=11004 Rp=-0.5727 Qm=0.6982135233726678 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_30.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_30.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_30.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_30.out" new file mode 100644 index 000000000..db43d02c4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_30.out" @@ -0,0 +1 @@ +SUCCESS cell=30 L=64 sigma=1.875 beta=0.338985 seed=22032 Rp=0.05974999999999997 Qm=0.8257423879081632 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_31.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_31.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_31.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_31.out" new file mode 100644 index 000000000..ebda03638 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_31.out" @@ -0,0 +1 @@ +SUCCESS cell=31 L=128 sigma=1.875 beta=0.334985 seed=11032 Rp=-1.2343000000000002 Qm=0.5838600975937099 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_32.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_32.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_32.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_32.out" new file mode 100644 index 000000000..7b5cb2a3d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_32.out" @@ -0,0 +1 @@ +SUCCESS cell=32 L=128 sigma=1.875 beta=0.334985 seed=22034 Rp=-1.2324499999999998 Qm=0.5858221150496875 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_33.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_33.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_33.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_33.out" new file mode 100644 index 000000000..b60fc275b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_33.out" @@ -0,0 +1 @@ +SUCCESS cell=33 L=128 sigma=1.875 beta=0.336985 seed=11034 Rp=-0.35424999999999995 Qm=0.7608517242105254 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_34.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_34.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_34.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_34.out" new file mode 100644 index 000000000..7f6be6026 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_34.out" @@ -0,0 +1 @@ +SUCCESS cell=34 L=128 sigma=1.875 beta=0.336985 seed=22036 Rp=-0.37276 Qm=0.7545500960124549 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_35.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_35.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_35.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_35.out" new file mode 100644 index 000000000..bf66e926e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_35.out" @@ -0,0 +1 @@ +SUCCESS cell=35 L=128 sigma=1.875 beta=0.338985 seed=11036 Rp=0.4788 Qm=0.9007307010358574 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_36.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_36.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_36.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_36.out" new file mode 100644 index 000000000..17e4adabf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_36.out" @@ -0,0 +1 @@ +SUCCESS cell=36 L=128 sigma=1.875 beta=0.338985 seed=22038 Rp=0.46101000000000003 Qm=0.8976695374223002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_37.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_37.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_37.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_37.out" new file mode 100644 index 000000000..9b37b7bf5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_37.out" @@ -0,0 +1 @@ +SUCCESS cell=37 L=256 sigma=1.875 beta=0.334985 seed=11038 Rp=-1.71701 Qm=0.47124967068076085 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_38.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_38.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_38.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_38.out" new file mode 100644 index 000000000..800fedcb3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_38.out" @@ -0,0 +1 @@ +SUCCESS cell=38 L=256 sigma=1.875 beta=0.334985 seed=22040 Rp=-1.70863 Qm=0.4736967305463858 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_39.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_39.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_39.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_39.out" new file mode 100644 index 000000000..3c1cc0347 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_39.out" @@ -0,0 +1 @@ +SUCCESS cell=39 L=256 sigma=1.875 beta=0.336985 seed=11040 Rp=-0.2989 Qm=0.776013381354287 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_4.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_4.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_4.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_4.out" new file mode 100644 index 000000000..baff3ba1e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_4.out" @@ -0,0 +1 @@ +SUCCESS cell=4 L=64 sigma=1.75 beta=0.329136 seed=22006 Rp=-0.57264 Qm=0.6999054270141206 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_40.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_40.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_40.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_40.out" new file mode 100644 index 000000000..91e993890 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_40.out" @@ -0,0 +1 @@ +SUCCESS cell=40 L=256 sigma=1.875 beta=0.336985 seed=22042 Rp=-0.30785999999999997 Qm=0.7720583997602126 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_41.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_41.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_41.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_41.out" new file mode 100644 index 000000000..e632c2baa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_41.out" @@ -0,0 +1 @@ +SUCCESS cell=41 L=256 sigma=1.875 beta=0.338985 seed=11042 Rp=0.86745 Qm=0.9636727869242697 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_42.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_42.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_42.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_42.out" new file mode 100644 index 000000000..4842d1c74 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_42.out" @@ -0,0 +1 @@ +SUCCESS cell=42 L=256 sigma=1.875 beta=0.338985 seed=22044 Rp=0.85579 Qm=0.9618791219285391 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_43.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_43.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_43.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_43.out" new file mode 100644 index 000000000..96310ddee --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_43.out" @@ -0,0 +1 @@ +SUCCESS cell=43 L=512 sigma=1.875 beta=0.334985 seed=11044 Rp=-1.96593 Qm=0.37875324669490396 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_44.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_44.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_44.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_44.out" new file mode 100644 index 000000000..773ffc3ad --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_44.out" @@ -0,0 +1 @@ +SUCCESS cell=44 L=512 sigma=1.875 beta=0.334985 seed=22046 Rp=-1.9671 Qm=0.38091758675767223 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_45.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_45.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_45.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_45.out" new file mode 100644 index 000000000..13393c443 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_45.out" @@ -0,0 +1 @@ +SUCCESS cell=45 L=512 sigma=1.875 beta=0.336985 seed=11046 Rp=-0.26768000000000003 Qm=0.7868161140312069 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_46.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_46.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_46.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_46.out" new file mode 100644 index 000000000..31bd67b9c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_46.out" @@ -0,0 +1 @@ +SUCCESS cell=46 L=512 sigma=1.875 beta=0.336985 seed=22048 Rp=-0.27584 Qm=0.7836429001027932 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_47.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_47.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_47.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_47.out" new file mode 100644 index 000000000..d74593690 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_47.out" @@ -0,0 +1 @@ +SUCCESS cell=47 L=512 sigma=1.875 beta=0.338985 seed=11048 Rp=0.9918399999999999 Qm=0.9897300929476597 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_48.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_48.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_48.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_48.out" new file mode 100644 index 000000000..4059eaef6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_48.out" @@ -0,0 +1 @@ +SUCCESS cell=48 L=512 sigma=1.875 beta=0.338985 seed=22050 Rp=0.99165 Qm=0.9896206131899941 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_49.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_49.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_49.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_49.out" new file mode 100644 index 000000000..cd1d0761c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_49.out" @@ -0,0 +1 @@ +SUCCESS cell=49 L=64 sigma=2.0 beta=0.342439 seed=11050 Rp=-0.72895 Qm=0.6916459659306915 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_5.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_5.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_5.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_5.out" new file mode 100644 index 000000000..71e212b54 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_5.out" @@ -0,0 +1 @@ +SUCCESS cell=5 L=64 sigma=1.75 beta=0.331136 seed=11006 Rp=-0.11641999999999997 Qm=0.7848725735742227 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_50.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_50.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_50.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_50.out" new file mode 100644 index 000000000..d7c6f7c3a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_50.out" @@ -0,0 +1 @@ +SUCCESS cell=50 L=64 sigma=2.0 beta=0.342439 seed=22052 Rp=-0.7308 Qm=0.6897411179307078 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_51.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_51.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_51.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_51.out" new file mode 100644 index 000000000..30dd29acc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_51.out" @@ -0,0 +1 @@ +SUCCESS cell=51 L=64 sigma=2.0 beta=0.344439 seed=11052 Rp=-0.27439 Qm=0.7746175766855734 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_52.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_52.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_52.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_52.out" new file mode 100644 index 000000000..af7603811 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_52.out" @@ -0,0 +1 @@ +SUCCESS cell=52 L=64 sigma=2.0 beta=0.344439 seed=22054 Rp=-0.27236 Qm=0.7759956670260378 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_53.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_53.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_53.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_53.out" new file mode 100644 index 000000000..87e257712 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_53.out" @@ -0,0 +1 @@ +SUCCESS cell=53 L=64 sigma=2.0 beta=0.346439 seed=11054 Rp=0.14892999999999995 Qm=0.8485306498337579 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_54.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_54.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_54.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_54.out" new file mode 100644 index 000000000..20f5b3a31 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_54.out" @@ -0,0 +1 @@ +SUCCESS cell=54 L=64 sigma=2.0 beta=0.346439 seed=22056 Rp=0.15256000000000003 Qm=0.848384176984953 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_55.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_55.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_55.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_55.out" new file mode 100644 index 000000000..17a35a17c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_55.out" @@ -0,0 +1 @@ +SUCCESS cell=55 L=128 sigma=2.0 beta=0.342439 seed=11056 Rp=-1.11002 Qm=0.6224166614385834 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_56.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_56.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_56.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_56.out" new file mode 100644 index 000000000..50f0d458a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_56.out" @@ -0,0 +1 @@ +SUCCESS cell=56 L=128 sigma=2.0 beta=0.342439 seed=22058 Rp=-1.11882 Qm=0.6212086107294302 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_57.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_57.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_57.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_57.out" new file mode 100644 index 000000000..6182cd0b3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_57.out" @@ -0,0 +1 @@ +SUCCESS cell=57 L=128 sigma=2.0 beta=0.344439 seed=11058 Rp=-0.18972999999999995 Qm=0.7993687434752083 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_58.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_58.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_58.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_58.out" new file mode 100644 index 000000000..28429b455 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_58.out" @@ -0,0 +1 @@ +SUCCESS cell=58 L=128 sigma=2.0 beta=0.344439 seed=22060 Rp=-0.23257 Qm=0.7886662721951205 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_59.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_59.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_59.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_59.out" new file mode 100644 index 000000000..2253c02dd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_59.out" @@ -0,0 +1 @@ +SUCCESS cell=59 L=128 sigma=2.0 beta=0.346439 seed=11060 Rp=0.5262499999999999 Qm=0.9124602996380476 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_6.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_6.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_6.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_6.out" new file mode 100644 index 000000000..137f9b42f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_6.out" @@ -0,0 +1 @@ +SUCCESS cell=6 L=64 sigma=1.75 beta=0.331136 seed=22008 Rp=-0.11348999999999998 Qm=0.7841111941726496 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_60.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_60.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_60.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_60.out" new file mode 100644 index 000000000..e609cdbab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_60.out" @@ -0,0 +1 @@ +SUCCESS cell=60 L=128 sigma=2.0 beta=0.346439 seed=22062 Rp=0.5274 Qm=0.9148131049210706 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_61.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_61.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_61.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_61.out" new file mode 100644 index 000000000..336c8e39c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_61.out" @@ -0,0 +1 @@ +SUCCESS cell=61 L=256 sigma=2.0 beta=0.342439 seed=11062 Rp=-1.63753 Qm=0.5001943391799044 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_62.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_62.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_62.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_62.out" new file mode 100644 index 000000000..25d4d41a0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_62.out" @@ -0,0 +1 @@ +SUCCESS cell=62 L=256 sigma=2.0 beta=0.342439 seed=22064 Rp=-1.64477 Qm=0.49349050802795086 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_63.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_63.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_63.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_63.out" new file mode 100644 index 000000000..34f9ed80d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_63.out" @@ -0,0 +1 @@ +SUCCESS cell=63 L=256 sigma=2.0 beta=0.344439 seed=11064 Rp=-0.18575999999999998 Qm=0.8016210355260024 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_64.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_64.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_64.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_64.out" new file mode 100644 index 000000000..c733b822b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_64.out" @@ -0,0 +1 @@ +SUCCESS cell=64 L=256 sigma=2.0 beta=0.344439 seed=22066 Rp=-0.19045999999999996 Qm=0.8018327369259253 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_65.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_65.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_65.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_65.out" new file mode 100644 index 000000000..ed96e6d18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_65.out" @@ -0,0 +1 @@ +SUCCESS cell=65 L=256 sigma=2.0 beta=0.346439 seed=11066 Rp=0.86898 Qm=0.9665125093291309 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_66.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_66.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_66.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_66.out" new file mode 100644 index 000000000..8b6771011 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_66.out" @@ -0,0 +1 @@ +SUCCESS cell=66 L=256 sigma=2.0 beta=0.346439 seed=22068 Rp=0.86736 Qm=0.9673893366930165 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_67.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_67.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_67.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_67.out" new file mode 100644 index 000000000..5c86a895a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_67.out" @@ -0,0 +1 @@ +SUCCESS cell=67 L=512 sigma=2.0 beta=0.342439 seed=11068 Rp=-1.9590699999999999 Qm=0.38412695682378317 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_68.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_68.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_68.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_68.out" new file mode 100644 index 000000000..844d97caa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_68.out" @@ -0,0 +1 @@ +SUCCESS cell=68 L=512 sigma=2.0 beta=0.342439 seed=22070 Rp=-1.96206 Qm=0.3852019307831078 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_69.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_69.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_69.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_69.out" new file mode 100644 index 000000000..3db3f75b6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_69.out" @@ -0,0 +1 @@ +SUCCESS cell=69 L=512 sigma=2.0 beta=0.344439 seed=11070 Rp=-0.12391999999999997 Qm=0.8167664145269646 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_7.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_7.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_7.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_7.out" new file mode 100644 index 000000000..be624c591 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_7.out" @@ -0,0 +1 @@ +SUCCESS cell=7 L=128 sigma=1.75 beta=0.327136 seed=11008 Rp=-1.3426 Qm=0.5473852115506785 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_70.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_70.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_70.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_70.out" new file mode 100644 index 000000000..f9a68d7fd --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_70.out" @@ -0,0 +1 @@ +SUCCESS cell=70 L=512 sigma=2.0 beta=0.344439 seed=22072 Rp=-0.13767000000000001 Qm=0.8150211404006267 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_71.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_71.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_71.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_71.out" new file mode 100644 index 000000000..a3e9042e1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_71.out" @@ -0,0 +1 @@ +SUCCESS cell=71 L=512 sigma=2.0 beta=0.346439 seed=11072 Rp=0.9912500000000001 Qm=0.9907484275025018 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_72.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_72.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_72.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_72.out" new file mode 100644 index 000000000..2bc8dd08a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_72.out" @@ -0,0 +1 @@ +SUCCESS cell=72 L=512 sigma=2.0 beta=0.346439 seed=22074 Rp=0.9917100000000001 Qm=0.9909257558718432 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_73.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_73.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_73.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_73.out" new file mode 100644 index 000000000..e28d3a9ae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_73.out" @@ -0,0 +1 @@ +SUCCESS cell=73 L=64 sigma=2.5 beta=0.367446 seed=11074 Rp=-0.42282999999999993 Qm=0.7711547706287095 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_74.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_74.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_74.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_74.out" new file mode 100644 index 000000000..105c94b90 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_74.out" @@ -0,0 +1 @@ +SUCCESS cell=74 L=64 sigma=2.5 beta=0.367446 seed=22076 Rp=-0.44482000000000005 Qm=0.7670386847079586 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_75.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_75.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_75.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_75.out" new file mode 100644 index 000000000..b08a323e7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_75.out" @@ -0,0 +1 @@ +SUCCESS cell=75 L=64 sigma=2.5 beta=0.369446 seed=11076 Rp=-0.026519999999999988 Qm=0.8380105306227429 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_76.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_76.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_76.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_76.out" new file mode 100644 index 000000000..573ba4077 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_76.out" @@ -0,0 +1 @@ +SUCCESS cell=76 L=64 sigma=2.5 beta=0.369446 seed=22078 Rp=-0.04083999999999999 Qm=0.8348164448774339 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_77.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_77.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_77.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_77.out" new file mode 100644 index 000000000..d00acc559 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_77.out" @@ -0,0 +1 @@ +SUCCESS cell=77 L=64 sigma=2.5 beta=0.371446 seed=11078 Rp=0.32293 Qm=0.8913294683234461 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_78.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_78.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_78.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_78.out" new file mode 100644 index 000000000..5bd3155a1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_78.out" @@ -0,0 +1 @@ +SUCCESS cell=78 L=64 sigma=2.5 beta=0.371446 seed=22080 Rp=0.31767999999999996 Qm=0.8917689507365364 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_79.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_79.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_79.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_79.out" new file mode 100644 index 000000000..2e870a37b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_79.out" @@ -0,0 +1 @@ +SUCCESS cell=79 L=128 sigma=2.5 beta=0.367446 seed=11080 Rp=-0.8643 Qm=0.6928911428223692 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_8.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_8.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_8.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_8.out" new file mode 100644 index 000000000..f816a269f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_8.out" @@ -0,0 +1 @@ +SUCCESS cell=8 L=128 sigma=1.75 beta=0.327136 seed=22010 Rp=-1.34795 Qm=0.5480045369821379 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_80.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_80.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_80.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_80.out" new file mode 100644 index 000000000..5e3c4de3d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_80.out" @@ -0,0 +1 @@ +SUCCESS cell=80 L=128 sigma=2.5 beta=0.367446 seed=22082 Rp=-0.86218 Qm=0.6918916045375167 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_81.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_81.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_81.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_81.out" new file mode 100644 index 000000000..f7cd8d288 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_81.out" @@ -0,0 +1 @@ +SUCCESS cell=81 L=128 sigma=2.5 beta=0.369446 seed=11082 Rp=-0.005310000000000037 Qm=0.8454011742458996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_82.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_82.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_82.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_82.out" new file mode 100644 index 000000000..0be309981 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_82.out" @@ -0,0 +1 @@ +SUCCESS cell=82 L=128 sigma=2.5 beta=0.369446 seed=22084 Rp=-0.0048100000000000365 Qm=0.8434543520182576 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_83.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_83.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_83.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_83.out" new file mode 100644 index 000000000..a243354f5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_83.out" @@ -0,0 +1 @@ +SUCCESS cell=83 L=128 sigma=2.5 beta=0.371446 seed=11084 Rp=0.59768 Qm=0.9335527768063936 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_84.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_84.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_84.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_84.out" new file mode 100644 index 000000000..654047c8f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_84.out" @@ -0,0 +1 @@ +SUCCESS cell=84 L=128 sigma=2.5 beta=0.371446 seed=22086 Rp=0.5868899999999999 Qm=0.9321513386016484 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_85.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_85.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_85.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_85.out" new file mode 100644 index 000000000..734ad7fed --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_85.out" @@ -0,0 +1 @@ +SUCCESS cell=85 L=256 sigma=2.5 beta=0.367446 seed=11086 Rp=-1.4969000000000001 Qm=0.556031192332541 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_86.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_86.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_86.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_86.out" new file mode 100644 index 000000000..b6d8519ed --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_86.out" @@ -0,0 +1 @@ +SUCCESS cell=86 L=256 sigma=2.5 beta=0.367446 seed=22088 Rp=-1.49491 Qm=0.5517209430350573 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_87.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_87.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_87.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_87.out" new file mode 100644 index 000000000..1fd27287f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_87.out" @@ -0,0 +1 @@ +SUCCESS cell=87 L=256 sigma=2.5 beta=0.369446 seed=11088 Rp=-0.0029899999999999927 Qm=0.8457621705730171 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_88.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_88.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_88.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_88.out" new file mode 100644 index 000000000..121b49f59 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_88.out" @@ -0,0 +1 @@ +SUCCESS cell=88 L=256 sigma=2.5 beta=0.369446 seed=22090 Rp=0.008330000000000004 Qm=0.8485627015347333 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_89.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_89.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_89.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_89.out" new file mode 100644 index 000000000..dda1a8e88 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_89.out" @@ -0,0 +1 @@ +SUCCESS cell=89 L=256 sigma=2.5 beta=0.371446 seed=11090 Rp=0.86713 Qm=0.9721168634342975 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_9.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_9.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_9.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_9.out" new file mode 100644 index 000000000..10ec2c97c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_9.out" @@ -0,0 +1 @@ +SUCCESS cell=9 L=128 sigma=1.75 beta=0.329136 seed=11010 Rp=-0.5383800000000001 Qm=0.713583354506533 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_90.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_90.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_90.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_90.out" new file mode 100644 index 000000000..eed70f7d6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_90.out" @@ -0,0 +1 @@ +SUCCESS cell=90 L=256 sigma=2.5 beta=0.371446 seed=22092 Rp=0.8646900000000001 Qm=0.9726877013277069 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_91.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_91.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_91.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_91.out" new file mode 100644 index 000000000..026a7d862 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_91.out" @@ -0,0 +1 @@ +SUCCESS cell=91 L=512 sigma=2.5 beta=0.367446 seed=11092 Rp=-1.9411399999999999 Qm=0.40740094154928597 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_92.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_92.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_92.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_92.out" new file mode 100644 index 000000000..6774cdbf2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_92.out" @@ -0,0 +1 @@ +SUCCESS cell=92 L=512 sigma=2.5 beta=0.367446 seed=22094 Rp=-1.9425 Qm=0.4032955563306178 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_93.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_93.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_93.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_93.out" new file mode 100644 index 000000000..36e00f9b7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_93.out" @@ -0,0 +1 @@ +SUCCESS cell=93 L=512 sigma=2.5 beta=0.369446 seed=11094 Rp=0.015410000000000035 Qm=0.8540745409563519 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_94.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_94.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_94.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_94.out" new file mode 100644 index 000000000..62cb05460 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_94.out" @@ -0,0 +1 @@ +SUCCESS cell=94 L=512 sigma=2.5 beta=0.369446 seed=22096 Rp=0.002970000000000028 Qm=0.8500789323584519 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_95.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_95.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_95.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_95.out" new file mode 100644 index 000000000..b6ee60113 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_95.out" @@ -0,0 +1 @@ +SUCCESS cell=95 L=512 sigma=2.5 beta=0.371446 seed=11096 Rp=0.98694 Qm=0.9915752637064523 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_96.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_96.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_96.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_96.out" new file mode 100644 index 000000000..4ce665978 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_20260727/logs/22958313_96.out" @@ -0,0 +1 @@ +SUCCESS cell=96 L=512 sigma=2.5 beta=0.371446 seed=22098 Rp=0.98691 Qm=0.9916117282551052 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/combined_critical.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/combined_critical.csv" new file mode 100644 index 000000000..b5a1c5d32 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/combined_critical.csv" @@ -0,0 +1,65 @@ +sigma,L,beta,observable,value,se,nseeds +1.75,64,0.329136,Qm,0.699059475193,0.000845951820726,2 +1.75,128,0.329136,Qm,0.715209675505,0.00162632099866,2 +1.75,256,0.329136,Qm,0.725173825796,0.000945644447328,2 +1.75,512,0.329136,Qm,0.741985898335,0.000485253322803,2 +1.75,768,0.329136,Qm,0.741349217929,0.000449521710204,2 +1.75,1024,0.329136,Qm,0.750220837868,0.00202327390221,2 +1.75,1536,0.329136,Qm,0.757621779363,0.00389273318251,2 +1.75,2048,0.329136,Qm,0.764863473427,0.0021370491915,2 +1.75,64,0.329136,Rp,-0.57267,3e-05,2 +1.75,128,0.329136,Rp,-0.53124,0.00714,2 +1.75,256,0.329136,Rp,-0.50906,0.00713,2 +1.75,512,0.329136,Rp,-0.454225,0.003245,2 +1.75,768,0.329136,Rp,-0.4565,0.0067,2 +1.75,1024,0.329136,Rp,-0.42944,0.000786666666667,2 +1.75,1536,0.329136,Rp,-0.383071428571,0.0160714285714,2 +1.75,2048,0.329136,Rp,-0.3768,0.00155,2 +1.875,64,0.336985,Qm,0.74360362823,0.00140979864033,2 +1.875,128,0.336985,Qm,0.757700910111,0.00315081409904,2 +1.875,256,0.336985,Qm,0.774035890557,0.00197749079704,2 +1.875,512,0.336985,Qm,0.785229507067,0.00158660696421,2 +1.875,768,0.336985,Qm,0.790507767592,0.00300214938304,2 +1.875,1024,0.336985,Qm,0.797699233996,0.00126633498763,2 +1.875,1536,0.336985,Qm,0.799991386298,0.00381211356339,2 +1.875,2048,0.336985,Qm,0.80589360221,0.00173734427422,2 +1.875,64,0.336985,Rp,-0.40894,0.00504,2 +1.875,128,0.336985,Rp,-0.363505,0.009255,2 +1.875,256,0.336985,Rp,-0.30338,0.00448,2 +1.875,512,0.336985,Rp,-0.27176,0.00408,2 +1.875,768,0.336985,Rp,-0.25439,0.01538,2 +1.875,1024,0.336985,Rp,-0.235406666667,0.00404666666667,2 +1.875,1536,0.336985,Rp,-0.225228571429,0.0202857142857,2 +1.875,2048,0.336985,Rp,-0.188525,0.010275,2 +2,64,0.344439,Qm,0.775306621856,0.000689045170232,2 +2,128,0.344439,Qm,0.794017507835,0.00535123564004,2 +2,256,0.344439,Qm,0.801726886226,0.000105850699961,2 +2,512,0.344439,Qm,0.815893777464,0.000872637063169,2 +2,768,0.344439,Qm,0.820711678413,0.00216402843556,2 +2,1024,0.344439,Qm,0.820230147164,0.00253132348015,2 +2,1536,0.344439,Qm,0.827837779983,0.00416200374254,2 +2,2048,0.344439,Qm,0.834736805429,0.00110662603859,2 +2,64,0.344439,Rp,-0.273375,0.001015,2 +2,128,0.344439,Rp,-0.21115,0.02142,2 +2,256,0.344439,Rp,-0.18811,0.00235,2 +2,512,0.344439,Rp,-0.130795,0.006875,2 +2,768,0.344439,Rp,-0.12031,0.01018,2 +2,1024,0.344439,Rp,-0.12644,0.01492,2 +2,1536,0.344439,Rp,-0.0907428571429,0.0146857142857,2 +2,2048,0.344439,Rp,-0.076125,0.001875,2 +2.5,64,0.369446,Qm,0.83641348775,0.00159704287265,2 +2.5,128,0.369446,Qm,0.844427763132,0.000973411113821,2 +2.5,256,0.369446,Qm,0.847162436054,0.00140026548086,2 +2.5,512,0.369446,Qm,0.852076736657,0.00199780429895,2 +2.5,768,0.369446,Qm,0.85102033484,0.000494097730257,2 +2.5,1024,0.369446,Qm,0.856126911698,NaN,1 +2.5,1536,0.369446,Qm,0.852576968862,0.00256904003341,2 +2.5,2048,0.369446,Qm,0.853513341288,NaN,1 +2.5,64,0.369446,Rp,-0.03368,0.00716,2 +2.5,128,0.369446,Rp,-0.00506,0.00025,2 +2.5,256,0.369446,Rp,0.00267,0.00566,2 +2.5,512,0.369446,Rp,0.00919,0.00622,2 +2.5,768,0.369446,Rp,0.003185,0.005345,2 +2.5,1024,0.369446,Rp,0.0413733333333,NaN,1 +2.5,1536,0.369446,Rp,0.00941428571429,0.0173,2 +2.5,2048,0.369446,Rp,0.01065,NaN,1 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/cutoff_report.md" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/cutoff_report.md" new file mode 100644 index 000000000..d15fa58b3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/cutoff_report.md" @@ -0,0 +1,87 @@ +# Issue #86 Track A cutoff report + +This report freezes the successful results available at the time cutoff. It +does not wait for the remaining Slurm cells and never treats missing cells as +zeros or imputes them. + +## Frozen data + +- Original production: 96/96 successful cells. +- Large-size snapshot: 36 successful cells with matching summary, raw-block, + and metadata files: 30 central-beta cells and 6 partial crossing cells. +- Central-beta coverage reaches L=2048 for every sigma. Sigma=2.5 is missing + one of two seeds at L=1024 and L=2048; the other central points have two. +- Clock production: 16/16 cells with matching summary, raw-block, and metadata + files and empty stderr. +- The six large-size crossing cells do not form the complete registered grid, + so no crossing extrapolation is claimed from them. + +## Largest-size central values + +| sigma | Rp(L=2048) | Qm(L=2048) | seeds | +|---:|---:|---:|---:| +| 1.75 | -0.376800(16) | 0.76486(21) | 2 | +| 1.875 | -0.1885(103) | 0.80589(17) | 2 | +| 2.0 | -0.076125(19) | 0.83474(11) | 2 | +| 2.5 | 0.01065 | 0.85351 | 1 | + +At sigma=1.875, the L=2048 values are within about 1.35 combined standard +errors for Rp and 1.11 for Qm of the published thermodynamic estimates +Rp=-0.207(9) and Qm=0.815(8). This is a successful finite-size reproduction. + +## Locked competing-model analysis + +The analysis used 1000 parametric-bootstrap replicas. + +For the complete L=64--2048 window: + +| sigma | observable | AICc power | AICc marginal | absolute difference | +|---:|---|---:|---:|---:| +| 1.875 | Rp | 17.54 | 17.36 | 0.18 | +| 1.875 | Qm | 13.99 | 14.06 | 0.07 | +| 2.0 | Rp | 19.06 | 19.12 | 0.06 | +| 2.0 | Qm | 20.95 | 21.04 | 0.10 | + +These scores are statistically indistinguishable. Removing smaller sizes +destabilizes the inferred limits rather than selecting one correction form. +The registered forecast does not reach 3-sigma separation by L=65536 for any +sigma or primary observable. + +Several sigma=1.75 fits and the sigma=2.5 Rp fits have poor absolute +chi-square or hit parameter bounds. Their formal thermodynamic limits are fit +pathology and are not interpreted physically. By contrast, the sigma=2.5 Qm +power fit gives 0.85623 with a 16--84% bootstrap interval +[0.85494, 0.85851], which contains the known short-range value near 0.857 and +serves as a useful end-to-end control. + +## Independent Clock comparison + +Clock agrees with FK through L=256 at both tested sigmas. All six such points +pass the preregistered 3-sigma gate. + +At L=512, Clock Qm differs from FK by -3.21 sigma at sigma=1.875 and -4.38 +sigma at sigma=2.0. The corresponding maximum integrated autocorrelation +times are about 7,860 and 8,372 sweeps. The one-million-sweep local-update run +is therefore not sufficiently mixed at L=512. This is an algorithmic +convergence limit of this Clock implementation and sampling budget, not +evidence against the FK physics result. The raw failed-gate results are +retained. + +## Cutoff conclusion + +1. The published finite-size trends and the sigma=2.5 short-range control are + reproduced. +2. Large sizes through L=2048 move smoothly toward the published critical + estimates. +3. Power and marginal/log corrections remain indistinguishable and + size-window unstable. The crossover boundary cannot be adjudicated from + this data without violating the locked honesty rule. +4. A useful new negative result is obtained: at the achieved uncertainty, + the two correction scenarios are not forecast to separate by 3 sigma even + at L=65536 under the registered model; independent local Clock dynamics + also becomes impractically slow by L=512. + +The scientifically defensible final label is: + +**finite-size reproduction successful; thermodynamic discrimination +inconclusive at the completed accessible scales.** diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/distinguishable_size.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/distinguishable_size.csv" new file mode 100644 index 000000000..9b605ffa3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/distinguishable_size.csv" @@ -0,0 +1,33 @@ +sigma,observable,Lmin,Lmax,first_3sigma_L,max_separation_z,assumed_future_se +1.75,Rp,64,2048,>65536,1.863803441,0.00248625 +1.75,Rp,128,2048,>65536,1.00177808928,0.00248625 +1.75,Rp,256,2048,>65536,0.570041528991,0.00248625 +1.75,Rp,512,2048,>65536,0.334217027211,0.00248625 +1.75,Qm,64,2048,>65536,0.165211506446,0.0021370491915 +1.75,Qm,128,2048,>65536,0.47069136819,0.0021370491915 +1.75,Qm,256,2048,>65536,0.311100539279,0.0021370491915 +1.75,Qm,512,2048,>65536,0.207866408904,0.0021370491915 +1.875,Rp,64,2048,>65536,0.203990302848,0.010275 +1.875,Rp,128,2048,>65536,0.0447031691956,0.010275 +1.875,Rp,256,2048,>65536,0.301003696349,0.010275 +1.875,Rp,512,2048,>65536,0.139268388801,0.010275 +1.875,Qm,64,2048,>65536,0.256729772012,0.00173734427422 +1.875,Qm,128,2048,>65536,0.190806982692,0.00173734427422 +1.875,Qm,256,2048,>65536,0.0858461321009,0.00173734427422 +1.875,Qm,512,2048,>65536,0.170213732392,0.00173734427422 +2,Rp,64,2048,>65536,0.163939115459,0.0146857142857 +2,Rp,128,2048,>65536,0.224310710938,0.0146857142857 +2,Rp,256,2048,>65536,0.338927619285,0.0146857142857 +2,Rp,512,2048,>65536,0.0712193415141,0.0146857142857 +2,Qm,64,2048,>65536,0.270682159223,0.00253132348015 +2,Qm,128,2048,>65536,0.226899638252,0.00253132348015 +2,Qm,256,2048,>65536,0.275161728415,0.00253132348015 +2,Qm,512,2048,>65536,0.121766520193,0.00253132348015 +2.5,Rp,64,2048,>65536,1.08036546878,0.00297 +2.5,Rp,128,2048,>65536,0.434942759587,0.00297 +2.5,Rp,256,2048,>65536,0.0902494034421,0.00297 +2.5,Rp,512,2048,>65536,0.112146926634,0.00297 +2.5,Qm,64,2048,>65536,0.971134118608,0.000749327088378 +2.5,Qm,128,2048,>65536,0.448901433278,0.000749327088378 +2.5,Qm,256,2048,>65536,0.389842626248,0.000749327088378 +2.5,Qm,512,2048,>65536,0.369459826793,0.000749327088378 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/model_fits.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/model_fits.csv" new file mode 100644 index 000000000..5e5926417 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_cutoff_analysis_20260730/model_fits.csv" @@ -0,0 +1,65 @@ +sigma,observable,Lmin,Lmax,n,model,limit,p1,p2,chi2,AICc,BIC,LOO_chi2,loo_failures,limit_boot_p16,limit_boot_p84,bootstrap_failures +1.75,Rp,64,2048,8,power,2.26903547287,-3.09015691856,0.02,35.3349138427,47.3349138427,41.5732384677,141.393661418,0,2.22326429616,2.3176992534,0 +1.75,Rp,64,2048,8,marginal,0.336826688308,-12.2091620142,0.0001,59.895082088,71.895082088,66.133406713,274.42339447,0,0.323118795047,0.35062191653,0 +1.75,Rp,128,2048,7,power,2.43222197561,-3.27808145515,0.02,31.9341800293,45.9341800293,37.7719104764,140.798213815,0,2.33569228829,2.52680135748,0 +1.75,Rp,128,2048,7,marginal,0.450881080539,-14.0601781894,0.0001,42.9097138104,56.9097138104,48.7474442576,154.797186618,0,0.419363117228,0.480865356494,0 +1.75,Rp,256,2048,6,power,2.57908689834,-3.44743267602,0.02,27.8240421137,45.8240421137,33.1993205214,278.105717265,0,2.45844795897,2.70320014216,0 +1.75,Rp,256,2048,6,marginal,0.529632172053,-15.3441191656,0.0001,32.3845586509,50.3845586509,37.7598370586,268.564978539,0,0.493004741543,0.570215144858,0 +1.75,Rp,512,2048,5,power,2.54774098595,-3.41122765793,0.02,27.6359190016,57.6359190016,32.4642327389,386.555085497,0,2.42154894105,2.70561653537,0 +1.75,Rp,512,2048,5,marginal,0.534552840434,-15.4247824018,0.0001,32.3434560475,62.3434560475,37.1717697848,415.908649712,0,0.491431698384,0.581193920545,0 +1.75,Qm,64,2048,8,power,0.842065403169,-0.27183851037,0.154792173079,71.6434090285,83.6434090285,77.8817336535,257.001052244,0,0.813684129535,0.891897834852,0 +1.75,Qm,64,2048,8,marginal,0.947260398163,-2.73489292091,0.00104160156863,71.3328194346,83.3328194346,77.5711440596,210.2589981,0,0.895290427023,0.988793343496,0 +1.75,Qm,128,2048,7,power,1.00809215958,-0.390608028238,0.059348830812,70.5101689778,84.5101689778,76.347899425,242.073164638,0,0.825744915599,1.54519338628,0 +1.75,Qm,128,2048,7,marginal,0.98238296631,-3.76698186754,0.0001,70.8491997467,84.8491997467,76.6869301939,225.700169107,0,0.905786313273,0.991266870631,0 +1.75,Qm,256,2048,6,power,1.01302082944,-0.395065665143,0.0582647235469,70.5100829971,88.5100829971,75.8853614048,383.187630587,0,0.792209561078,1.552918507,0 +1.75,Qm,256,2048,6,marginal,0.986969448545,-3.83893904551,0.0001,70.521017484,88.521017484,75.8962958917,350.358896404,0,0.8140347311,0.9936287191,0 +1.75,Qm,512,2048,5,power,1.34531388202,-0.686001355565,0.02,56.8941000939,86.8941000939,61.7224138312,778.443371421,0,1.2825504065,1.41135616689,0 +1.75,Qm,512,2048,5,marginal,0.933236614061,-2.98859000219,0.0001,60.4805089861,90.4805089861,65.3088227234,859.004161508,0,0.909907674707,0.954114190226,0 +1.875,Rp,64,2048,8,power,0.019635403769,-0.94202980468,0.189592105497,5.53995945745,17.5399594574,11.7782840825,18.7381537348,0,-0.0761270635906,0.217896624068,0 +1.875,Rp,64,2048,8,marginal,0.324723994678,-6.48313517426,0.00928018161448,5.36278411891,17.3627841189,11.6011087439,13.9551411189,0,0.147478775125,0.594112419207,0 +1.875,Rp,128,2048,7,power,0.124507065845,-0.935679030483,0.138583055426,5.42343730415,19.4234373042,11.2611677513,23.2654188456,0,-0.0994127891673,2.40696441865,0 +1.875,Rp,128,2048,7,marginal,0.430779983723,-9.00897539548,0.00132264889946,5.33184264755,19.3318426475,11.1695730947,20.5290454646,0,0.0334343175547,0.590185519518,0 +1.875,Rp,256,2048,6,power,2.28851038911,-2.89829184546,0.02,2.12456686303,20.124566863,7.49984527071,6.99647691698,0,1.98785601511,2.45831133118,0 +1.875,Rp,256,2048,6,marginal,0.529472139449,-12.3319900565,0.0001,3.36977343823,21.3697734382,8.74505184591,13.0800083685,0,0.464445002897,0.581588754733,0 +1.875,Rp,512,2048,5,power,2.53253304326,-3.1780451517,0.02,1.21072134168,31.2107213417,6.03903507899,12.484354134,0,0.308063384724,2.79913356585,0 +1.875,Rp,512,2048,5,marginal,0.641081499705,-14.1203146579,0.0001,1.56362450341,31.5636245034,6.39193824072,16.4066463757,0,0.457154487221,0.736611228225,0 +1.875,Qm,64,2048,8,power,0.876388829285,-0.28625389987,0.184421068273,1.99257680598,13.992576806,8.23090143102,9.13512872373,0,0.850187300183,0.921954159964,0 +1.875,Qm,64,2048,8,marginal,0.975982149398,-2.17465119501,0.00555432588986,2.05855313052,14.0585531305,8.29687775556,12.6509537098,0,0.92324614533,1.0482814804,0 +1.875,Qm,128,2048,7,power,0.856921182917,-0.314494257587,0.238726822895,1.75675678811,15.7567567881,7.59448723528,4.30128472014,0,0.832031491806,0.938171463965,0 +1.875,Qm,128,2048,7,marginal,0.926987487796,-1.18182765451,0.117133239614,1.75734342451,15.7573434245,7.59507387167,4.27990230321,0,0.878771742162,1.03633037664,0 +1.875,Qm,256,2048,6,power,0.873313619592,-0.285163530471,0.189592105497,1.66513741759,19.6651374176,7.04041582528,14.6391054483,0,0.829651108432,1.52744114687,0 +1.875,Qm,256,2048,6,marginal,0.959306177889,-1.82003933192,0.0141318328203,1.68586734467,19.6858673447,7.06114575235,17.2348982133,0,0.875181912699,1.04182526349,0 +1.875,Qm,512,2048,5,power,0.826701994182,-0.909216153616,0.494489505639,1.14628407123,31.1462840712,5.97459780854,43.1944066232,0,0.811342519367,1.25630036663,0 +1.875,Qm,512,2048,5,marginal,0.856850709149,-0.246114829446,16.566378443,1.15416734685,31.1541673469,5.98248108415,106.452758705,0,0.825600085502,1.02445311017,0 +2,Rp,64,2048,8,power,0.25675196634,-0.929489978571,0.134803266513,7.05906546636,19.0590654664,13.2973900914,56.7086901192,0,0.136449800684,0.524036164326,0 +2,Rp,64,2048,8,marginal,0.688397633527,-12.8639959752,0.0001,7.11873146556,19.1187314656,13.3570560906,60.6128475824,0,0.449419524629,0.700305553867,0 +2,Rp,128,2048,7,power,0.069675399854,-1.11552274544,0.266649076069,6.47052965513,20.4705296551,12.3082601023,36.0733432149,0,-0.00963762005959,0.391644865424,0 +2,Rp,128,2048,7,marginal,0.297175975857,-3.45506907955,0.196322045307,6.56743601683,20.5674360168,12.405166464,36.038759858,0,0.142340830896,0.675721523849,0 +2,Rp,256,2048,6,power,-0.01877134864,-2.82774367136,0.508354644068,3.9985667481,21.9985667481,9.37384515578,77.0776312849,0,-0.0526911411423,0.076935314594,0 +2,Rp,256,2048,6,marginal,0.0765824850239,-0.768271747043,13.9797650235,3.80072577456,21.8007257746,9.17600418225,63.3180823966,0,0.00868739729803,0.265385412047,0 +2,Rp,512,2048,5,power,1.94288129864,-2.35293341256,0.02,2.37691788718,32.3769178872,7.20523162449,20.4865088022,0,1.44860635017,2.18095449137,0 +2,Rp,512,2048,5,marginal,0.556222976662,-10.6672331554,0.0001,2.64222145821,32.6422214582,7.47053519551,23.8865420017,0,0.431066192423,0.639500906848,0 +2,Qm,64,2048,8,power,0.922216745779,-0.273384514293,0.149188738684,8.94867332656,20.9486733266,15.1869979516,56.7329396366,0,0.899204062224,0.96139159529,0 +2,Qm,64,2048,8,marginal,1.03844404687,-3.13133328022,0.000436212558248,9.04428744692,21.0442874469,15.282612072,69.8642744055,0,0.986125575356,1.06469676806,0 +2,Qm,128,2048,7,power,0.885298653334,-0.304254890721,0.234366071731,8.35540006403,22.355400064,14.1931305112,61.3719594296,0,0.86400591366,0.951111258899,0 +2,Qm,128,2048,7,marginal,0.955245432484,-1.20069912554,0.0993837775626,8.39571512653,22.3957151265,14.2334455737,40.4825005277,0,0.911720835589,1.05626980923,0 +2,Qm,256,2048,6,power,0.867705568381,-0.395815753193,0.323599689975,6.46443210474,24.4644321047,11.8397105124,115.780058754,0,0.852863603007,0.90261140885,0 +2,Qm,256,2048,6,marginal,0.913536376403,-0.572162649659,1.5230860062,6.28402724378,24.2840272438,11.6593056515,90.4589726229,0,0.884453512783,0.994002258604,0 +2,Qm,512,2048,5,power,1.49446222256,-0.769119792741,0.02,4.24293503204,34.242935032,9.07124876934,52.8748548465,0,1.43543089877,1.54166476486,0 +2,Qm,512,2048,5,marginal,1.04044766713,-3.474737067,0.0001,4.86143897376,34.8614389738,9.68975271106,62.8692335929,0,1.0223793443,1.05733282804,0 +2.5,Rp,64,2048,8,power,0.0240210369671,-4.36895474823,1.0337515621,77.3804942828,89.3804942828,83.6188189078,284.011334803,0,0.021687643898,0.0272322444376,0 +2.5,Rp,64,2048,8,marginal,0.0393312875088,-0.0718763143519,24.489076939,80.0582019304,92.0582019304,86.2965265554,1693.11880964,0,0.0342356132775,0.0468805484096,0 +2.5,Rp,128,2048,7,power,0.0229678645349,-12.6466830652,1.25453907412,77.0297489165,91.0297489165,82.8674793636,1473.54309072,0,0.0207747400208,0.0255099700897,0 +2.5,Rp,128,2048,7,marginal,0.0301336093765,-0.0276106530741,58.9307658887,78.8634965275,92.8634965275,84.7012269747,359.272866509,0,0.0254277335724,0.0367300520884,0 +2.5,Rp,256,2048,6,power,0.0223087294934,-55423.5049129,2.6714667282,73.099275221,91.099275221,78.4745536287,6842.26171246,0,0.0205289235428,0.0244755286386,0 +2.5,Rp,256,2048,6,marginal,0.0222579263098,-0.000985879127441,243.45037266,74.2165095656,92.2165095656,79.5917879733,335.280151555,0,0.0203695092587,0.0257691650232,0 +2.5,Rp,512,2048,5,power,0.0233283994959,-524425503787,5,69.2519164071,99.2519164071,74.0802301444,570.99742801,0,-0.556254358873,0.0250878147145,0 +2.5,Rp,512,2048,5,marginal,0.0228042203126,-1.36087872227e-05,511.488,69.9181871206,99.9181871206,74.7465008579,521.264399181,0,-0.155335372018,0.02441506317,0 +2.5,Qm,64,2048,8,power,0.85622651841,-0.345805437329,0.689086392651,22.1459279578,34.1459279578,28.3842525829,56.2365489522,0,0.854943943255,0.858506148888,0 +2.5,Qm,64,2048,8,marginal,0.863541148374,-0.0461159889809,11.7252829961,22.6717871404,34.6717871404,28.9101117654,53.7143564398,0,0.860726723857,0.867958070842,0 +2.5,Qm,128,2048,7,power,0.856631910999,-0.271135688104,0.634226705948,22.1008438527,36.1008438527,27.9385742998,154.450792798,0,0.854927183213,0.860306401515,0 +2.5,Qm,128,2048,7,marginal,0.863031533581,-0.0424682547163,13.4295107906,22.6619265787,36.6619265787,28.4996570259,5157.74048067,0,0.859086039277,0.870800306525,0 +2.5,Qm,256,2048,6,power,0.854797678313,-9.97388460099,1.28971546862,20.0836225281,38.0836225281,25.4589009358,191.464208044,0,0.853952612852,0.856433548675,0 +2.5,Qm,256,2048,6,marginal,0.857055972321,-0.00788660804525,116.27471823,20.5565790728,38.5565790728,25.9318574805,589.232732898,0,0.854899683837,0.860970136049,0 +2.5,Qm,512,2048,5,power,0.854463231938,-9652.2512084,2.34803424815,19.2435503606,49.2435503606,24.0718640979,260.615032077,0,0.853819829904,0.855383539205,0 +2.5,Qm,512,2048,5,marginal,0.85578565605,-0.00284862562078,290.024139707,20.0131542597,50.0131542597,24.841467997,118.27150043,0,0.854336497781,0.857684770041,0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/blocks.csv" new file mode 100644 index 000000000..f7a0f97c1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.051392136346213056,-0.4364,124595.1872 +2,0.05386650701604646,-0.3622,127786.1128 +3,0.04863338511179167,-0.5252,120381.8706 +4,0.05486598860023796,-0.3454,128697.7118 +5,0.04809783884334022,-0.5602,118880.6266 +6,0.049634004195246065,-0.5054,121751.5648 +7,0.050624777295622106,-0.4574,123444.0074 +8,0.04911951747554365,-0.529,120932.557 +9,0.052613362021969604,-0.384,126276.355 +10,0.05283836864729952,-0.4202,126046.909 +11,0.04803994306422263,-0.5456,119639.3896 +12,0.051206486395601596,-0.448,123127.225 +13,0.048375085543942306,-0.5438,120052.7608 +14,0.051933650016416734,-0.4388,124499.2638 +15,0.04947078485565697,-0.5288,121581.9418 +16,0.04999479655571927,-0.5012,122435.3352 +17,0.05126114866666634,-0.4556,123702.5982 +18,0.0542035469479192,-0.3526,128260.1788 +19,0.051202524590972846,-0.4604,123580.1592 +20,0.05031315520494762,-0.4638,122863.3048 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/metadata.txt" new file mode 100644 index 000000000..6635f5cb5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T19:02:00.833 +hostname=a04r07n02 +julia=1.12.6 +slurm_job=22972072 +cell=1 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/summary.csv" new file mode 100644 index 000000000..35f24d2f4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/001/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,1.75,0.329136,31002,5000,100000,0.21053267049153648,0.0508843503697688,0.003494693176104266,0.7408996962187503,30012.811072498513,0.39271,0.32222,-0.4632,123426.75297,0.00045698372042640744,0.014909643647123511,9.494964098220581,20,27628.42950320244,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/blocks.csv" new file mode 100644 index 000000000..98920c9ef --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.05221957359926568,-0.4194,125774.9802 +2,0.049042046442489926,-0.534,120457.1404 +3,0.05186172349303731,-0.4184,124985.1352 +4,0.052384686600573264,-0.4114,125304.9732 +5,0.048691835709371495,-0.553,120073.1126 +6,0.051484925885482424,-0.45,123999.6826 +7,0.05438937729791404,-0.3372,129241.723 +8,0.05178645271558636,-0.4308,124124.9902 +9,0.05087259228596072,-0.4694,123644.5682 +10,0.052700759102785856,-0.3812,126185.8842 +11,0.05179886470189847,-0.4354,124521.253 +12,0.05070622957481508,-0.485,122756.2414 +13,0.049024570892105046,-0.5372,120278.638 +14,0.05305972368994751,-0.3872,126915.4714 +15,0.05098308048338204,-0.4622,123832.8134 +16,0.04831597354517858,-0.5376,119100.6008 +17,0.052450278222461996,-0.3972,125874.6764 +18,0.05296952534879983,-0.4086,126220.4358 +19,0.0505448544225759,-0.4944,122683.3636 +20,0.0514662614543014,-0.4464,124598.1172 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/metadata.txt" new file mode 100644 index 000000000..d13cba4c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T18:49:38.781 +hostname=a04r07n05 +julia=1.12.6 +slurm_job=22972073 +cell=2 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/summary.csv" new file mode 100644 index 000000000..f5d12c3bc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/002/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,1.75,0.329136,42004,5000,100000,0.2114966428629557,0.05133766677339665,0.0035529260012201673,0.7417987396391582,30280.187966951904,0.38785,0.3259,-0.4497999999999999,124028.69004,0.00035820793585239914,0.013237299772353798,8.812908107108811,20,27063.422708034515,4.000000000000002 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/blocks.csv" new file mode 100644 index 000000000..82c5f9101 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.04514558620046688,-0.4557333333333333,207428.15066666665 +2,0.044746321913788176,-0.5008,205943.84373333334 +3,0.04817065161882007,-0.36506666666666665,214979.56373333334 +4,0.044135476581080975,-0.5213333333333333,204052.44213333333 +5,0.04804528515556982,-0.3912,213596.91093333333 +6,0.046046520952682475,-0.4226666666666667,208563.69493333335 +7,0.04618481219175737,-0.46213333333333334,209297.4208 +8,0.04469595480720939,-0.5013333333333333,205477.79173333335 +9,0.046355426447662954,-0.43333333333333335,210645.23173333332 +10,0.04814814175959521,-0.3741333333333333,214202.06773333333 +11,0.04505175683239261,-0.5018666666666667,206210.85653333334 +12,0.046234122982391275,-0.4504,209971.64986666667 +13,0.05000200928184398,-0.3141333333333333,220642.63626666667 +14,0.049598527710856675,-0.2848,220505.1168 +15,0.04397042657250907,-0.5504,203113.324 +16,0.04764627415878252,-0.38986666666666664,213464.33413333332 +17,0.04986176124296229,-0.3064,219514.49973333333 +18,0.04433936566105986,-0.5144,203582.33626666668 +19,0.046169286355317064,-0.45626666666666665,209014.72213333333 +20,0.048526041737948736,-0.3768,215030.85653333334 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/metadata.txt" new file mode 100644 index 000000000..a13a06c58 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T23:41:01.561 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22972074 +cell=3 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/summary.csv" new file mode 100644 index 000000000..7efebee2d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/003/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,1.75,0.329136,31004,5000,75000,0.20228455373128254,0.04665368750823487,0.0028934311669060048,0.7522441117697194,48919.93703263489,0.38049333333333335,0.3323333333333333,-0.4286533333333334,210761.87252,0.00043959892934000976,0.017100749684329102,8.699009032983788,20,42358.052443027496,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/blocks.csv" new file mode 100644 index 000000000..cefceeb41 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.04744920580019922,-0.39253333333333335,213508.06613333334 +2,0.04589499904061862,-0.4570666666666667,207816.7328 +3,0.05028497755529534,-0.29306666666666664,220565.1208 +4,0.04653421964009079,-0.4424,209588.58986666668 +5,0.0496174268547494,-0.30266666666666664,219792.35626666667 +6,0.045940966111406065,-0.46026666666666666,209526.87413333333 +7,0.0487455679228151,-0.3536,215063.64106666666 +8,0.0461468586151915,-0.4352,209888.92666666667 +9,0.04612102018772663,-0.47386666666666666,208379.99866666668 +10,0.045953093857655766,-0.4434666666666667,209906.9144 +11,0.04618500053747557,-0.4512,209049.1392 +12,0.044426864853693404,-0.5098666666666667,204615.93706666667 +13,0.041946196370694085,-0.5866666666666667,198781.9824 +14,0.046230398191871545,-0.44666666666666666,209260.564 +15,0.04697045567849903,-0.41813333333333336,211018.9984 +16,0.04867113578575275,-0.3584,213753.42026666665 +17,0.04670101931854733,-0.4256,210169.48826666665 +18,0.04421573178698212,-0.4885333333333333,204696.46773333332 +19,0.045422110221678545,-0.48906666666666665,206378.76746666667 +20,0.0484555109792777,-0.3762666666666667,215179.3224 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/metadata.txt" new file mode 100644 index 000000000..9123fba59 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T23:35:02.241 +hostname=a01r01n03 +julia=1.12.6 +slurm_job=22972075 +cell=4 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/summary.csv" new file mode 100644 index 000000000..c1d7fa200 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/004/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,1.75,0.329136,42006,5000,75000,0.20178567769368488,0.04659563796551103,0.0029018451569212513,0.7481975639652961,48859.06767532369,0.3818533333333333,0.33348,-0.43022666666666665,210347.0654,0.00043358494006452925,0.01563386068762287,9.197409334772743,20,41940.351830005646,4.000000000000001 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/blocks.csv" new file mode 100644 index 000000000..6c2c0b255 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.04285613091376107,-0.28514285714285714,459281.96571428573 +2,0.04428685705024936,-0.244,465476.70514285716 +3,0.03861315975084694,-0.5,426812.0982857143 +4,0.042904333025225276,-0.3222857142857143,456898.64685714286 +5,0.03994476307855142,-0.42228571428571426,436365.07714285713 +6,0.04391040335928715,-0.2537142857142857,464618.88228571427 +7,0.04739574242925077,-0.12171428571428572,486535.8434285714 +8,0.040013187890981176,-0.4662857142857143,433494.1811428571 +9,0.03819895494385783,-0.54,424972.7268571429 +10,0.040980711482446384,-0.3554285714285714,444948.0434285714 +11,0.04121444679529619,-0.404,446044.12057142856 +12,0.04300590886755452,-0.31485714285714284,454191.18685714283 +13,0.038019718607909384,-0.5142857142857142,423368.82971428573 +14,0.04353422337523998,-0.25257142857142856,459574.2165714286 +15,0.044297308306583426,-0.25771428571428573,469792.284 +16,0.040875293170874766,-0.38571428571428573,447813.4725714286 +17,0.04185149747110752,-0.3302857142857143,451063.2222857143 +18,0.04043444565548792,-0.3994285714285714,443031.36514285713 +19,0.037562462557134725,-0.48342857142857143,426435.6125714286 +20,0.03876359174476946,-0.4868571428571429,430981.4702857143 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/metadata.txt" new file mode 100644 index 000000000..2c65b5a9b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T08:13:47.999 +hostname=a02r05n01 +julia=1.12.6 +slurm_job=22972076 +cell=5 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/summary.csv" new file mode 100644 index 000000000..de6fcb8a9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/005/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,1.75,0.329136,31006,5000,35000,0.1911575443812779,0.04143315702382076,0.0022543319564874206,0.7615145125456448,97753.08163367223,0.3609142857142857,0.35482857142857144,-0.36699999999999994,447584.99754285713,0.0005786874017686793,0.025077936520124845,10.314509799814763,20,67022.54601097107,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/blocks.csv" new file mode 100644 index 000000000..c8fab5cda --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.040385177202712466,-0.4662857142857143,439005.92914285715 +2,0.04112357968833369,-0.3942857142857143,447116.452 +3,0.04368228045825656,-0.2542857142857143,462649.5074285714 +4,0.039931834754837525,-0.4165714285714286,438688.56685714284 +5,0.039786529810328,-0.41314285714285715,437968.1417142857 +6,0.04172867339080515,-0.3811428571428571,447368.31371428573 +7,0.03870430618229549,-0.49942857142857144,429228.46 +8,0.037972654615264854,-0.5302857142857142,424660.57485714287 +9,0.0440096463863664,-0.21885714285714286,467436.89085714286 +10,0.03941017210346768,-0.43257142857142855,435217.95257142856 +11,0.04742955218134177,-0.12057142857142857,486089.816 +12,0.04149923276889008,-0.344,451282.3537142857 +13,0.04345436897294963,-0.2885714285714286,462467.73142857145 +14,0.0425290821720961,-0.348,451545.36914285715 +15,0.03854880430278157,-0.4657142857142857,428687.82971428573 +16,0.03722368851073975,-0.5171428571428571,422549.6634285714 +17,0.03789720296564577,-0.5731428571428572,421379.91028571426 +18,0.03864900494187108,-0.4908571428571429,429757.93485714286 +19,0.0397021359539746,-0.37885714285714284,441258.81314285717 +20,0.03957085770005246,-0.4491428571428571,435601.0497142857 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/metadata.txt" new file mode 100644 index 000000000..ca9199578 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T06:40:40.582 +hostname=a02r05n01 +julia=1.12.6 +slurm_job=22972077 +cell=6 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/summary.csv" new file mode 100644 index 000000000..7c451bd9c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/006/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,1.75,0.329136,42008,5000,35000,0.18885979534330824,0.04066193925315053,0.002193617603308725,0.7537290461806204,95933.55063220103,0.3707714285714286,0.3424,-0.3991428571428572,442998.0630285714,0.0005702444557842982,0.02526982636658209,10.393291680410664,20,62171.28708910942,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/blocks.csv" new file mode 100644 index 000000000..a02e5669a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.04188963586401451,-0.173,807994.552 +2,0.037656290343996486,-0.329,758352.343 +3,0.039068511918708734,-0.306,771337.784 +4,0.03567641517927541,-0.37,735888.745 +5,0.03507502674432385,-0.495,723410.621 +6,0.035163337694981464,-0.434,731106.26 +7,0.030435170723989814,-0.696,670277.992 +8,0.033949378042327456,-0.563,703404.914 +9,0.0343404167749427,-0.478,725388.867 +10,0.03969569738680957,-0.292,783327.005 +11,0.03848530888947289,-0.275,775947.779 +12,0.035264018660431704,-0.502,726381.087 +13,0.03522921085077519,-0.471,732780.578 +14,0.03582154502026242,-0.425,745440.562 +15,0.03579785393904149,-0.411,742860.498 +16,0.03880955845858875,-0.298,775678.912 +17,0.039790701911897486,-0.25,782880.395 +18,0.03691585840728635,-0.336,759144.58 +19,0.041327442553561924,-0.191,804758.556 +20,0.038474122540411146,-0.272,774712.222 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/metadata.txt" new file mode 100644 index 000000000..608ef472e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T07:57:19.678 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22972078 +cell=7 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/summary.csv" new file mode 100644 index 000000000..eade562ff --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/007/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,1.75,0.329136,31008,5000,20000,0.18046111826896669,0.03694327509525497,0.0017893775951594137,0.7627264242358511,154951.3265051283,0.3624,0.34645,-0.37835,751553.7126,0.00062257231622246,0.02937625921153266,10.759255401103408,20,59596.07716012001,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/blocks.csv" new file mode 100644 index 000000000..0ad5591e4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.03649713004335967,-0.41,746031.268 +2,0.03789190357650773,-0.315,773673.636 +3,0.03340119879613007,-0.547,708340.295 +4,0.035859877062885286,-0.413,740988.478 +5,0.038820959113313847,-0.253,780935.963 +6,0.0350814191538866,-0.49,727760.185 +7,0.041619394724722494,-0.189,810185.438 +8,0.040873760367666594,-0.177,799408.364 +9,0.037736601493213354,-0.394,761180.355 +10,0.037773053581204065,-0.351,766590.7 +11,0.03513524626368417,-0.561,730615.149 +12,0.03802974355115657,-0.331,763088.443 +13,0.03214533624292858,-0.616,697690.718 +14,0.035980723784718976,-0.463,742175.258 +15,0.03469229298115306,-0.527,720216.241 +16,0.039844107626060124,-0.271,775831.776 +17,0.03369257424135526,-0.502,716242.545 +18,0.042094931687900045,-0.127,812808.389 +19,0.03842681277815223,-0.313,772458.439 +20,0.03980695277901873,-0.255,783700.025 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/metadata.txt" new file mode 100644 index 000000000..8eb029be7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T06:06:32.416 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22972079 +cell=8 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/summary.csv" new file mode 100644 index 000000000..1cd78b941 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/008/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,1.75,0.329136,42010,5000,20000,0.1816978925704956,0.037270200992450875,0.0018110390293801237,0.7670005226188481,156322.55310344067,0.36075,0.34625,-0.37525000000000003,756496.08325,0.0006234292034400611,0.03123980886456792,10.26880770909138,20,54856.91165781021,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/blocks.csv" new file mode 100644 index 000000000..68c2b5a5f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.06980776582249659,-0.3686,145836.9664 +2,0.07645190819643301,-0.1644,154433.2626 +3,0.07808730271867258,-0.112,156795.0548 +4,0.07241399768177466,-0.2484,149872.1632 +5,0.07392143706685092,-0.242,151581.082 +6,0.0750752237489953,-0.1944,152171.7936 +7,0.07156694440379692,-0.3074,148856.4276 +8,0.07285995226145528,-0.2196,149970.557 +9,0.0697729730601641,-0.2892,146215.4548 +10,0.07369221223810757,-0.2532,151382.9216 +11,0.06896811074394917,-0.3488,145898.2568 +12,0.07589322954386842,-0.1568,154193.626 +13,0.07402287244490913,-0.1968,152114.791 +14,0.07458531811497879,-0.1916,153044.8452 +15,0.07336885406732975,-0.2448,151292.5632 +16,0.07526651873860601,-0.2012,153515.2528 +17,0.07533875852621356,-0.1724,153406.4762 +18,0.07272583722242926,-0.243,149748.4106 +19,0.07212583909112227,-0.2564,148768.6878 +20,0.06884467055236025,-0.3692,144790.857 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/metadata.txt" new file mode 100644 index 000000000..37f9e7132 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T20:43:16.762 +hostname=a02r08n03 +julia=1.12.6 +slurm_job=22972080 +cell=9 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/summary.csv" new file mode 100644 index 000000000..8cd324f95 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/009/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,1.875,0.336985,31010,5000,100000,0.25672865102132164,0.07323948631222568,0.0067598680754077664,0.7935099169749886,43198.4067746222,0.3151,0.39119,-0.23901,150694.47251,0.0005674044605560975,0.015758269174259622,8.552293662069747,20,33549.53921794891,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/blocks.csv" new file mode 100644 index 000000000..f4c5587b8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07346340583250112,-0.2614,150860.5276 +2,0.06984931818071616,-0.311,146537.9824 +3,0.07095797031811082,-0.2952,147407.0178 +4,0.07198860384955726,-0.2664,148930.6946 +5,0.07392996279256718,-0.2322,150832.3102 +6,0.0717311691976026,-0.2628,149507.4804 +7,0.07093600307633802,-0.317,147725.9676 +8,0.07094889999992549,-0.3166,147713.345 +9,0.07324702253144832,-0.2416,150781.2238 +10,0.0698143377126712,-0.3294,146559.5372 +11,0.07475091717131897,-0.2024,152499.6476 +12,0.07390033503743235,-0.237,151719.5224 +13,0.07138091234915694,-0.3048,147895.0194 +14,0.07261856804436741,-0.262,149784.3314 +15,0.07127319811321335,-0.269,148859.1778 +16,0.07278243801897784,-0.2344,150392.9692 +17,0.07075918837973136,-0.2902,147643.9422 +18,0.07414150315485896,-0.2184,151805.6874 +19,0.06812107371349393,-0.3502,144027.6108 +20,0.07443853077676932,-0.1934,152448.7368 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/metadata.txt" new file mode 100644 index 000000000..ee15a3b06 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-28T20:26:22.848 +hostname=a02r08n03 +julia=1.12.6 +slurm_job=22972081 +cell=10 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/summary.csv" new file mode 100644 index 000000000..413638cae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/010/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,1.875,0.336985,42012,5000,100000,0.25409118336995445,0.07205166791253793,0.006592261348923449,0.7875056182089077,42497.80297484477,0.32599,0.38221,-0.26977,149196.63658,0.00039857965096310745,0.009756296482407225,9.032458952171242,20,32386.37718319893,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/blocks.csv" new file mode 100644 index 000000000..7f1a5c571 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.06462781058280477,-0.284,251542.86773333335 +2,0.06833087283266359,-0.17893333333333333,260539.2888 +3,0.06167384605436819,-0.39813333333333334,244289.7576 +4,0.06520201720686843,-0.2656,251346.36266666665 +5,0.06796200598696887,-0.19253333333333333,259008.5808 +6,0.06571176566892051,-0.26826666666666665,253740.7096 +7,0.06627188369879537,-0.25653333333333334,255906.684 +8,0.06480539545481054,-0.28613333333333335,250886.3688 +9,0.06662672543100198,-0.2594666666666667,254715.81946666667 +10,0.0705896063275092,-0.11333333333333333,266653.4328 +11,0.0659923807646439,-0.26106666666666667,254196.3432 +12,0.07031429525700902,-0.1272,264297.82293333334 +13,0.06689281018873444,-0.22293333333333334,255352.39546666667 +14,0.06458745458427292,-0.29546666666666666,250813.9192 +15,0.06756029870754574,-0.17413333333333333,258239.94666666666 +16,0.06934282394625771,-0.1384,263252.4368 +17,0.06863363379313184,-0.16533333333333333,260512.86746666668 +18,0.06643696026416922,-0.24453333333333332,256927.3064 +19,0.0661166084280092,-0.26986666666666664,253569.12533333333 +20,0.06763865352573921,-0.22533333333333333,257513.34053333334 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/metadata.txt" new file mode 100644 index 000000000..4a689f8c3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T02:53:11.964 +hostname=a02r08n06 +julia=1.12.6 +slurm_job=22972082 +cell=11 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/summary.csv" new file mode 100644 index 000000000..a9cd39fa4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/011/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,1.875,0.336985,31012,5000,75000,0.24558108273824056,0.06676589243521124,0.005579319767607017,0.7989655689840677,70009.11242614406,0.31149333333333334,0.3916266666666667,-0.23136,256165.26881333333,0.00047756948966108014,0.01535629584965796,7.983960350004874,20,54429.335659980774,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/blocks.csv" new file mode 100644 index 000000000..6169367d5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.06722926203428652,-0.22,256992.636 +2,0.06821478908438779,-0.22613333333333333,259616.43253333334 +3,0.06352519754063396,-0.32666666666666666,249524.29093333334 +4,0.06612085441408175,-0.2432,255183.65386666666 +5,0.06659293742702672,-0.2496,255621.00613333334 +6,0.06580854079699687,-0.2501333333333333,254994.38746666667 +7,0.06853672082412134,-0.1976,261119.42986666667 +8,0.06910080218437555,-0.1776,261383.95573333334 +9,0.06685507920611222,-0.2168,256096.24533333333 +10,0.06331894253870997,-0.32693333333333335,247320.5736 +11,0.06645887572643502,-0.19306666666666666,256473.31093333333 +12,0.0675472356869975,-0.20266666666666666,258105.11493333333 +13,0.06775987830125862,-0.22533333333333333,257878.29893333334 +14,0.06395894026237463,-0.292,249979.82533333334 +15,0.06563289090308633,-0.26853333333333335,253500.41146666667 +16,0.06830704654694321,-0.20693333333333333,259176.79866666667 +17,0.06395979898757165,-0.31146666666666667,248443.5832 +18,0.06424256186585214,-0.3112,249468.9176 +19,0.06804938921203914,-0.19573333333333334,259005.9296 +20,0.07042761954377832,-0.14746666666666666,263523.9226666667 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/metadata.txt" new file mode 100644 index 000000000..565dae1a1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T02:40:10.603 +hostname=a02r08n06 +julia=1.12.6 +slurm_job=22972083 +cell=12 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/summary.csv" new file mode 100644 index 000000000..7a86b9384 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/012/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,1.875,0.336985,42014,5000,75000,0.24502709615071613,0.06658236815435346,0.005566334281970552,0.796432899008798,69816.67326981934,0.31378666666666666,0.38812,-0.2394533333333333,255670.43624,0.0004487104847965685,0.011608949562364393,9.088402359130754,20,53683.571738004684,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/blocks.csv" new file mode 100644 index 000000000..7c952c813 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.059235916759601985,-0.22285714285714286,544781.0205714286 +2,0.06045182966731852,-0.19542857142857142,553228.388 +3,0.06011687195644471,-0.1777142857142857,548544.9422857143 +4,0.06385075681768909,-0.061714285714285715,567159.9497142857 +5,0.0615580343853036,-0.13885714285714285,556209.4794285714 +6,0.05991511477348297,-0.19257142857142856,547552.312 +7,0.058822247511182875,-0.2634285714285714,537851.1622857143 +8,0.05652678007730801,-0.308,525942.2314285714 +9,0.05683959660495301,-0.27485714285714286,532981.9748571429 +10,0.05564496052309968,-0.2662857142857143,522321.81314285717 +11,0.06551801179986197,-0.024,578804.2634285714 +12,0.056683664701080334,-0.29942857142857143,529820.4485714285 +13,0.05859250938656578,-0.232,542942.1834285714 +14,0.05971361620395898,-0.2102857142857143,546362.5022857143 +15,0.06500956535726955,-0.028,575506.1788571428 +16,0.05837572039435807,-0.19485714285714287,541912.3074285714 +17,0.06068048386998365,-0.17257142857142857,553831.6902857143 +18,0.0590215090112962,-0.2422857142857143,542030.3634285714 +19,0.05487442689393015,-0.38457142857142856,518174.61485714285 +20,0.05888886480584719,-0.20914285714285713,546519.2965714285 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/metadata.txt" new file mode 100644 index 000000000..2c9242983 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T05:55:06.414 +hostname=f14r04 +julia=1.12.6 +slurm_job=22972084 +cell=13 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/summary.csv" new file mode 100644 index 000000000..b78ab219d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/013/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,1.875,0.336985,31014,5000,35000,0.23215682356092668,0.059516024075026805,0.004406745084229827,0.803803499860995,140415.91753611443,0.3028571428571429,0.40077142857142856,-0.2049428571428572,545623.8561428571,0.0006406310457310603,0.02035509790546679,8.876371294943235,20,59783.39959406853,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/blocks.csv" new file mode 100644 index 000000000..60dea8211 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.05811579411960292,-0.23257142857142857,537349.1348571428 +2,0.053913944311253986,-0.3902857142857143,515490.11657142855 +3,0.05615015421959045,-0.32971428571428574,526246.0851428572 +4,0.057250364758792915,-0.24571428571428572,533094.3651428572 +5,0.06133020777438112,-0.12857142857142856,555485.8771428572 +6,0.05486887847634182,-0.36114285714285715,518142.0817142857 +7,0.05745701203757374,-0.2897142857142857,533533.5965714286 +8,0.054995707076311046,-0.36742857142857144,520702.14971428574 +9,0.06254967485541993,-0.14,560560.9114285714 +10,0.059910281195991476,-0.16857142857142857,552754.7434285714 +11,0.05856241903963337,-0.2662857142857143,539753.6222857143 +12,0.06131026206770009,-0.132,558591.7971428571 +13,0.058243202901100806,-0.2662857142857143,533905.3645714286 +14,0.0603219211252724,-0.15542857142857142,551276.2497142857 +15,0.058553395905594365,-0.25885714285714284,538923.3611428571 +16,0.0674492567721512,0.061714285714285715,587207.9462857143 +17,0.05838101093280105,-0.24285714285714285,538833.34 +18,0.05507950105631767,-0.3588571428571429,521622.4314285714 +19,0.05469019537767014,-0.3537142857142857,515518.63542857143 +20,0.05814366900945467,-0.284,535727.1171428572 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/metadata.txt" new file mode 100644 index 000000000..13aef3d43 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T05:42:32.596 +hostname=f14r04 +julia=1.12.6 +slurm_job=22972085 +cell=14 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/summary.csv" new file mode 100644 index 000000000..ab4f9022c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/014/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,1.875,0.336985,42016,5000,35000,0.22942270837208584,0.05836384265064775,0.004278355699026968,0.7961792727342135,137697.58051030262,0.31648571428571426,0.38745714285714283,-0.24551428571428568,538735.9463428571,0.0007228931136755955,0.024687791440039665,8.941966294815586,20,59124.018522024155,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/blocks.csv" new file mode 100644 index 000000000..70c8f0421 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.05526894562826487,-0.165,939234.329 +2,0.053775376959712955,-0.227,923631.711 +3,0.05087588551922681,-0.339,888110.836 +4,0.05099336468235811,-0.279,889045.79 +5,0.05638809475883863,-0.111,941719.864 +6,0.051475844408742207,-0.302,897064.408 +7,0.060010039844961054,-0.01,981123.421 +8,0.05713669934504719,-0.07,957390.891 +9,0.04975381714283753,-0.399,880194.92 +10,0.05681616516208055,-0.089,957926.107 +11,0.056254059696746024,-0.196,949543.46 +12,0.055900480744141536,-0.189,943396.99 +13,0.05039377164513849,-0.328,883681.883 +14,0.05163827193281054,-0.301,893526.094 +15,0.0592401452413028,0.021,986880.404 +16,0.05594818783982851,-0.085,949096.723 +17,0.056017097874818095,-0.143,938153.065 +18,0.054551909019944105,-0.155,927876.828 +19,0.05419928395987745,-0.236,910096.522 +20,0.0601284066527503,0.038,984030.344 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/metadata.txt" new file mode 100644 index 000000000..3fedde24d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T05:11:51.268 +hostname=a01r02n01 +julia=1.12.6 +slurm_job=22972086 +cell=15 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/summary.csv" new file mode 100644 index 000000000..bb675d9d9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/015/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,1.875,0.336985,31016,5000,20000,0.22278472123146056,0.05483829240297139,0.0037396193637702206,0.8041562579358191,230008.4691789525,0.29345,0.40865,-0.17824999999999996,931086.2295,0.0007087810138032446,0.027782224059355123,9.420546665064059,20,52470.51481795311,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/blocks.csv" new file mode 100644 index 000000000..f7447bdae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.058250811437613945,-0.136,967193.431 +2,0.052308662340745965,-0.306,901657.479 +3,0.05842338550735144,-0.162,959647.673 +4,0.051162527886117685,-0.299,890907.613 +5,0.05637091587980149,-0.09,951746.815 +6,0.05360124773724442,-0.217,929686.901 +7,0.056744366256499236,-0.126,956664.632 +8,0.050693466744744,-0.336,886330.707 +9,0.05813922338835573,-0.043,964905.107 +10,0.05920591817042737,-0.04,976418.71 +11,0.05334618010724921,-0.191,917443.729 +12,0.06408400158617861,0.141,1.028534915e6 +13,0.046205398083500084,-0.497,838681.626 +14,0.05498322225995139,-0.174,928844.61 +15,0.054992816686912194,-0.193,927721.829 +16,0.05086787820088057,-0.374,893459.038 +17,0.05193339791577205,-0.292,898666.92 +18,0.05240299042305856,-0.25,910184.764 +19,0.057856383200232814,-0.088,962833.196 +20,0.05269429590958407,-0.303,902873.059 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/metadata.txt" new file mode 100644 index 000000000..6ac7a4fb6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T05:10:51.994 +hostname=a01r02n01 +julia=1.12.6 +slurm_job=22972087 +cell=16 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/summary.csv" new file mode 100644 index 000000000..a7e77bd18 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/016/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,1.875,0.336985,42018,5000,20000,0.2226634327173233,0.05471335448611104,0.0037065830279959158,0.807630946484263,229484.44157451348,0.29985,0.4009,-0.19880000000000003,929720.1377,0.0008957217725390579,0.03174102442548046,9.705114544885008,20,51956.39305996895,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/blocks.csv" new file mode 100644 index 000000000..d51169673 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09236982453663915,-0.132,170872.2792 +2,0.0954283291142135,-0.0976,174492.9338 +3,0.09466726863746659,-0.0824,172789.702 +4,0.09365573549183936,-0.1206,171968.897 +5,0.09163443742384791,-0.1776,169452.8076 +6,0.09455805679101865,-0.123,172374.2068 +7,0.09196935178424105,-0.157,170060.0592 +8,0.09713637108864195,-0.0444,175677.2196 +9,0.09475850987964207,-0.114,172976.585 +10,0.0914131858482106,-0.1528,169800.4242 +11,0.09640953272359193,-0.0332,175786.356 +12,0.0942104684913646,-0.1208,172757.948 +13,0.09344788305799902,-0.117,172261.7932 +14,0.098132369646499,-0.021,177446.464 +15,0.09374187754538878,-0.1238,172044.4348 +16,0.09624123005718224,-0.0666,174949.5654 +17,0.09653397077328446,-0.0818,174969.9806 +18,0.09395812757401556,-0.0968,173240.8212 +19,0.09271155632247943,-0.1362,170940.4546 +20,0.0906964485210861,-0.204,168928.0612 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/metadata.txt" new file mode 100644 index 000000000..152f32577 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T12:14:07.210 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22981897 +cell=17 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/summary.csv" new file mode 100644 index 000000000..c13f03da8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/017/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,2.0,0.344439,31018,5000,100000,0.2936543506876627,0.09418372676543259,0.010779968728686392,0.8228757068487897,55551.82245569451,0.2716,0.43307,-0.11013,172689.54967,0.000456065444974003,0.010407651790364321,7.669351880850604,20,59638.16554403305,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/blocks.csv" new file mode 100644 index 000000000..179aa9565 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.09542692958441461,-0.0886,174371.4014 +2,0.09455155242262753,-0.0788,173364.267 +3,0.09363645337862135,-0.135,171851.973 +4,0.09251345411431458,-0.1598,170701.4228 +5,0.09533043543598442,-0.0774,173649.5196 +6,0.09136347507271965,-0.158,170376.4348 +7,0.09350778142003183,-0.1658,170976.3288 +8,0.09253366101715071,-0.1236,170943.9388 +9,0.09082714345075742,-0.1882,167936.0946 +10,0.08850817246120193,-0.2408,166139.3908 +11,0.09630167836623245,-0.068,174667.1818 +12,0.09536162921823563,-0.08,174261.0444 +13,0.09187589520996461,-0.1678,169863.3072 +14,0.09291103605161434,-0.1486,171322.931 +15,0.09079102861853891,-0.1574,169138.2118 +16,0.0926142262538964,-0.1208,171218.3792 +17,0.09289871512656273,-0.1244,170675.5824 +18,0.09614098385719147,-0.0812,174812.4418 +19,0.0935553517009948,-0.1118,171868.7484 +20,0.0927695240950028,-0.1338,171161.25 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/metadata.txt" new file mode 100644 index 000000000..440000be9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T04:01:12.662 +hostname=a02r01n01 +julia=1.12.6 +slurm_job=22982031 +cell=18 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/summary.csv" new file mode 100644 index 000000000..8e219e32b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/018/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,2.0,0.344439,42020,5000,100000,0.29172681623670793,0.09317095634280291,0.010605157935606176,0.8185476499776712,54954.466153937385,0.27821,0.42593,-0.13049000000000005,171464.99248,0.00044382519521656596,0.009933139377595426,8.012502981504486,20,30777.29470205307,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/blocks.csv" new file mode 100644 index 000000000..1b7d7c12f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.08836198003735238,-0.06613333333333334,296853.3296 +2,0.08464946869967971,-0.16,290058.01146666665 +3,0.08311143983077685,-0.17466666666666666,286458.584 +4,0.08977615836062275,-0.07226666666666667,300244.4368 +5,0.08606808145758114,-0.12106666666666667,293139.93546666665 +6,0.08626747029679148,-0.1064,294396.4757333333 +7,0.08413585450127138,-0.22906666666666667,287508.7816 +8,0.08411094955799539,-0.17226666666666668,288452.65493333334 +9,0.09034187032685247,-0.039466666666666664,302068.6874666667 +10,0.09131493071610264,0.0021333333333333334,302940.62693333335 +11,0.08821503745905841,-0.0296,298473.084 +12,0.08633537782445491,-0.12693333333333334,293794.45866666664 +13,0.0836979369110195,-0.1448,288893.8122666667 +14,0.08639702805325603,-0.13173333333333334,293473.07573333336 +15,0.08240746628788863,-0.19093333333333334,286051.8765333333 +16,0.0848134389544614,-0.13413333333333333,291830.3957333333 +17,0.08729153066550013,-0.061066666666666665,296853.1072 +18,0.08744727898449928,-0.07626666666666666,296389.38426666666 +19,0.09078879485601696,-0.04906666666666667,302380.0024 +20,0.08565899939678784,-0.14666666666666667,292606.93973333336 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/metadata.txt" new file mode 100644 index 000000000..66034e73f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T09:08:05.129 +hostname=a04r07n07 +julia=1.12.6 +slurm_job=22983288 +cell=19 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/summary.csv" new file mode 100644 index 000000000..c98831c7b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/019/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,2.0,0.344439,31020,5000,75000,0.28148038965861005,0.08655955465889846,0.009106596225122983,0.8227614706443894,90764.27158600911,0.27312,0.43472,-0.11151999999999995,294143.38302666665,0.0005839200241539763,0.013560639292146072,8.439374903880054,20,42700.008081912994,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/blocks.csv" new file mode 100644 index 000000000..59b165d7f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.08739779809210935,-0.08693333333333333,295708.1896 +2,0.08692779046517292,-0.1016,294304.78506666666 +3,0.08581379244517497,-0.13946666666666666,291894.5402666667 +4,0.07892680772299646,-0.28746666666666665,279121.4016 +5,0.09180705481203913,0.014666666666666666,305049.5776 +6,0.08348424196017537,-0.18186666666666668,287911.87813333335 +7,0.0820557716087312,-0.2104,284957.60826666665 +8,0.08530541233130304,-0.13253333333333334,292023.7058666667 +9,0.08491526600854025,-0.15626666666666666,290992.31173333334 +10,0.08196735743801498,-0.2264,284384.0552 +11,0.08641669102439967,-0.14133333333333334,292719.25786666665 +12,0.08657019466671143,-0.1368,293988.62426666665 +13,0.08794628368682558,-0.09626666666666667,296990.9250666667 +14,0.0833777359053968,-0.1696,288475.11333333334 +15,0.08409641929037365,-0.17813333333333334,290019.6458666667 +16,0.08768719280702936,-0.10213333333333334,295875.30453333334 +17,0.08711612503043337,-0.0968,296128.4936 +18,0.0853898588112992,-0.13653333333333334,291571.51173333335 +19,0.08636816762959061,-0.12453333333333333,292941.2176 +20,0.08646044725026975,-0.1368,292525.3797333333 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/metadata.txt" new file mode 100644 index 000000000..994c515e8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T15:25:01.322 +hostname=a04r03n08 +julia=1.12.6 +slurm_job=22983938 +cell=20 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/summary.csv" new file mode 100644 index 000000000..6d34f1f4a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/020/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,2.0,0.344439,42022,5000,75000,0.2793758535003662,0.08550152044932935,0.00894034550057209,0.8176988236840834,89654.84230667597,0.28236,0.42336,-0.14135999999999999,291879.17634666665,0.0006092224019201795,0.01378719331173697,8.786197286884228,20,62787.01528096199,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/blocks.csv" new file mode 100644 index 000000000..9a9f7a2f4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.0820676706499002,-0.005714285714285714,650630.8028571429 +2,0.07894766350849522,-0.030285714285714287,634028.668 +3,0.07993632869080625,-0.029714285714285714,644054.7748571428 +4,0.07772300146195653,-0.045714285714285714,630832.792 +5,0.07630376617754259,-0.11485714285714285,624334.1005714285 +6,0.07927678030648479,-0.044,637520.4285714285 +7,0.07662485262439785,-0.1337142857142857,621758.5714285715 +8,0.0777654438781847,-0.07542857142857143,627588.5685714285 +9,0.07829671618778988,-0.10857142857142857,631350.9931428571 +10,0.07597759564885767,-0.12628571428571428,623017.8982857143 +11,0.07999435318127887,-0.016,638219.2217142857 +12,0.07599076708957614,-0.07314285714285715,625917.2142857143 +13,0.07879959004317291,-0.07428571428571429,636417.288 +14,0.07494359275926522,-0.17657142857142857,613042.0805714285 +15,0.07725862946523217,-0.09314285714285714,623668.4685714286 +16,0.07932930876215759,-0.045142857142857144,637724.2354285715 +17,0.07809755202222042,-0.045714285714285714,637226.7708571429 +18,0.08302112823445064,0.048,655744.232 +19,0.07736462045887098,-0.10285714285714286,624538.572 +20,0.07241980937941533,-0.228,600413.4685714286 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/metadata.txt" new file mode 100644 index 000000000..6ea00ede7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T14:25:44.973 +hostname=a02r01n07 +julia=1.12.6 +slurm_job=22987110 +cell=21 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/summary.csv" new file mode 100644 index 000000000..23b26d0af --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/021/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,2.0,0.344439,31022,5000,35000,0.2679577915252201,0.0780069585265028,0.007313806683103087,0.831999783725998,184041.50522374397,0.25911428571428574,0.44217142857142855,-0.07605714285714293,630901.4575142857,0.0005355182579692652,0.014014502232506132,7.570825468705092,20,46648.31296992302,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/blocks.csv" new file mode 100644 index 000000000..6fae0d772 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07713276821063138,-0.06514285714285714,627685.9645714286 +2,0.07586906970522451,-0.18,619718.8177142857 +3,0.075244300530667,-0.12285714285714286,619267.7651428571 +4,0.0785535307672389,-0.08742857142857142,628238.6937142857 +5,0.07604905642820703,-0.128,622990.5274285715 +6,0.08268246769051091,0.04342857142857143,651606.1525714286 +7,0.07370831477305381,-0.17885714285714285,609815.0977142857 +8,0.07263333552072154,-0.2257142857142857,602877.8434285715 +9,0.07809607369626045,-0.07085714285714285,630778.1725714286 +10,0.07762820615693047,-0.10228571428571429,627959.6788571428 +11,0.07610398921150899,-0.16228571428571428,621025.2331428571 +12,0.07416882422878662,-0.192,612033.3108571429 +13,0.07748086785847967,-0.11428571428571428,626648.5491428572 +14,0.0830746848487264,0.04914285714285714,655383.3537142858 +15,0.07429925839150264,-0.18342857142857144,615404.7788571429 +16,0.08020447861778303,-0.045714285714285714,638066.2325714285 +17,0.07414131537720157,-0.19371428571428573,610497.996 +18,0.07770442109376173,-0.054857142857142854,627277.5948571429 +19,0.0757003700771723,-0.13028571428571428,621697.1342857142 +20,0.08108307164557141,0.036571428571428574,646938.7017142858 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/metadata.txt" new file mode 100644 index 000000000..17fef3b92 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T23:05:28.760 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22987201 +cell=22 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/summary.csv" new file mode 100644 index 000000000..fc7a3f8ad --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/022/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,2.0,0.344439,42024,5000,35000,0.2657310830252511,0.07707792024149702,0.007212796539759886,0.8236757762409243,181849.62891408298,0.26894285714285715,0.4324571428571429,-0.10542857142857143,625795.5799428571,0.0006527426958766729,0.018283341011401753,8.502023459103263,20,72840.11806201935,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/blocks.csv" new file mode 100644 index 000000000..1fa6cb6bc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.0709444298413748,-0.089,1.074032354e6 +2,0.06540502179634268,-0.283,1.015703547e6 +3,0.08446090265209182,0.253,1.181419739e6 +4,0.0750898009664511,0.019,1.101240304e6 +5,0.06983729245080462,-0.12,1.065428717e6 +6,0.06846512995404691,-0.172,1.051222251e6 +7,0.07353971123113275,-0.075,1.090664141e6 +8,0.06416824078271316,-0.298,996800.708 +9,0.06958856488145534,-0.222,1.060080766e6 +10,0.06812449875303582,-0.112,1.051125068e6 +11,0.06895957253148641,-0.157,1.050271948e6 +12,0.07299710585672187,-0.077,1.085363845e6 +13,0.07414481870328768,0.018,1.100748413e6 +14,0.06989485870171643,-0.155,1.05503305e6 +15,0.0693407601414433,-0.129,1.054317423e6 +16,0.0695627407001009,-0.18,1.049300461e6 +17,0.07533928680203508,0.044,1.108559462e6 +18,0.07899645443102259,0.091,1.131079766e6 +19,0.07673196012113022,0.074,1.115242279e6 +20,0.07388266396328685,0.01,1.096915889e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/metadata.txt" new file mode 100644 index 000000000..7da521812 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T02:05:50.326 +hostname=a01r05n01 +julia=1.12.6 +slurm_job=22988501 +cell=23 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/summary.csv" new file mode 100644 index 000000000..2220bed4f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/023/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,2.0,0.344439,31024,5000,20000,0.25762306668758395,0.07197369076308402,0.006214041058164915,0.8336301793908373,301879.53906236636,0.2594,0.4408,-0.07800000000000001,1.07672750655e6,0.0010630746704772425,0.03037926924730086,10.453398334337441,20,66373.76266407967,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/blocks.csv" new file mode 100644 index 000000000..3fd5444c4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.07102167002592114,-0.08,1.071712973e6 +2,0.07074689816500813,-0.084,1.074251354e6 +3,0.07443780046524603,0.05,1.109900321e6 +4,0.07669521953333447,0.066,1.110174799e6 +5,0.07286687832871826,-0.027,1.076250303e6 +6,0.06393362510770316,-0.277,1.005112426e6 +7,0.07241243025768654,-0.084,1.083265798e6 +8,0.06948461528377356,-0.14,1.051779275e6 +9,0.074988462173686,-0.003,1.100859325e6 +10,0.07930565193831011,0.126,1.146793138e6 +11,0.07484934901977067,0.033,1.107186003e6 +12,0.070138302692362,-0.112,1.057169866e6 +13,0.07611519926782853,0.098,1.121118155e6 +14,0.06631770130397467,-0.253,1.027979997e6 +15,0.07087779896514758,-0.098,1.068952203e6 +16,0.0693525753569113,-0.153,1.049438364e6 +17,0.07554836919832246,-0.016,1.110528334e6 +18,0.07173052955628804,-0.155,1.068730031e6 +19,0.0720927048369822,-0.086,1.07806899e6 +20,0.06699729698225064,-0.29,1.028914307e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/metadata.txt" new file mode 100644 index 000000000..b9419445c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T02:29:58.271 +hostname=a01r05n01 +julia=1.12.6 +slurm_job=22988520 +cell=24 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/summary.csv" new file mode 100644 index 000000000..5d8aa3b03 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/024/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,2.0,0.344439,42026,5000,20000,0.25771895587444305,0.07199565392296127,0.006201369764539617,0.835843431468018,301971.65923169215,0.2575,0.44075,-0.07425000000000004,1.0774092981e6,0.0008459019220200618,0.0264617773003768,7.110734943696192,20,65814.46560788155,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/blocks.csv" new file mode 100644 index 000000000..db4d41e4a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.14428212836733614,-0.0814,214146.2396 +2,0.1514314405527081,0.0116,220751.8996 +3,0.15192567871224458,0.0362,221068.3524 +4,0.14983534524647954,0.0196,220367.2686 +5,0.14487944147349047,-0.0708,214988.203 +6,0.1437975548341755,-0.0674,214765.016 +7,0.15582934090028525,0.11,225487.502 +8,0.14922904105411358,0.0244,219736.6316 +9,0.1512762987145855,0.0268,220883.6136 +10,0.14975327068343758,0.009,219302.3386 +11,0.15374340171125933,0.0664,223560.0636 +12,0.14684906953805021,-0.0416,216193.6928 +13,0.15211215646796755,0.0374,221781.4322 +14,0.15156418290281737,0.0144,221057.2432 +15,0.14623427979575904,-0.0376,217595.6292 +16,0.15139033389121614,0.037,221164.5148 +17,0.14526013445151212,-0.0386,215770.8046 +18,0.15366085036068602,0.0512,222389.203 +19,0.15089763719274166,0.0184,219966.2848 +20,0.1527605156245239,0.0456,221905.9906 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/metadata.txt" new file mode 100644 index 000000000..9481cb06d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T12:25:04.666 +hostname=a02r01n01 +julia=1.12.6 +slurm_job=22988789 +cell=25 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/summary.csv" new file mode 100644 index 000000000..c5fc34074 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/025/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,2.5,0.369446,31026,5000,100000,0.3733186758761936,0.14983560512376948,0.026365623064132957,0.851514432569867,88376.63595652221,0.23336,0.47525,0.008529999999999982,219644.09619,0.0007782420908602698,0.011134066027996669,7.796053120682566,20,28577.045627117157,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/blocks.csv" new file mode 100644 index 000000000..339fd8619 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1472540614695116,-0.0106,218203.4248 +2,0.151111823852604,0.0106,220738.092 +3,0.15022121091278523,0.0146,220518.9156 +4,0.15027425120315616,-0.0024,220010.6938 +5,0.14893332823280384,0.0048,219446.2374 +6,0.14901720555346043,0.0018,219201.9616 +7,0.14887304325519982,0.001,219021.475 +8,0.1488015087559934,-0.0168,218543.1002 +9,0.15213183583002995,0.0142,221867.0078 +10,0.14951641386602027,0.0142,219153.8268 +11,0.15044746087380445,0.0202,220181.5236 +12,0.14923669803647072,-0.0072,218521.1134 +13,0.14587270760170104,-0.0652,216586.5836 +14,0.14362563623264663,-0.0638,214603.6978 +15,0.15119939695383522,0.0616,221203.7686 +16,0.1459977243862241,-0.0326,216544.4672 +17,0.1492019265340526,0.0014,219517.1462 +18,0.14919176878194426,0.0022,218955.6556 +19,0.1499852751691193,0.0236,220675.9562 +20,0.1479498989022969,-0.0148,217299.0866 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/metadata.txt" new file mode 100644 index 000000000..ea2418cd6 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T12:49:31.305 +hostname=a01r02n01 +julia=1.12.6 +slurm_job=22988939 +cell=26 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/summary.csv" new file mode 100644 index 000000000..addbb8ae3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/026/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,768,2.5,0.369446,42028,5000,100000,0.37221078586154516,0.148942158820183,0.02608240134885392,0.8505262371093522,87849.65988395561,0.23654,0.47092,-0.0021599999999999953,219039.68669,0.0004516302221889712,0.006383491867391438,7.0731395619893265,20,26091.51556801796,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/blocks.csv" new file mode 100644 index 000000000..55136d370 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.14163294967743956,0.039466666666666664,380105.3589333333 +2,0.1449966874392063,0.11253333333333333,385882.4093333333 +3,0.14295647924266716,0.07146666666666666,382128.9192 +4,0.14130520996173535,0.0432,379583.1077333333 +5,0.13634886115747505,-0.0424,372549.5978666667 +6,0.1416179910892611,0.024266666666666666,379417.2069333333 +7,0.14124451668852708,0.04053333333333333,381196.18666666665 +8,0.1331129243145008,-0.08693333333333333,366041.21146666666 +9,0.13941740869813948,0.010666666666666666,375749.35226666665 +10,0.13767471124636552,0.0021333333333333334,373841.3128 +11,0.14061319796740135,0.07546666666666667,379661.74213333335 +12,0.13679848059471114,-0.0016,373624.64426666667 +13,0.14248939812697548,0.045066666666666665,381516.2376 +14,0.1381272753339552,-0.022933333333333333,374079.0858666667 +15,0.1408632756067925,0.08026666666666667,380189.9154666667 +16,0.14197962224471655,0.029066666666666668,381403.7768 +17,0.14292990250696117,0.061066666666666665,382926.84373333334 +18,0.1478704261521838,0.1344,391105.4117333333 +19,0.14498541340010318,0.09333333333333334,385073.17093333334 +20,0.14582507105531792,0.1184,386258.1448 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/metadata.txt" new file mode 100644 index 000000000..08b82c1fe --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T18:00:44.706 +hostname=a01r02n01 +julia=1.12.6 +slurm_job=22988941 +cell=27 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/summary.csv" new file mode 100644 index 000000000..01bd0a21b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/027/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1024,2.5,0.369446,31028,5000,75000,0.3629708610026042,0.14113949012522178,0.023267993799317446,0.8561269116975582,147995.48199754456,0.22362666666666667,0.48862666666666665,0.04137333333333332,379616.68182666664,0.0007898909741938474,0.012431904249746046,8.084181101140441,20,43153.873563051224,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/blocks.csv" new file mode 100644 index 000000000..6d615f5ca --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.12514931824306894,0.04171428571428572,805447.8691428571 +2,0.1261789270485283,0.005142857142857143,807748.3971428572 +3,0.12643912006078517,0.04971428571428571,811530.0908571428 +4,0.13081551950497222,0.08571428571428572,822315.7594285714 +5,0.12002988864011761,-0.10171428571428572,782034.8131428572 +6,0.12787459259639483,0.08571428571428572,817894.896 +7,0.1281807082157403,0.006285714285714286,813190.7422857143 +8,0.12224294455340494,-0.045142857142857144,792163.5742857143 +9,0.12562280753171942,-0.025142857142857144,803434.9297142858 +10,0.1262887741497605,0.054285714285714284,809896.4365714286 +11,0.12576533921696434,0.03485714285714286,808669.5177142858 +12,0.12670224843209082,0.02057142857142857,808834.6874285714 +13,0.12541615886675445,-0.0017142857142857142,802952.2325714285 +14,0.13240447972965141,0.10571428571428572,828896.1434285714 +15,0.13180781629758867,0.116,829123.528 +16,0.123377011188641,-0.037142857142857144,794746.7977142857 +17,0.12789017671147382,0.04285714285714286,812104.5034285714 +18,0.12248743080371262,-0.05657142857142857,796243.8582857143 +19,0.12342313793337142,-0.013142857142857144,795349.2982857142 +20,0.13437333325370554,0.1662857142857143,838883.7331428571 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/metadata.txt" new file mode 100644 index 000000000..0d60fe108 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T01:43:59.175 +hostname=f14r04 +julia=1.12.6 +slurm_job=22989000 +cell=29 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/summary.csv" new file mode 100644 index 000000000..b439a9c90 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/029/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,2.5,0.369446,31030,5000,35000,0.3436055628943065,0.1266234866489223,0.018749438346606945,0.8551460088953206,298742.28555685584,0.22682857142857143,0.48037142857142856,0.02671428571428569,809073.0904285714,0.0008107778117857025,0.014615611916982504,7.100271346305223,20,61986.22459101677,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/blocks.csv" new file mode 100644 index 000000000..2ec0f9ed1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.11633456034001743,-0.14514285714285713,765295.4005714286 +2,0.1274457963294505,0.026857142857142857,813288.5902857143 +3,0.1268094172202276,-0.008571428571428572,807584.3662857143 +4,0.12464615639597071,0.006285714285714286,801526.0462857143 +5,0.11460687886877231,-0.184,765640.4771428572 +6,0.12301190895622642,-0.04114285714285714,797420.2668571429 +7,0.11222457858547155,-0.1977142857142857,754238.7828571429 +8,0.12872175755153856,0.05085714285714286,816783.928 +9,0.12698574447013705,0.04971428571428571,811952.248 +10,0.12024019977156725,-0.04171428571428572,784527.884 +11,0.12799527351071974,0.048,813778.4428571429 +12,0.13389867393336113,0.11771428571428572,831624.456 +13,0.1199943016513938,-0.08228571428571428,784290.8371428571 +14,0.12366932572742037,0.006857142857142857,804386.528 +15,0.12581446412054867,0.006857142857142857,809769.0902857143 +16,0.13010276546195226,0.11257142857142857,824349.1268571429 +17,0.11984223939545084,-0.09885714285714285,781895.4605714285 +18,0.13357402106473792,0.15885714285714286,833807.8382857143 +19,0.12937081669862716,0.07828571428571429,819020.1668571428 +20,0.12846886986921988,-0.021142857142857144,809244.8502857143 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/metadata.txt" new file mode 100644 index 000000000..b2e282431 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T00:17:10.561 +hostname=a02r07n03 +julia=1.12.6 +slurm_job=22989013 +cell=30 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/summary.csv" new file mode 100644 index 000000000..b979d5b0a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/030/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,1536,2.5,0.369446,42032,5000,35000,0.3404838995312887,0.12468788749614058,0.018290499136493568,0.8500079288284916,294175.6342180945,0.23725714285714286,0.46662857142857145,-0.007885714285714274,801521.2393714286,0.0013289238487374487,0.021726573492006154,8.382596383105579,20,58956.294368982315,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/blocks.csv" new file mode 100644 index 000000000..11067b874 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.11185329196345538,0.0,1.351077427e6 +2,0.12160285372744374,0.134,1.415489177e6 +3,0.12531581111479476,0.147,1.433319158e6 +4,0.11180262792688654,-0.047,1.349262985e6 +5,0.12202542259511415,0.088,1.416784875e6 +6,0.11589043539630052,0.005,1.368709803e6 +7,0.12477120282586907,0.13,1.427399861e6 +8,0.10665305010664679,-0.15,1.308370273e6 +9,0.12343585868602236,0.177,1.431785125e6 +10,0.11029110461638653,-0.086,1.343719454e6 +11,0.1134610042697218,-0.048,1.355326405e6 +12,0.11720800058357872,0.03,1.390919787e6 +13,0.10989999471784517,-0.062,1.33364551e6 +14,0.12059493912504331,0.073,1.412526652e6 +15,0.11983073465127109,0.052,1.402789533e6 +16,0.10690984153474892,-0.16,1.320652306e6 +17,0.11884302393715643,0.117,1.407026061e6 +18,0.11489590215850694,0.022,1.366417871e6 +19,0.10746021005281772,-0.179,1.307910282e6 +20,0.11529616374452713,-0.03,1.368697256e6 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/metadata.txt" new file mode 100644 index 000000000..629bae5e4 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T05:34:32.683 +hostname=a01r03n03 +julia=1.12.6 +slurm_job=22989072 +cell=31 +role=critical diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/summary.csv" new file mode 100644 index 000000000..722a18b74 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/031/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +critical,2048,2.5,0.369446,31032,5000,20000,0.3286570068359375,0.11590207368670685,0.015738817467820868,0.8535133412878155,486128.5312724493,0.23045,0.47155,0.010650000000000048,1.37559149005e6,0.0013451260241165426,0.023686246842285593,6.911936064597779,20,67077.7178428173,4.0 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/blocks.csv" new file mode 100644 index 000000000..8377cd2a5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.018604543540811088,-1.7197333333333333,114332.2216 +2,0.018579966051290586,-1.7218666666666667,114188.6408 +3,0.019398501129597814,-1.7085333333333332,117287.53546666667 +4,0.020334871536461286,-1.6845333333333334,118761.37466666667 +5,0.020333213839520855,-1.6829333333333334,119621.78906666666 +6,0.019229870815749745,-1.7045333333333332,117327.2672 +7,0.017035692412214122,-1.7538666666666667,109425.95786666666 +8,0.019572265802507174,-1.7325333333333333,116977.52213333333 +9,0.018779447827711314,-1.7125333333333332,114851.37813333333 +10,0.01809584980859169,-1.7365333333333333,113624.27946666666 +11,0.018795451737752107,-1.7149333333333334,116438.94266666667 +12,0.01961696345426802,-1.6816,118517.69706666666 +13,0.0185326609627887,-1.7325333333333333,113469.60853333333 +14,0.020048593079844915,-1.7058666666666666,118901.93093333334 +15,0.017899647957482376,-1.7418666666666667,110696.96613333334 +16,0.018276203590614024,-1.7248,112834.16 +17,0.01873183222162576,-1.7104,115447.42586666667 +18,0.01804493847671741,-1.7469333333333332,113130.41786666667 +19,0.018550401549740733,-1.7181333333333333,113438.83546666667 +20,0.019465260919768478,-1.7290666666666668,115616.41493333333 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/metadata.txt" new file mode 100644 index 000000000..377370958 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T04:22:04.738 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22989291 +cell=33 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/summary.csv" new file mode 100644 index 000000000..0c7af622e --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/033/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,1024,1.875,0.336485,31034,5000,75000,0.11608347935994466,0.01889630883575291,0.0007497198740280938,0.47627187164945445,19814.21593375844,0.8726933333333333,0.0272,-1.7181866666666668,115244.51829333333,0.00019069568825560903,0.00454074110961651,4.434261281299398,20,66895.86209797859,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/blocks.csv" new file mode 100644 index 000000000..970710e33 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.02035071051318664,-1.6808,119002.192 +2,0.019158724316574324,-1.7136,116037.4624 +3,0.019342577472909277,-1.6984,116878.07546666666 +4,0.019502275507639083,-1.708,117387.82746666667 +5,0.0183511874873812,-1.7109333333333334,113797.34373333333 +6,0.020456124088392244,-1.6688,120884.96773333334 +7,0.017837078407474716,-1.7368,111951.55893333333 +8,0.018455294106296302,-1.7381333333333333,113409.104 +9,0.01859553987440401,-1.7096,114682.77226666667 +10,0.020058211047394435,-1.6885333333333334,119926.19146666667 +11,0.017701664007815997,-1.7418666666666667,110855.82373333334 +12,0.01925370865613028,-1.7144,115827.9064 +13,0.017296728509525808,-1.7514666666666667,109344.80666666667 +14,0.018857773292582716,-1.7237333333333333,115616.992 +15,0.021120507831324357,-1.6544,121240.9688 +16,0.01941234992389412,-1.7082666666666666,116969.52826666666 +17,0.019741342855663,-1.6834666666666667,119361.5088 +18,0.019132593485762482,-1.7221333333333333,115223.2816 +19,0.02088562438621205,-1.6850666666666667,122840.1776 +20,0.021394013719496435,-1.6605333333333334,122113.2576 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/metadata.txt" new file mode 100644 index 000000000..529bfe66a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-29T21:58:44.976 +hostname=a01r03n04 +julia=1.12.6 +slurm_job=22989620 +cell=34 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/summary.csv" new file mode 100644 index 000000000..28b60d1f8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/034/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,1024,1.875,0.336485,42036,5000,75000,0.11770426371256511,0.019345201474502974,0.0007785898680987659,0.48065976122057535,20284.91398132843,0.8668666666666667,0.028786666666666665,-1.7049466666666666,116667.58734666667,0.00025392580650198743,0.006095642389473876,4.359211931473325,20,43335.18903398514,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/blocks.csv" new file mode 100644 index 000000000..d582e29b2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.1229890641860431,0.8664,365347.51413333334 +2,0.1232406442499186,0.8829333333333333,366131.8856 +3,0.12171163461993662,0.8586666666666667,363649.6346666667 +4,0.12492928164434658,0.8952,368649.7168 +5,0.12049610780446286,0.8861333333333333,362601.7389333333 +6,0.12341063170146954,0.8784,366154.00053333334 +7,0.12422429134438183,0.8864,367966.66133333335 +8,0.12218326364312282,0.8797333333333334,364837.3933333333 +9,0.12365381025642176,0.8698666666666667,366534.93973333336 +10,0.12142116642590457,0.8653333333333333,363466.2010666667 +11,0.12170818110969654,0.8693333333333333,364115.6344 +12,0.12255521507401523,0.8776,365211.98346666666 +13,0.12385116724330776,0.8866666666666667,367475.3904 +14,0.12457270899567423,0.8877333333333334,368004.37173333333 +15,0.12435643242016571,0.8917333333333334,367821.9016 +16,0.12234740823517398,0.8682666666666666,364962.2170666667 +17,0.1215217295353786,0.8693333333333333,363811.3288 +18,0.12180467919713119,0.864,363772.01146666665 +19,0.12330631747328055,0.8904,366890.40106666664 +20,0.12412958521566664,0.8941333333333333,367450.84266666666 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/metadata.txt" new file mode 100644 index 000000000..139e17467 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T07:42:57.583 +hostname=a02r02n05 +julia=1.12.6 +slurm_job=22993229 +cell=35 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/summary.csv" new file mode 100644 index 000000000..8af492497 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/035/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,1024,1.875,0.337485,31036,5000,75000,0.34884723859151207,0.12292066601877494,0.015593426187335736,0.96896538021711,128891.66029130295,0.012746666666666667,0.9039066666666666,0.8784133333333333,365742.78844,0.0002769788727082797,0.002515838018568073,6.972345851653903,20,65727.90649199486,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/blocks.csv" new file mode 100644 index 000000000..00f80f05c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.12256734783114807,0.8616,365271.5146666667 +2,0.12348467071122626,0.8725333333333334,366136.28106666665 +3,0.12317819927598951,0.8802666666666666,366235.552 +4,0.12163038044237376,0.8717333333333334,363911.74693333334 +5,0.12459863686639194,0.8869333333333334,367560.2896 +6,0.12108208757416385,0.8714666666666666,362811.44053333334 +7,0.11972721995154086,0.8432,360868.8114666667 +8,0.12351181093287887,0.8925333333333333,366849.39866666665 +9,0.12237617317991487,0.8712,365044.53626666666 +10,0.12285360820037215,0.8858666666666667,366067.9976 +11,0.12351538984023888,0.8872,367018.5405333333 +12,0.12252306095903817,0.8714666666666666,364929.82453333336 +13,0.11955538270001805,0.84,360583.456 +14,0.12280972327293421,0.8829333333333333,365942.06666666665 +15,0.12143129033186803,0.8922666666666667,363967.1645333333 +16,0.12085998166207962,0.8602666666666666,362716.9341333333 +17,0.12212380746363488,0.8784,364821.30586666666 +18,0.12194502543967004,0.876,364036.4949333333 +19,0.12397244412412692,0.8858666666666667,367139.672 +20,0.12064108911687606,0.8538666666666667,362354.1528 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/metadata.txt" new file mode 100644 index 000000000..3c5119a31 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T07:59:06.064 +hostname=a01r01n01 +julia=1.12.6 +slurm_job=22993263 +cell=36 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/summary.csv" new file mode 100644 index 000000000..e4fd850a1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/036/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,1024,1.875,0.337485,42038,5000,75000,0.3478322871907552,0.12221936649382426,0.015425721380202718,0.968354942889253,128156.29444062826,0.013586666666666667,0.9004533333333333,0.87328,364713.35904,0.0003060168698841531,0.0033688549428152895,7.101440716082161,20,65422.57219004631,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/blocks.csv" new file mode 100644 index 000000000..81319ef3c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.005698430773960126,-1.982,231257.02 +2,0.0054682253324374415,-1.975,218519.579 +3,0.005822800364371915,-1.965,218926.049 +4,0.00590246753940346,-1.971,218333.874 +5,0.005721299422632001,-1.976,221463.202 +6,0.0054352172069957305,-1.982,213554.466 +7,0.004729526235387766,-1.978,199784.461 +8,0.005628724587190618,-1.982,219480.216 +9,0.005816015936421081,-1.96,217275.944 +10,0.005714851078798802,-1.978,211264.023 +11,0.005498743997273095,-1.984,217500.862 +12,0.0055050544751209145,-1.984,213195.263 +13,0.005453162620414332,-1.966,216676.779 +14,0.006430384416142488,-1.949,233670.722 +15,0.005700093345310051,-1.972,214594.196 +16,0.005393932530307211,-1.974,215436.94 +17,0.005593473180879527,-1.98,213720.136 +18,0.0050928783718229625,-1.973,204733.083 +19,0.005813203289041212,-1.966,213362.072 +20,0.005228453269657394,-1.978,212567.78 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/metadata.txt" new file mode 100644 index 000000000..8ab8dab0f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T09:17:24.409 +hostname=a02r01n07 +julia=1.12.6 +slurm_job=22996177 +cell=38 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/summary.csv" new file mode 100644 index 000000000..1ac40acdf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/038/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,2048,1.875,0.336485,42040,5000,20000,0.060617010307312015,0.005582346898678406,8.265790000507079e-5,0.3770068788981174,23414.059926514434,0.9873,0.00085,-1.97375,216265.83335,7.68762568856026e-5,0.002002465585485208,1.6121555925842432,20,55496.114448070526,3.999999999999999 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/blocks.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/blocks.csv" new file mode 100644 index 000000000..56540cdef --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/blocks.csv" @@ -0,0 +1,21 @@ +block,m2,Rp,C1 +1,0.14573030971365805,0.8717333333333334,398619.0288 +2,0.1475827508049959,0.888,401045.21493333334 +3,0.14592114067374107,0.8786666666666667,399205.78266666667 +4,0.14612200898886077,0.8794666666666666,398574.1728 +5,0.14621712842117898,0.884,398765.22346666665 +6,0.14263653789989378,0.8434666666666667,393896.68213333335 +7,0.14560727241413843,0.8778666666666667,398078.2733333333 +8,0.14481671806332597,0.8650666666666667,396955.5773333333 +9,0.14597064603673449,0.8672,398925.812 +10,0.14551164307742243,0.8776,398830.52293333336 +11,0.14532451105361882,0.8746666666666667,398170.2917333333 +12,0.1481894221458652,0.8986666666666666,401813.8418666667 +13,0.14480662800598074,0.8829333333333333,397363.4992 +14,0.14763262659491738,0.8901333333333333,400904.5968 +15,0.14485690339354623,0.8437333333333333,396720.0168 +16,0.14752122639708298,0.8952,400709.3008 +17,0.14914143491808401,0.8933333333333333,403068.0909333333 +18,0.14713961375593984,0.888,400378.02053333336 +19,0.14576261679753466,0.8709333333333333,398330.36453333334 +20,0.14713415130456173,0.8906666666666667,400699.09973333334 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/metadata.txt" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/metadata.txt" new file mode 100644 index 000000000..5a03894a7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/metadata.txt" @@ -0,0 +1,6 @@ +timestamp=2026-07-30T08:37:46.622 +hostname=a02r07n05 +julia=1.12.6 +slurm_job=23008198 +cell=43 +role=crossing diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/summary.csv" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/summary.csv" new file mode 100644 index 000000000..141b9b2ce --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/cells/043/summary.csv" @@ -0,0 +1,2 @@ +role,L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ +crossing,1024,2.0,0.344939,31044,5000,75000,0.3806627252960205,0.14618126452305408,0.021984731203921505,0.9719910559446567,153282.16562852595,0.012506666666666666,0.90308,0.8780666666666667,399052.67066666664,0.00032672945543964037,0.0033559583043224583,6.505512104438663,20,39793.58270406723,3.9999999999999996 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_1.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_1.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_1.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_1.out" new file mode 100644 index 000000000..89226073a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_1.out" @@ -0,0 +1 @@ +SUCCESS cell=1 role=critical L=768 sigma=1.75 beta=0.329136 seed=31002 meas=100000 Rp=-0.4632 Qm=0.7408996962187503 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_10.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_10.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_10.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_10.out" new file mode 100644 index 000000000..ad07b3353 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_10.out" @@ -0,0 +1 @@ +SUCCESS cell=10 role=critical L=768 sigma=1.875 beta=0.336985 seed=42012 meas=100000 Rp=-0.26977 Qm=0.7875056182089077 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_11.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_11.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_11.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_11.out" new file mode 100644 index 000000000..e3ce3ee59 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_11.out" @@ -0,0 +1 @@ +SUCCESS cell=11 role=critical L=1024 sigma=1.875 beta=0.336985 seed=31012 meas=75000 Rp=-0.23136 Qm=0.7989655689840677 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_12.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_12.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_12.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_12.out" new file mode 100644 index 000000000..8df114431 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_12.out" @@ -0,0 +1 @@ +SUCCESS cell=12 role=critical L=1024 sigma=1.875 beta=0.336985 seed=42014 meas=75000 Rp=-0.2394533333333333 Qm=0.796432899008798 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_13.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_13.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_13.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_13.out" new file mode 100644 index 000000000..962804c30 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_13.out" @@ -0,0 +1 @@ +SUCCESS cell=13 role=critical L=1536 sigma=1.875 beta=0.336985 seed=31014 meas=35000 Rp=-0.2049428571428572 Qm=0.803803499860995 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_14.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_14.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_14.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_14.out" new file mode 100644 index 000000000..6269a0ae3 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_14.out" @@ -0,0 +1 @@ +SUCCESS cell=14 role=critical L=1536 sigma=1.875 beta=0.336985 seed=42016 meas=35000 Rp=-0.24551428571428568 Qm=0.7961792727342135 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_15.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_15.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_15.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_15.out" new file mode 100644 index 000000000..433663acc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_15.out" @@ -0,0 +1 @@ +SUCCESS cell=15 role=critical L=2048 sigma=1.875 beta=0.336985 seed=31016 meas=20000 Rp=-0.17824999999999996 Qm=0.8041562579358191 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_16.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_16.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_16.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_16.out" new file mode 100644 index 000000000..a5c79668b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_16.out" @@ -0,0 +1 @@ +SUCCESS cell=16 role=critical L=2048 sigma=1.875 beta=0.336985 seed=42018 meas=20000 Rp=-0.19880000000000003 Qm=0.807630946484263 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_17.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_17.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_17.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_17.out" new file mode 100644 index 000000000..342d2d446 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_17.out" @@ -0,0 +1 @@ +SUCCESS cell=17 role=critical L=768 sigma=2.0 beta=0.344439 seed=31018 meas=100000 Rp=-0.11013 Qm=0.8228757068487897 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_18.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_18.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_18.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_18.out" new file mode 100644 index 000000000..58ba6dd55 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_18.out" @@ -0,0 +1 @@ +SUCCESS cell=18 role=critical L=768 sigma=2.0 beta=0.344439 seed=42020 meas=100000 Rp=-0.13049000000000005 Qm=0.8185476499776712 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_19.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_19.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_19.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_19.out" new file mode 100644 index 000000000..d6f9eaea9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_19.out" @@ -0,0 +1 @@ +SUCCESS cell=19 role=critical L=1024 sigma=2.0 beta=0.344439 seed=31020 meas=75000 Rp=-0.11151999999999995 Qm=0.8227614706443894 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_2.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_2.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_2.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_2.out" new file mode 100644 index 000000000..8e9ab942f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_2.out" @@ -0,0 +1 @@ +SUCCESS cell=2 role=critical L=768 sigma=1.75 beta=0.329136 seed=42004 meas=100000 Rp=-0.4497999999999999 Qm=0.7417987396391582 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_20.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_20.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_20.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_20.out" new file mode 100644 index 000000000..c966d24cf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_20.out" @@ -0,0 +1 @@ +SUCCESS cell=20 role=critical L=1024 sigma=2.0 beta=0.344439 seed=42022 meas=75000 Rp=-0.14135999999999999 Qm=0.8176988236840834 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_21.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_21.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_21.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_21.out" new file mode 100644 index 000000000..7e1dbc5c7 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_21.out" @@ -0,0 +1 @@ +SUCCESS cell=21 role=critical L=1536 sigma=2.0 beta=0.344439 seed=31022 meas=35000 Rp=-0.07605714285714293 Qm=0.831999783725998 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_22.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_22.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_22.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_22.out" new file mode 100644 index 000000000..dd3d38d19 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_22.out" @@ -0,0 +1 @@ +SUCCESS cell=22 role=critical L=1536 sigma=2.0 beta=0.344439 seed=42024 meas=35000 Rp=-0.10542857142857143 Qm=0.8236757762409243 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_23.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_23.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_23.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_23.out" new file mode 100644 index 000000000..bbdb61cb5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_23.out" @@ -0,0 +1 @@ +SUCCESS cell=23 role=critical L=2048 sigma=2.0 beta=0.344439 seed=31024 meas=20000 Rp=-0.07800000000000001 Qm=0.8336301793908373 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_24.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_24.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_24.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_24.out" new file mode 100644 index 000000000..231ee57fc --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_24.out" @@ -0,0 +1 @@ +SUCCESS cell=24 role=critical L=2048 sigma=2.0 beta=0.344439 seed=42026 meas=20000 Rp=-0.07425000000000004 Qm=0.835843431468018 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_25.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_25.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_25.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_25.out" new file mode 100644 index 000000000..da08218e8 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_25.out" @@ -0,0 +1 @@ +SUCCESS cell=25 role=critical L=768 sigma=2.5 beta=0.369446 seed=31026 meas=100000 Rp=0.008529999999999982 Qm=0.851514432569867 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_26.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_26.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_26.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_26.out" new file mode 100644 index 000000000..8a119b761 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_26.out" @@ -0,0 +1 @@ +SUCCESS cell=26 role=critical L=768 sigma=2.5 beta=0.369446 seed=42028 meas=100000 Rp=-0.0021599999999999953 Qm=0.8505262371093522 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_27.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_27.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_27.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_27.out" new file mode 100644 index 000000000..442705f3b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_27.out" @@ -0,0 +1 @@ +SUCCESS cell=27 role=critical L=1024 sigma=2.5 beta=0.369446 seed=31028 meas=75000 Rp=0.04137333333333332 Qm=0.8561269116975582 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_28.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_28.err" new file mode 100644 index 000000000..e74c531db --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_28.err" @@ -0,0 +1 @@ +slurmstepd: error: *** JOB 22988990 ON a02r08n05 CANCELLED AT 2026-07-30T05:42:36 DUE TO TIME LIMIT *** diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_28.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_28.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_29.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_29.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_29.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_29.out" new file mode 100644 index 000000000..fb2ea96e5 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_29.out" @@ -0,0 +1 @@ +SUCCESS cell=29 role=critical L=1536 sigma=2.5 beta=0.369446 seed=31030 meas=35000 Rp=0.02671428571428569 Qm=0.8551460088953206 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_3.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_3.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_3.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_3.out" new file mode 100644 index 000000000..da7b80e00 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_3.out" @@ -0,0 +1 @@ +SUCCESS cell=3 role=critical L=1024 sigma=1.75 beta=0.329136 seed=31004 meas=75000 Rp=-0.4286533333333334 Qm=0.7522441117697194 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_30.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_30.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_30.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_30.out" new file mode 100644 index 000000000..b850768f1 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_30.out" @@ -0,0 +1 @@ +SUCCESS cell=30 role=critical L=1536 sigma=2.5 beta=0.369446 seed=42032 meas=35000 Rp=-0.007885714285714274 Qm=0.8500079288284916 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_31.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_31.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_31.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_31.out" new file mode 100644 index 000000000..1fb100365 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_31.out" @@ -0,0 +1 @@ +SUCCESS cell=31 role=critical L=2048 sigma=2.5 beta=0.369446 seed=31032 meas=20000 Rp=0.010650000000000048 Qm=0.8535133412878155 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_32.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_32.err" new file mode 100644 index 000000000..dc9886f5d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_32.err" @@ -0,0 +1 @@ +slurmstepd: error: *** JOB 22989263 ON a02r07n03 CANCELLED AT 2026-07-30T07:57:38 DUE TO TIME LIMIT *** diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_32.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_32.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_33.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_33.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_33.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_33.out" new file mode 100644 index 000000000..758a50718 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_33.out" @@ -0,0 +1 @@ +SUCCESS cell=33 role=crossing L=1024 sigma=1.875 beta=0.336485 seed=31034 meas=75000 Rp=-1.7181866666666668 Qm=0.47627187164945445 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_34.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_34.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_34.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_34.out" new file mode 100644 index 000000000..e377b0aae --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_34.out" @@ -0,0 +1 @@ +SUCCESS cell=34 role=crossing L=1024 sigma=1.875 beta=0.336485 seed=42036 meas=75000 Rp=-1.7049466666666666 Qm=0.48065976122057535 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_35.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_35.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_35.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_35.out" new file mode 100644 index 000000000..09329a1d9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_35.out" @@ -0,0 +1 @@ +SUCCESS cell=35 role=crossing L=1024 sigma=1.875 beta=0.337485 seed=31036 meas=75000 Rp=0.8784133333333333 Qm=0.96896538021711 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_36.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_36.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_36.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_36.out" new file mode 100644 index 000000000..367ec2aa0 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_36.out" @@ -0,0 +1 @@ +SUCCESS cell=36 role=crossing L=1024 sigma=1.875 beta=0.337485 seed=42038 meas=75000 Rp=0.87328 Qm=0.968354942889253 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_37.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_37.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_37.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_37.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_38.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_38.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_38.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_38.out" new file mode 100644 index 000000000..7140d61ab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_38.out" @@ -0,0 +1 @@ +SUCCESS cell=38 role=crossing L=2048 sigma=1.875 beta=0.336485 seed=42040 meas=20000 Rp=-1.97375 Qm=0.3770068788981174 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_39.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_39.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_39.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_39.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_4.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_4.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_4.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_4.out" new file mode 100644 index 000000000..6a9acaa3d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_4.out" @@ -0,0 +1 @@ +SUCCESS cell=4 role=critical L=1024 sigma=1.75 beta=0.329136 seed=42006 meas=75000 Rp=-0.43022666666666665 Qm=0.7481975639652961 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_40.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_40.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_40.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_40.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_41.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_41.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_41.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_41.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_42.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_42.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_42.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_42.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_43.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_43.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_43.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_43.out" new file mode 100644 index 000000000..5645ae8c2 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_43.out" @@ -0,0 +1 @@ +SUCCESS cell=43 role=crossing L=1024 sigma=2.0 beta=0.344939 seed=31044 meas=75000 Rp=0.8780666666666667 Qm=0.9719910559446567 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_44.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_44.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_44.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_44.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_45.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_45.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_45.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_45.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_46.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_46.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_46.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_46.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_47.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_47.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_47.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_47.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_48.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_48.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_48.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_48.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_5.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_5.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_5.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_5.out" new file mode 100644 index 000000000..dc697f660 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_5.out" @@ -0,0 +1 @@ +SUCCESS cell=5 role=critical L=1536 sigma=1.75 beta=0.329136 seed=31006 meas=35000 Rp=-0.36699999999999994 Qm=0.7615145125456448 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_6.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_6.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_6.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_6.out" new file mode 100644 index 000000000..a3c1f30ab --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_6.out" @@ -0,0 +1 @@ +SUCCESS cell=6 role=critical L=1536 sigma=1.75 beta=0.329136 seed=42008 meas=35000 Rp=-0.3991428571428572 Qm=0.7537290461806204 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_7.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_7.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_7.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_7.out" new file mode 100644 index 000000000..88b550d0d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_7.out" @@ -0,0 +1 @@ +SUCCESS cell=7 role=critical L=2048 sigma=1.75 beta=0.329136 seed=31008 meas=20000 Rp=-0.37835 Qm=0.7627264242358511 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_8.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_8.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_8.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_8.out" new file mode 100644 index 000000000..6ba9d8ea9 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_8.out" @@ -0,0 +1 @@ +SUCCESS cell=8 role=critical L=2048 sigma=1.75 beta=0.329136 seed=42010 meas=20000 Rp=-0.37525000000000003 Qm=0.7670005226188481 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_9.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_9.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_9.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_9.out" new file mode 100644 index 000000000..4014c8a72 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/22972071_9.out" @@ -0,0 +1 @@ +SUCCESS cell=9 role=critical L=768 sigma=1.875 beta=0.336985 seed=31010 meas=100000 Rp=-0.23901 Qm=0.7935099169749886 diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_28.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_28.err" new file mode 100644 index 000000000..32a29661a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_28.err" @@ -0,0 +1 @@ +slurmstepd: error: *** JOB 23016111 ON a01r03n04 CANCELLED AT 2026-07-30T09:17:34 *** diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_28.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_28.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_32.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_32.err" new file mode 100644 index 000000000..ea2f65061 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_32.err" @@ -0,0 +1 @@ +slurmstepd: error: *** JOB 23016110 ON a02r02n05 CANCELLED AT 2026-07-30T09:17:34 *** diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_32.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016110_32.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_28.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_28.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_28.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_28.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_32.err" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_32.err" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_32.out" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/results/track_a_large_20260728/logs/23016123_32.out" new file mode 100644 index 000000000..e69de29bb diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_clock_crosscheck.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_clock_crosscheck.jl" new file mode 100644 index 000000000..4ec46fe51 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_clock_crosscheck.jl" @@ -0,0 +1,69 @@ +#!/usr/bin/env julia + +using Statistics, Printf + +function rows(path) + lines=readlines(path); header=split(lines[1],',') + [Dict(header[i]=>v for (i,v) in enumerate(split(line,','))) + for line in lines[2:end] if !isempty(strip(line))] +end + +function cell_data(root) + out=NamedTuple[] + isdir(joinpath(root,"cells")) || return out + for (dir,_,files) in walkdir(joinpath(root,"cells")) + all(x->x in files,("summary.csv","blocks.csv")) || continue + s=only(rows(joinpath(dir,"summary.csv"))) + b=rows(joinpath(dir,"blocks.csv")) + L=parse(Int,s["L"]); sigma=parse(Float64,s["sigma"]) + qblocks=[parse(Float64,x["m2"])^2/parse(Float64,x["m4"]) for x in b] + chiblocks=[L^2*parse(Float64,x["m2"]) for x in b] + push!(out,(;L,sigma,seed=parse(Int,s["seed"]), + Qm=parse(Float64,s["Qm"]),chi=parse(Float64,s["chi"]), + tau=parse(Float64,s["tau_m2"]),qblocks,chiblocks)) + end + out +end + +function fk_data(path) + out=Dict{Tuple{Float64,Int},NamedTuple}() + for r in rows(path) + sigma=parse(Float64,r["sigma"]); L=parse(Int,r["L"]) + beta=parse(Float64,r["beta"]) + bc=Dict(1.875=>0.336985,2.0=>0.344439) + haskey(bc,sigma) || continue + abs(beta-bc[sigma])<1e-9 || continue + out[(sigma,L)]=(;Qm=parse(Float64,r["Qm"]), + Qm_se=parse(Float64,r["Qm_seed_se"]),chi=parse(Float64,r["chi"]), + chi_se=parse(Float64,r["chi_seed_se"])) + end + out +end + +function main(args=ARGS) + length(args)>=2 || error("usage: julia analyze_clock_crosscheck.jl CLOCK_ROOT FK_AGGREGATED [OUT]") + clock=cell_data(args[1]); fk=fk_data(args[2]) + outfile=length(args)>=3 ? args[3] : joinpath(args[1],"comparison.csv") + groups=Dict{Tuple{Float64,Int},Vector{NamedTuple}}() + for x in clock + push!(get!(groups,(x.sigma,x.L),NamedTuple[]),x) + end + open(outfile,"w") do io + println(io,"sigma,L,nseeds,clock_Qm,clock_Qm_se,fk_Qm,fk_Qm_se,Qm_z,clock_chi,clock_chi_se,fk_chi,fk_chi_se,chi_z,tau_max") + for key in sort(collect(keys(groups))) + haskey(fk,key) || continue + g=groups[key]; f=fk[key] + qb=reduce(vcat,[x.qblocks for x in g]) + cb=reduce(vcat,[x.chiblocks for x in g]) + q=mean(x.Qm for x in g); qse=std(qb)/sqrt(length(qb)) + c=mean(x.chi for x in g); cse=std(cb)/sqrt(length(cb)) + qz=(q-f.Qm)/hypot(qse,f.Qm_se) + cz=(c-f.chi)/hypot(cse,f.chi_se) + println(io,join((key[1],key[2],length(g),q,qse,f.Qm,f.Qm_se,qz, + c,cse,f.chi,f.chi_se,cz,maximum(x.tau for x in g)),",")) + end + end + println("wrote $outfile") +end + +abspath(PROGRAM_FILE) == (@__FILE__) && main() diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_distinguishability.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_distinguishability.jl" new file mode 100644 index 000000000..47d9d452a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_distinguishability.jl" @@ -0,0 +1,202 @@ +#!/usr/bin/env julia + +using Statistics, LinearAlgebra, Random, Printf + +const BCS = Dict(1.75=>0.329136, 1.875=>0.336985, + 2.0=>0.344439, 2.5=>0.369446) +const CANDIDATES = [3072,4096,6144,8192,12288,16384,32768,65536] + +parsefloat(x) = parse(Float64, x) + +function csv_rows(path) + lines = readlines(path) + isempty(lines) && return Dict{String,String}[] + header = split(lines[1], ',') + [Dict(header[i]=>v for (i,v) in enumerate(split(line, ','))) + for line in lines[2:end] if !isempty(strip(line))] +end + +function read_cells(root) + rows = Dict{String,String}[] + cells = joinpath(root, "cells") + isdir(cells) || return rows + for (dir, _, files) in walkdir(cells) + "summary.csv" in files || continue + for row in csv_rows(joinpath(dir, "summary.csv")) + get(row, "role", "critical") == "critical" || continue + sigma = parsefloat(row["sigma"]) + abs(parsefloat(row["beta"])-BCS[sigma]) <= 1e-9 || continue + push!(rows, row) + end + end + rows +end + +function aggregate(rows) + groups = Dict{Tuple{Float64,Int,Float64},Vector{Dict{String,String}}}() + for row in rows + key=(parsefloat(row["sigma"]),parse(Int,row["L"]),parsefloat(row["beta"])) + push!(get!(groups,key,Dict{String,String}[]),row) + end + result=NamedTuple[] + for ((sigma,L,beta), rs) in groups, obs in ("Rp","Qm") + vals=parsefloat.([r[obs] for r in rs]) + se=length(vals)>1 ? std(vals)/sqrt(length(vals)) : NaN + push!(result,(;sigma,L,beta,observable=obs,value=mean(vals), + se,nseeds=length(vals))) + end + sort(result,by=x->(x.sigma,x.observable,x.L)) +end + +feature(model,L,q) = model=="power" ? L.^(-q) : 1 ./ log.(L./q) +predict(model,L,p) = p[1] .+ p[2].*feature(model,L,p[3]) + +function grid_values(model,L) + lo,hi = model=="power" ? (0.02,5.0) : (1e-4,minimum(L)*0.999) + exp.(range(log(lo),log(hi),length=600)) +end + +function fit_core(model,L,y,se) + w=1 ./ se + best=(Inf,zeros(3)) + for q in grid_values(model,L) + X=hcat(ones(length(L)),feature(model,L,q)) + coef=(X.*w) \ (y.*w) + chi2=sum(abs2,(y-X*coef)./se) + chi2 < best[1] && (best=(chi2,[coef[1],coef[2],q])) + end + p=best[2] + base=predict(model,L,p) + J=zeros(length(L),3) + for j in 1:3 + step=1e-5*max(1,abs(p[j])) + pp=copy(p); pp[j]+=step + J[:,j]=(predict(model,L,pp)-base)./step + end + cov=pinv((J./se)'*(J./se)) + p,cov,best[1] +end + +function fit_stats(model,L,y,se) + p,cov,chi2=fit_core(model,L,y,se) + n=length(L); k=3 + aic=chi2+2k + aicc=n>k+1 ? aic+2k*(k+1)/(n-k-1) : Inf + bic=chi2+k*log(n) + loo=0.0; failures=0 + for i in eachindex(L) + keep=[j for j in eachindex(L) if j!=i] + try + pp,_,_=fit_core(model,L[keep],y[keep],se[keep]) + loo+=((y[i]-predict(model,[L[i]],pp)[1])/se[i])^2 + catch + failures+=1; loo=Inf + end + end + (;p,cov,chi2,aicc,bic,loo,failures) +end + +function predvar(model,x,p,cov) + g=zeros(3); base=predict(model,[x],p)[1] + for j in 1:3 + step=1e-5*max(1,abs(p[j])) + pp=copy(p); pp[j]+=step + g[j]=(predict(model,[x],pp)[1]-base)/step + end + max(0.0,dot(g,cov*g)) +end + +fmt(x) = x isa AbstractFloat ? @sprintf("%.12g",x) : string(x) +function write_table(path, rows) + isempty(rows) && return + names=collect(keys(rows[1])) + open(path,"w") do io + println(io,join(string.(names),",")) + for row in rows + println(io,join((fmt(getproperty(row,n)) for n in names),",")) + end + end +end + +function main(args=ARGS) + here=@__DIR__ + base=length(args)>=1 ? args[1] : joinpath(here,"..","results","track_a_20260727") + large=length(args)>=2 ? args[2] : joinpath(here,"..","results","track_a_large_20260728") + outdir=length(args)>=3 ? args[3] : joinpath(here,"..","results","track_a_extension_analysis") + nboot=parse(Int,get(ENV,"TRACK_A_BOOTSTRAP","1000")) + rng=MersenneTwister(860029) + agg=aggregate(vcat(read_cells(base),read_cells(large))) + mkpath(outdir) + write_table(joinpath(outdir,"combined_critical.csv"),agg) + extensionfits=NamedTuple[] + for sigma in (1.875,2.0), obs in ("Rp","Qm") + all_data=sort([x for x in agg if x.sigma==sigma && x.observable==obs],by=x->x.L) + positives=[x.se for x in all_data if isfinite(x.se) && x.se>0] + floor=isempty(positives) ? 1e-4 : median(positives)/2 + for maxL in (512,2048) + data=[x for x in all_data if x.L<=maxL] + L=Float64[x.L for x in data]; y=[x.value for x in data] + se=[isfinite(x.se) ? max(floor,x.se) : floor for x in data] + for model in ("power","marginal") + f=fit_stats(model,L,y,se) + push!(extensionfits,(;sigma,observable=obs,Lmin=Int(L[1]), + Lmax=Int(L[end]),n=length(L),model,limit=f.p[1], + p1=f.p[2],p2=f.p[3],chi2=f.chi2)) + end + end + end + write_table(joinpath(outdir,"extension_comparison_fits.csv"),extensionfits) + fits=NamedTuple[]; forecasts=NamedTuple[] + for sigma in sort(unique(x.sigma for x in agg)), obs in ("Rp","Qm") + data=sort([x for x in agg if x.sigma==sigma && x.observable==obs],by=x->x.L) + length(data)>=5 || continue + positives=[x.se for x in data if isfinite(x.se) && x.se>0] + floor=isempty(positives) ? 1e-4 : median(positives)/2 + for first in 1:length(data)-4 + d=data[first:end] + L=Float64[x.L for x in d]; y=[x.value for x in d] + se=[isfinite(x.se) ? max(floor,x.se) : floor for x in d] + fitted=Dict{String,Any}() + for model in ("power","marginal") + try + f=fit_stats(model,L,y,se); fitted[model]=f + limits=Float64[]; bootfail=0 + for _ in 1:nboot + try + p,_,_=fit_core(model,L,y.+randn(rng,length(y)).*se,se) + push!(limits,p[1]) + catch + bootfail+=1 + end + end + q16,q84=isempty(limits) ? (NaN,NaN) : + (quantile(limits,.16),quantile(limits,.84)) + push!(fits,(;sigma,observable=obs,Lmin=Int(L[1]),Lmax=Int(L[end]), + n=length(L),model,limit=f.p[1],p1=f.p[2],p2=f.p[3], + chi2=f.chi2,AICc=f.aicc,BIC=f.bic,LOO_chi2=f.loo, + loo_failures=f.failures,limit_boot_p16=q16, + limit_boot_p84=q84,bootstrap_failures=bootfail)) + catch + end + end + haskey(fitted,"power") && haskey(fitted,"marginal") || continue + fp=fitted["power"]; fm=fitted["marginal"] + futurese=median(se[max(1,end-2):end]) + first3=">65536"; maxz=0.0 + for x in CANDIDATES + delta=abs(predict("power",[x],fp.p)[1]-predict("marginal",[x],fm.p)[1]) + var=predvar("power",x,fp.p,fp.cov)+predvar("marginal",x,fm.p,fm.cov)+futurese^2 + z=var>0 ? delta/sqrt(var) : Inf + maxz=max(maxz,z) + first3==">65536" && z>=3 && (first3=string(x)) + end + push!(forecasts,(;sigma,observable=obs,Lmin=Int(L[1]),Lmax=Int(L[end]), + first_3sigma_L=first3,max_separation_z=maxz,assumed_future_se=futurese)) + end + end + write_table(joinpath(outdir,"model_fits.csv"),fits) + write_table(joinpath(outdir,"distinguishable_size.csv"),forecasts) + println("cells=$(length(read_cells(base))+length(read_cells(large))) aggregated=$(length(agg)) fits=$(length(fits)) forecasts=$(length(forecasts)) out=$outdir") +end + +abspath(PROGRAM_FILE) == (@__FILE__) && main() diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_nn_v3.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_nn_v3.py" new file mode 100644 index 000000000..331e4a130 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_nn_v3.py" @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 +import csv +import math +import random +import sys +from collections import defaultdict +from pathlib import Path + + +def read_blocks(root): + grouped = defaultdict(list) + for path in sorted((root / "cells").glob("*/blocks.csv")): + summary = path.with_name("summary.csv") + if not summary.exists(): + continue + with summary.open() as handle: + meta = next(csv.DictReader(handle)) + L = int(meta["L"]) + with path.open() as handle: + for row in csv.DictReader(handle): + grouped[L].append( + tuple(float(row[k]) for k in ("m2", "m4", "R0", "R2")) + ) + return grouped + + +def observables(rows, L): + n = len(rows) + m2 = sum(r[0] for r in rows) / n + m4 = sum(r[1] for r in rows) / n + r0 = sum(r[2] for r in rows) / n + r2 = sum(r[3] for r in rows) / n + return m2 * m2 / m4, r2 - 2 * r0, L * L * m2 + + +def bootstrap(grouped, nboot=4000, seed=20260730): + rng = random.Random(seed) + point = {L: observables(rows, L) for L, rows in grouped.items()} + samples = {L: [[], [], []] for L in grouped} + etas = [] + sizes = sorted(grouped) + for _ in range(nboot): + current = {} + for L, rows in grouped.items(): + draw = [rows[rng.randrange(len(rows))] for _ in rows] + current[L] = observables(draw, L) + for j, value in enumerate(current[L]): + samples[L][j].append(value) + xs = [math.log(L) for L in sizes] + ys = [math.log(current[L][2]) for L in sizes] + xm = sum(xs) / len(xs) + ym = sum(ys) / len(ys) + slope = sum((x-xm)*(y-ym) for x, y in zip(xs, ys)) / sum( + (x-xm)**2 for x in xs + ) + etas.append(2-slope) + return point, samples, etas + + +def mean_sd(values): + mean = sum(values) / len(values) + sd = math.sqrt(sum((x-mean)**2 for x in values) / (len(values)-1)) + return mean, sd + + +def main(): + root = Path(sys.argv[1] if len(sys.argv) > 1 else "results/nn_v3_20260730") + grouped = read_blocks(root) + if sorted(grouped) != [64, 128, 256]: + raise SystemExit(f"incomplete sizes: {sorted(grouped)}") + point, samples, etas = bootstrap(grouped) + out = root / "analysis" + out.mkdir(exist_ok=True) + with (out / "nn_observables.csv").open("w", newline="") as handle: + writer = csv.writer(handle) + writer.writerow(("L", "observable", "value", "bootstrap_se", "blocks")) + for L in sorted(grouped): + for name, value, draws in zip(("Qm", "Rp", "chi"), point[L], samples[L]): + _, se = mean_sd(draws) + writer.writerow((L, name, value, se, len(grouped[L]))) + eta_mean, eta_se = mean_sd(etas) + with (out / "eta_fit.csv").open("w", newline="") as handle: + writer = csv.writer(handle) + writer.writerow(("Lmin", "Lmax", "eta", "bootstrap_se", "bootstrap_replicas")) + writer.writerow((64, 256, eta_mean, eta_se, len(etas))) + print(f"eta={eta_mean:.8f} +/- {eta_se:.8f}", flush=True) + + +if __name__ == "__main__": + main() diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_partial.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_partial.py" new file mode 100644 index 000000000..5f55b6ffa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_partial.py" @@ -0,0 +1,52 @@ +import csv, glob, math, os, statistics, sys +from collections import defaultdict + +root=sys.argv[1] +out=os.path.join(root,"analysis_partial") +os.makedirs(out,exist_ok=True) +rows=[] +for p in glob.glob(os.path.join(root,"cells","*","summary.csv")): + with open(p,encoding="utf-8") as f: + r=next(csv.DictReader(f)); r={k:float(v) for k,v in r.items()} + r["cell"]=os.path.basename(os.path.dirname(p)); rows.append(r) + +groups=defaultdict(list) +for r in rows: groups[(r["sigma"],int(r["L"]),r["beta"])].append(r) +assert len(rows)==72 and all(len(v)==2 for v in groups.values()) + +with open(os.path.join(out,"aggregated_partial.csv"),"w",newline="",encoding="utf-8") as f: + w=csv.writer(f); w.writerow(["sigma","L","beta","Rp","Rp_seed_se","Qm","Qm_seed_se","chi","tau_m2_max"]) + for k,rs in sorted(groups.items()): + def mean(q): return statistics.mean(r[q] for r in rs) + def se(q): return statistics.stdev(r[q] for r in rs)/math.sqrt(2) + w.writerow([*k,mean("Rp"),se("Rp"),mean("Qm"),se("Qm"),mean("chi"),max(r["tau_m2"] for r in rs)]) + +bcs={1.75:.329136,1.875:.336985,2.0:.344439,2.5:.369446} +def avg(s,L,b,q): return statistics.mean(r[q] for r in groups[(s,L,b)]) +cross=[] +for s,bc in bcs.items(): + for q in ("Rp","Qm"): + for L1,L2 in ((64,128),(128,256)): + xs=sorted(b for ss,ll,b in groups if ss==s and ll==L1) + ds=[avg(s,L1,b,q)-avg(s,L2,b,q) for b in xs] + xm=statistics.mean(xs); dm=statistics.mean(ds) + slope=sum((x-xm)*(d-dm) for x,d in zip(xs,ds))/sum((x-xm)**2 for x in xs) + bx=xm-dm/slope + cross.append((s,q,L1,L2,bx,"interpolated" if min(xs)<=bx<=max(xs) else "unresolved")) +with open(os.path.join(out,"crossings_partial.csv"),"w",newline="",encoding="utf-8") as f: + w=csv.writer(f); w.writerow(["sigma","observable","L","2L","beta_cross","status"]); w.writerows(cross) + +lines=["# Track A partial validation (L <= 256)","", + f"- Complete cells: {len(rows)}/72 expected partial cells", + f"- Maximum tau_int(m2): {max(r['tau_m2'] for r in rows):.3f}", + f"- Maximum |sumJ-4|: {max(abs(r['sumJ']-4) for r in rows):.3e}","", + "## sigma=2.5 central-beta control","", + "| L | Rp | Qm | chi |","|---:|---:|---:|---:|"] +for L in (64,128,256): + rs=groups[(2.5,L,bcs[2.5])] + lines.append(f"| {L} | {statistics.mean(r['Rp'] for r in rs):.6f} | {statistics.mean(r['Qm'] for r in rs):.6f} | {statistics.mean(r['chi'] for r in rs):.3f} |") +lines += ["","## Preliminary crossings","","| sigma | obs | L/2L | beta | status |","|---:|:---:|:---:|---:|:---|"] +for s,q,l1,l2,b,status in cross: + lines.append(f"| {s} | {q} | {l1}/{l2} | {b:.7f} | {status} |") +open(os.path.join(out,"partial_report.md"),"w",encoding="utf-8").write("\n".join(lines)+"\n") +print("\n".join(lines)) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_track_a.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_track_a.jl" new file mode 100644 index 000000000..72d371f23 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/analyze_track_a.jl" @@ -0,0 +1,102 @@ +using Statistics, LinearAlgebra, Printf + +root = length(ARGS)>0 ? ARGS[1] : joinpath(@__DIR__,"..","results","track_a_20260727") +out = joinpath(root,"analysis"); mkpath(out) + +function readsummary(path) + ls=readlines(path); h=split(ls[1],','); v=split(ls[2],',') + Dict(h[i] => parse(Float64,v[i]) for i in eachindex(h)) +end +rows=Dict{String,Float64}[] +for d in readdir(joinpath(root,"cells"); join=true) + p=joinpath(d,"summary.csv"); isfile(p) && push!(rows,readsummary(p)) +end +length(rows)==96 || error("expected 96 cells, found $(length(rows))") + +key(r)=(r["sigma"],Int(r["L"]),r["beta"]) +groups=Dict{Tuple{Float64,Int,Float64},Vector{Dict{String,Float64}}}() +for r in rows; push!(get!(groups,key(r),Dict{String,Float64}[]),r); end + +open(joinpath(out,"aggregated.csv"),"w") do io + println(io,"sigma,L,beta,nseeds,Rp,Rp_seed_se,Qm,Qm_seed_se,chi,chi_seed_se,tau_m2_max") + for (k,rs) in sort(collect(groups); by=first) + vals(name)=[r[name] for r in rs] + se(v)=length(v)>1 ? std(v)/sqrt(length(v)) : NaN + @printf(io,"%.3f,%d,%.6f,%d,%.10g,%.10g,%.10g,%.10g,%.10g,%.10g,%.10g\n", + k[1],k[2],k[3],length(rs),mean(vals("Rp")),se(vals("Rp")), + mean(vals("Qm")),se(vals("Qm")),mean(vals("chi")),se(vals("chi")), + maximum(vals("tau_m2"))) + end +end + +bcs=Dict(1.75=>0.329136,1.875=>0.336985,2.0=>0.344439,2.5=>0.369446) +central=Dict{Tuple{Float64,Int},Dict{String,Float64}}() +for (k,rs) in groups + abs(k[3]-bcs[k[1]])<1e-9 || continue + central[(k[1],k[2])]=Dict(n=>mean(r[n] for r in rs) for n in ("Rp","Qm","chi")) +end + +function linfit(X,y) + b=X\y; resid=y-X*b; rss=sum(abs2,resid) + b,rss +end +function powerfit(L,y) + best=nothing + for w in 0.05:0.01:2.0 + X=hcat(ones(length(L)),L.^(-w)); b,rss=linfit(X,y) + (best===nothing || rssk+1 ? n*log(max(rss,eps())/n)+2k+2k*(k+1)/(n-k-1) : NaN, + bic = n*log(max(rss,eps())/n)+k*log(n)) + +open(joinpath(out,"finite_size_fits.csv"),"w") do io + println(io,"sigma,observable,Lmin,model,Oinf,amplitude,shape,rss,AICc,BIC,status") + for s in sort(collect(keys(bcs))), obs in ("Rp","Qm") + for Lmin in (64,128) + L=Float64[l for l in (64,128,256,512) if l>=Lmin] + y=[central[(s,Int(l))][obs] for l in L] + for (name,f) in (("power",powerfit),("log",logfit)) + z=f(L,y); sc=scores(z.rss,length(L),3) + status=length(L)>3 ? "rankable" : "underdetermined" + @printf(io,"%.3f,%s,%d,%s,%.10g,%.10g,%.10g,%.10g,%.10g,%.10g,%s\n", + s,obs,Lmin,name,z.Oinf,z.a,z.shape,z.rss,sc.aicc,sc.bic,status) + end + end + end +end + +open(joinpath(out,"eta_fits.csv"),"w") do io + println(io,"sigma,Lmin,eta,amplitude,rss") + for s in sort(collect(keys(bcs))), Lmin in (64,128) + L=Float64[l for l in (64,128,256,512) if l>=Lmin] + y=log.([central[(s,Int(l))]["chi"] for l in L]) + b,rss=linfit(hcat(ones(length(L)),log.(L)),y) + @printf(io,"%.3f,%d,%.10g,%.10g,%.10g\n",s,Lmin,2-b[2],exp(b[1]),rss) + end +end + +open(joinpath(out,"crossings.csv"),"w") do io + println(io,"sigma,observable,L,2L,beta_cross,status") + for s in sort(collect(keys(bcs))), obs in ("Rp","Qm"), (L1,L2) in ((64,128),(128,256),(256,512)) + betas=sort(unique(k[3] for k in keys(groups) if k[1]==s && k[2]==L1)) + d=Float64[] + for b in betas + push!(d,mean(r[obs] for r in groups[(s,L1,b)])-mean(r[obs] for r in groups[(s,L2,b)])) + end + X=hcat(ones(3),betas); coef=X\d; bc=-coef[1]/coef[2] + ok=minimum(betas)<=bc<=maximum(betas) + @printf(io,"%.3f,%s,%d,%d,%.10g,%s\n",s,obs,L1,L2,bc,ok ? "interpolated" : "unresolved") + end +end + +println("analysis complete: $(joinpath(root,"analysis"))") diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/clock_point.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/clock_point.jl" new file mode 100644 index 000000000..0ebbaf52b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/clock_point.jl" @@ -0,0 +1,52 @@ +include("../src/LongRangeIsingClock.jl") +using .LongRangeIsingClock, Dates + +id = parse(Int, get(ENV, "SLURM_ARRAY_TASK_ID", get(ENV, "CELL_ID", "1"))) +sigmas = (1.875, 2.0) +Ls = (64, 128, 256, 512) +seeds = (51001, 62002) +bcs = Dict(1.875=>0.336985, 2.0=>0.344439) +therm_by_L = Dict(64=>50_000, 128=>100_000, 256=>200_000, 512=>300_000) +meas_by_L = Dict(64=>1_000_000, 128=>1_000_000, + 256=>1_000_000, 512=>1_000_000) + +idx = id-1 +seed = seeds[idx%2+1] + id +idx ÷= 2 +L = Ls[idx%4+1] +idx ÷= 4 +sigma = sigmas[idx%2+1] +beta = bcs[sigma] +therm = parse(Int, get(ENV, "THERM_SWEEPS", string(therm_by_L[L]))) +meas = parse(Int, get(ENV, "MEAS_SWEEPS", string(meas_by_L[L]))) +sample_every = parse(Int, get(ENV, "SAMPLE_EVERY", "1")) +root = get(ENV, "RUN_ROOT", + joinpath(@__DIR__, "..", "results", "clock_crosscheck_20260729")) +cell = joinpath(root, "cells", lpad(id, 3, '0')) +mkpath(cell) + +validation = validate_clock() +r = run_clock(L=L, sigma=sigma, beta=beta, seed=seed, therm=therm, + meas=meas, sample_every=sample_every) + +open(joinpath(cell, "summary.csv"), "w") do io + println(io, join(keys(r.summary), ",")) + println(io, join(values(r.summary), ",")) +end +open(joinpath(cell, "blocks.csv"), "w") do io + println(io, "block,m2,m4") + for i in eachindex(r.block_m2) + println(io, "$i,$(r.block_m2[i]),$(r.block_m4[i])") + end +end +open(joinpath(cell, "metadata.txt"), "w") do io + println(io, "timestamp=$(now())") + println(io, "hostname=$(gethostname())") + println(io, "julia=$(VERSION)") + println(io, "slurm_job=$(get(ENV, "SLURM_JOB_ID", "local"))") + println(io, "cell=$id") + println(io, "clock_acceptance_test=$(validation.clock_acceptance)") + println(io, "direct_acceptance_test=$(validation.direct_acceptance)") + println(io, "validation_tolerance=$(validation.tolerance)") +end +println("SUCCESS cell=$id L=$L sigma=$sigma Qm=$(r.summary.Qm) chi=$(r.summary.chi) tau=$(r.summary.tau_m2)") diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/large_point.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/large_point.jl" new file mode 100644 index 000000000..963864b0b --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/large_point.jl" @@ -0,0 +1,53 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK, Dates + +id=parse(Int,get(ENV,"SLURM_ARRAY_TASK_ID",get(ENV,"CELL_ID","1"))) +sigmas=(1.75,1.875,2.0,2.5) +Ls=(768,1024,1536,2048) +seeds=(31001,42002) +bcs=Dict(1.75=>0.329136,1.875=>0.336985,2.0=>0.344439,2.5=>0.369446) +meas_by_L=Dict(768=>100_000,1024=>75_000,1536=>35_000,2048=>20_000) + +if id <= 32 + idx=id-1 + seed=seeds[idx%2+1]+id; idx÷=2 + L=Ls[idx%4+1]; idx÷=4 + sigma=sigmas[idx%4+1] + beta=bcs[sigma] + role="critical" +else + # 16 narrow-window cells: sigma=(1.875,2.0), L=(1024,2048), + # offset=(-0.0005,+0.0005), two seeds. + idx=id-33 + seed=seeds[idx%2+1]+id; idx÷=2 + off=(-0.0005,0.0005)[idx%2+1]; idx÷=2 + L=(1024,2048)[idx%2+1]; idx÷=2 + sigma=(1.875,2.0)[idx%2+1] + beta=bcs[sigma]+off + role="crossing" +end + +therm=parse(Int,get(ENV,"THERM_SWEEPS","5000")) +meas=parse(Int,get(ENV,"MEAS_SWEEPS",string(meas_by_L[L]))) +root=get(ENV,"RUN_ROOT",joinpath(@__DIR__,"..","results","track_a_large_20260728")) +cell=joinpath(root,"cells",lpad(id,3,'0')); mkpath(cell) +r=run_chain(L=L,sigma=sigma,beta=beta,seed=seed,therm=therm,meas=meas,return_blocks=true) + +open(joinpath(cell,"summary.csv"),"w") do io + println(io,"role,"*join(keys(r.summary),",")) + println(io,role*","*join(values(r.summary),",")) +end +open(joinpath(cell,"blocks.csv"),"w") do io + println(io,"block,m2,Rp,C1") + for i in eachindex(r.block_m2) + println(io,"$i,$(r.block_m2[i]),$(r.block_rp[i]),$(r.block_c1[i])") + end +end +open(joinpath(cell,"metadata.txt"),"w") do io + jobid=get(ENV,"SLURM_JOB_ID","local") + println(io,"timestamp=$(now())"); println(io,"hostname=$(gethostname())") + println(io,"julia=$(VERSION)"); println(io,"slurm_job=$jobid") + println(io,"cell=$id"); println(io,"role=$role") +end +println("SUCCESS cell=$id role=$role L=$L sigma=$sigma beta=$beta seed=$seed meas=$meas Rp=$(r.summary.Rp) Qm=$(r.summary.Qm)") +flush(stdout) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/make_final_report.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/make_final_report.py" new file mode 100644 index 000000000..78319f80a --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/make_final_report.py" @@ -0,0 +1,62 @@ +import csv, math, os, sys +from collections import defaultdict + +root=sys.argv[1]; analysis=os.path.join(root,"analysis") +rows=list(csv.DictReader(open(os.path.join(analysis,"aggregated.csv"),encoding="utf-8"))) +cross=list(csv.DictReader(open(os.path.join(analysis,"crossings.csv"),encoding="utf-8"))) +eta=list(csv.DictReader(open(os.path.join(analysis,"eta_fits.csv"),encoding="utf-8"))) +bcs={1.75:.329136,1.875:.336985,2.0:.344439,2.5:.369446} +central=[] +for r in rows: + s=float(r["sigma"]) + if abs(float(r["beta"])-bcs[s])<1e-9: central.append(r) + +colors={1.75:"#2563eb",1.875:"#16a34a",2.0:"#dc2626",2.5:"#7c3aed"} +panels=[("Rp",-0.65,.08),("Qm",.68,.87),("chi_scaled",.20,.45)] +W,H=1200,400; svg=[f'', +'', +'Track A critical finite-size data (published beta_c)'] +for p,(q,y0,y1) in enumerate(panels): + ox=55+p*400; oy=45; pw=325; ph=280 + svg.append(f'') + label="chi/L^2" if q=="chi_scaled" else q + svg.append(f'{label}') + svg.append(f'L (log2)') + for s in bcs: + rr=sorted((r for r in central if float(r["sigma"])==s),key=lambda r:float(r["L"])) + pts=[] + for r in rr: + L=float(r["L"]); v=float(r["chi"])/(L*L) if q=="chi_scaled" else float(r[q]) + x=ox+(math.log2(L)-6)/3*pw; y=oy+ph-(v-y0)/(y1-y0)*ph; pts.append((x,y)) + svg.append(f'') + for x,y in pts: svg.append(f'') + svg.append(f'sigma={s}') +svg.append('') +open(os.path.join(analysis,"critical_finite_size.svg"),"w",encoding="utf-8").write("\n".join(svg)) + +def val(s,L,q): + r=next(r for r in central if float(r["sigma"])==s and int(float(r["L"]))==L) + return float(r[q]) +lines=["# Issue #86 Track A reproduction report","", +"## Data integrity","", +"- Slurm array 22958313: 96/96 cells completed with exit code 0:0.", +"- 96 summaries, 96 raw-block files, 96 metadata files, and zero non-empty stderr logs.", +"- Each cell used 10,000 thermalization and 100,000 measurement sweeps with two independent seeds per point.", +"- Coupling normalization errors are at floating-point roundoff.","", +"## Critical finite-size values","", +"| sigma | Rp(L=64) | Rp(128) | Rp(256) | Rp(512) | Qm(512) | eta, L>=64 | eta, L>=128 |", +"|---:|---:|---:|---:|---:|---:|---:|---:|"] +for s in bcs: + e64=next(float(r["eta"]) for r in eta if float(r["sigma"])==s and int(r["Lmin"])==64) + e128=next(float(r["eta"]) for r in eta if float(r["sigma"])==s and int(r["Lmin"])==128) + lines.append(f"| {s} | {val(s,64,'Rp'):.5f} | {val(s,128,'Rp'):.5f} | {val(s,256,'Rp'):.5f} | {val(s,512,'Rp'):.5f} | {val(s,512,'Qm'):.5f} | {e64:.4f} | {e128:.4f} |") +lines += ["","## Assessment","", +"The finite-size trends are reproduced: Rp and Qm vary smoothly with L; sigma=2.5 approaches the short-range anchors (Rp=0, Qm=0.857, eta=0.25), while sigma<=2 remains visibly separated at L=512.", +"At sigma=1.875, L=512 gives Rp=-0.27176 and Qm=0.78523, moving toward the published thermodynamic estimates -0.207(9) and 0.815(8). The school-scale eta estimates (0.3290 using L>=64 and 0.3204 using L>=128) remain above the published 0.293(3), demonstrating the stated strong finite-size corrections.", +"The unrestricted three-parameter correction fits are weakly identified with only four sizes; after dropping L=64 they are underdetermined. Power and logarithmic corrections produce model-dependent limits, and AICc is undefined for n=4,k=3. BIC is reported, but it is not sufficient for a stable boundary verdict.", +"", +"**Locked conclusion: finite-size reproduction successful; thermodynamic discrimination between the competing crossover scenarios is inconclusive at L<=512.**", +"", +"This follows Issue #86's no-one-fit rule and is not a failure: the raw data reproduce the expected school-scale drift, but do not justify selecting a thermodynamic scenario."] +open(os.path.join(analysis,"final_report.md"),"w",encoding="utf-8").write("\n".join(lines)+"\n") +print("\n".join(lines)) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_control.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_control.jl" new file mode 100644 index 000000000..1a2cf02bf --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_control.jl" @@ -0,0 +1,7 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK +for L in (8,16,32) + r=run_chain(L=L,sigma=50.0,beta=log(1+sqrt(2))/2,seed=700+L, + therm=2000,meas=20000) + println(r); flush(stdout) +end diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_cell.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_cell.py" new file mode 100644 index 000000000..e8a76046c --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_cell.py" @@ -0,0 +1,120 @@ +#!/usr/bin/env python +"""Run one strict nearest-neighbor FK cell from the parameter-scan run spec. + +The SCNet login image provides Python 2.7, so this small orchestration wrapper +is deliberately compatible with both Python 2.7 and Python 3. All numerical +work is performed by Julia. +""" + +from __future__ import print_function + +import csv +import io +import json +import os +import subprocess +import sys +import tempfile + + +def numeric(value): + try: + return int(value) + except ValueError: + try: + return float(value) + except ValueError: + return value + + +def main(): + repo = os.getcwd() + spec_path = os.environ["HARNESS_RUN_SPEC"] + if not os.path.isabs(spec_path): + spec_path = os.path.join(repo, spec_path) + with io.open(spec_path, encoding="utf-8") as stream: + spec = json.load(stream) + + task_id = int(os.environ.get("SLURM_ARRAY_TASK_ID", os.environ.get("HARNESS_CELL_INDEX", "1"))) + if not 1 <= task_id <= len(spec["cells"]): + raise SystemExit("array task {0} outside 1..{1}".format(task_id, len(spec["cells"]))) + planned = spec["cells"][task_id - 1] + params = planned["params"] + shared = spec["settings"] + L = int(params["L"]) + seed = int(params["seed"]) + therm = int(shared["thermalization_sweeps_by_size"][str(L)]) + meas = int(shared["measurement_sweeps_by_size"][str(L)]) + blocks = int(shared["blocks"]) + + run_dir = spec["run_dir"] + if not os.path.isabs(run_dir): + run_dir = os.path.join(repo, run_dir) + cell_dir = os.path.join(run_dir, "cells", planned["cell_id"]) + if not os.path.isdir(cell_dir): + os.makedirs(cell_dir) + + env = os.environ.copy() + env.update( + { + "NN_CELL_ID": str(planned["cell_id"]), + "NN_L": str(L), + "NN_SEED": str(seed), + "NN_BETA": str(shared["beta"]), + "NN_THERM": str(therm), + "NN_MEAS": str(meas), + "NN_BLOCKS": str(blocks), + "RUN_ROOT": str(run_dir), + } + ) + julia = os.environ.get("JULIA_BIN", os.path.expanduser("~/.local/bin/julia")) + entrypoint = os.path.join(repo, shared["entrypoint"]) + returncode = subprocess.call( + [julia, "--startup-file=no", entrypoint], + cwd=repo, + env=env, + ) + if returncode != 0: + return returncode + + summary_path = os.path.join(cell_dir, "summary.csv") + with io.open(summary_path, encoding="utf-8", newline="") if sys.version_info[0] >= 3 else open(summary_path, "rb") as stream: + summary = dict((key, numeric(value)) for key, value in next(csv.DictReader(stream)).items()) + + effective_settings = dict(shared) + effective_settings.update( + { + "thermalization_sweeps": therm, + "measurement_sweeps": meas, + } + ) + observable_keys = ("Qm", "se_Qm", "Rp", "se_Rp", "chi", "se_chi", "tau_m2", "runtime_s") + manifest = { + "status": "success", + "cell_id": planned["cell_id"], + "params": params, + "settings": effective_settings, + "provenance": spec.get("provenance", {}), + "observables": dict((key, summary[key]) for key in observable_keys), + "evidence": ["summary.csv", "blocks.csv", "metadata.txt"], + } + fd, temporary = tempfile.mkstemp(prefix="manifest-", suffix=".json", dir=cell_dir) + try: + # os.fdopen's text stream accepts json.dump output on both the Python + # 2.7 login image and Python 3. io.open(..., encoding="utf-8") does + # not accept the byte chunks emitted by Python 2's json encoder. + with os.fdopen(fd, "w") as stream: + json.dump(manifest, stream, indent=2, ensure_ascii=True, separators=(",", ": ")) + stream.write("\n") + final_path = os.path.join(cell_dir, "manifest.json") + if os.path.exists(final_path): + os.unlink(final_path) + os.rename(temporary, final_path) + finally: + if os.path.exists(temporary): + os.unlink(temporary) + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_point.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_point.jl" new file mode 100644 index 000000000..87f378353 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_large_point.jl" @@ -0,0 +1,50 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK, Dates + +cell_id=get(ENV,"NN_CELL_ID","cell-local") +L=parse(Int,get(ENV,"NN_L","64")) +seed=parse(Int,get(ENV,"NN_SEED","73001")) +beta=parse(Float64,get(ENV,"NN_BETA",string(log(1+sqrt(2))/2))) +therm=parse(Int,get(ENV,"NN_THERM","1000")) +meas=parse(Int,get(ENV,"NN_MEAS","10000")) +blocks=parse(Int,get(ENV,"NN_BLOCKS","50")) +progress_every=max(1,meas÷20) +root=get(ENV,"RUN_ROOT",joinpath(@__DIR__,"..","results","nn_large_20260730")) +cell=joinpath(root,"cells",cell_id) +mkpath(cell) + +println("START cell=$cell_id model=nearest_neighbor L=$L beta=$beta seed=$seed therm=$therm meas=$meas blocks=$blocks") +flush(stdout) +r=run_nn_chain(L=L,beta=beta,seed=seed,therm=therm,meas=meas, + blocks=blocks,progress_every=progress_every,return_blocks=true) + +open(joinpath(cell,"summary.csv"),"w") do io + println(io,join(keys(r.summary),",")) + println(io,join(values(r.summary),",")) +end +open(joinpath(cell,"blocks.csv"),"w") do io + println(io,"block,m2,m4,Qm,chi,Rp,C1") + for i in eachindex(r.block_m2) + println(io,"$i,$(r.block_m2[i]),$(r.block_m4[i]),$(r.block_qm[i]),$(r.block_chi[i]),$(r.block_rp[i]),$(r.block_c1[i])") + end +end +open(joinpath(cell,"metadata.txt"),"w") do io + println(io,"timestamp=$(now())") + println(io,"hostname=$(gethostname())") + println(io,"julia=$(VERSION)") + println(io,"slurm_job=$(get(ENV,"SLURM_JOB_ID","local"))") + println(io,"slurm_array_task=$(get(ENV,"SLURM_ARRAY_TASK_ID","local"))") + println(io,"cell=$cell_id") + println(io,"model=nearest_neighbor") + println(io,"hamiltonian=H=-sum_ s_i s_j") + println(io,"coupling_J=1") + println(io,"boundary=periodic_square_torus") + println(io,"beta=$beta") + println(io,"L=$L") + println(io,"seed=$seed") + println(io,"thermalization_sweeps=$therm") + println(io,"measurement_sweeps=$meas") + println(io,"blocks=$blocks") +end +println("SUCCESS cell=$cell_id L=$L seed=$seed Qm=$(r.summary.Qm) Rp=$(r.summary.Rp) chi=$(r.summary.chi) tau_m2=$(r.summary.tau_m2) runtime_s=$(r.summary.runtime_s)") +flush(stdout) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_repair_manifests.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_repair_manifests.py" new file mode 100644 index 000000000..c9f1ea3ee --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_repair_manifests.py" @@ -0,0 +1,99 @@ +#!/usr/bin/env python +"""Rebuild NN manifests from completed numerical evidence without recomputing.""" + +from __future__ import print_function + +import csv +import io +import json +import os +import sys +import tempfile + + +def numeric(value): + try: + return int(value) + except ValueError: + try: + return float(value) + except ValueError: + return value + + +def write_json_atomic(path, value): + directory = os.path.dirname(path) + fd, temporary = tempfile.mkstemp(prefix="manifest-", suffix=".json", dir=directory) + try: + with os.fdopen(fd, "w") as stream: + json.dump(value, stream, indent=2, ensure_ascii=True, separators=(",", ": ")) + stream.write("\n") + if os.path.exists(path): + os.unlink(path) + os.rename(temporary, path) + finally: + if os.path.exists(temporary): + os.unlink(temporary) + + +def main(): + spec_path = sys.argv[1] + with io.open(spec_path, encoding="utf-8") as stream: + spec = json.load(stream) + run_dir = spec["run_dir"] + if not os.path.isabs(run_dir): + run_dir = os.path.abspath(run_dir) + + repaired = 0 + incomplete = [] + observable_keys = ( + "Qm", + "se_Qm", + "Rp", + "se_Rp", + "chi", + "se_chi", + "tau_m2", + "runtime_s", + ) + for planned in spec["cells"]: + cell_dir = os.path.join(run_dir, "cells", planned["cell_id"]) + evidence = [os.path.join(cell_dir, name) for name in ("summary.csv", "blocks.csv", "metadata.txt")] + if not all(os.path.isfile(path) and os.path.getsize(path) > 0 for path in evidence): + incomplete.append(planned["cell_id"]) + continue + summary_path = evidence[0] + if sys.version_info[0] >= 3: + stream = io.open(summary_path, encoding="utf-8", newline="") + else: + stream = open(summary_path, "rb") + with stream: + summary = dict((key, numeric(value)) for key, value in next(csv.DictReader(stream)).items()) + L = int(planned["params"]["L"]) + settings = dict(spec["settings"]) + settings.update( + { + "thermalization_sweeps": int(settings["thermalization_sweeps_by_size"][str(L)]), + "measurement_sweeps": int(settings["measurement_sweeps_by_size"][str(L)]), + } + ) + manifest = { + "status": "success", + "cell_id": planned["cell_id"], + "params": planned["params"], + "settings": settings, + "provenance": spec.get("provenance", {}), + "observables": dict((key, summary[key]) for key in observable_keys), + "evidence": ["summary.csv", "blocks.csv", "metadata.txt"], + } + write_json_atomic(os.path.join(cell_dir, "manifest.json"), manifest) + repaired += 1 + + print("repaired={0} incomplete={1}".format(repaired, len(incomplete))) + if incomplete: + print("incomplete_cells={0}".format(",".join(incomplete))) + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_v3_point.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_v3_point.jl" new file mode 100644 index 000000000..88c1219ce --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/nn_v3_point.jl" @@ -0,0 +1,38 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK +using Printf + +length(ARGS) == 5 || error("usage: nn_v3_point.jl L seed therm meas output_dir") +L=parse(Int,ARGS[1]) +seed=parse(Int,ARGS[2]) +therm=parse(Int,ARGS[3]) +meas=parse(Int,ARGS[4]) +outdir=ARGS[5] +mkpath(outdir) + +r=run_nn_chain(L=L,seed=seed,therm=therm,meas=meas,nb=100,return_blocks=true) +s=r.summary + +open(joinpath(outdir,"summary.csv"),"w") do io + println(io,"L,beta,seed,therm,meas,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,blocks,runtime_s") + println(io,join((s.L,s.beta,s.seed,s.therm,s.meas,s.mean_m2,s.mean_m4, + s.Qm,s.chi,s.R0,s.R2,s.Rp,s.mean_C1,s.blocks,s.runtime_s),",")) +end +open(joinpath(outdir,"blocks.csv"),"w") do io + println(io,"block,m2,m4,R0,R2,C1") + for i in eachindex(r.block_m2) + println(io,join((i,r.block_m2[i],r.block_m4[i],r.block_r0[i], + r.block_r2[i],r.block_c1[i]),",")) + end +end +open(joinpath(outdir,"metadata.txt"),"w") do io + println(io,"status=success") + println(io,"kernel=exact_nearest_neighbor_fk") + println(io,"boundary=periodic") + println(io,"J=1") + println(io,"beta=$(s.beta)") + println(io,"julia=$(VERSION)") +end +@printf("NN V3 L=%d seed=%d Qm=%.8f Rp=%.8f chi=%.8f runtime_s=%.2f\n", + L,seed,s.Qm,s.Rp,s.chi,s.runtime_s) +flush(stdout) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_cutoff_report.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_cutoff_report.py" new file mode 100644 index 000000000..4dc5b59db --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_cutoff_report.py" @@ -0,0 +1,795 @@ +#!/usr/bin/env python3 +"""Render the frozen cutoff data and competing extrapolations as standalone SVG.""" + +import csv +import math +import os +import re +import sys + + +root = sys.argv[1] +analysis = os.path.join(root, "results", "track_a_cutoff_analysis_20260730") +base_analysis = os.path.join(root, "results", "track_a_20260727", "analysis") +figure_dir = os.path.join(root, "reports", "figures") +os.makedirs(figure_dir, exist_ok=True) + + +def read_csv(name): + with open(os.path.join(analysis, name), encoding="utf-8") as handle: + return list(csv.DictReader(handle)) + + +critical = read_csv("combined_critical.csv") +fits = read_csv("model_fits.csv") +forecasts = read_csv("distinguishable_size.csv") +extension_fits = read_csv("extension_comparison_fits.csv") +with open(os.path.join(base_analysis, "aggregated.csv"), encoding="utf-8") as handle: + base_rows = list(csv.DictReader(handle)) +colors = {1.75: "#2563eb", 1.875: "#16a34a", 2.0: "#dc2626", 2.5: "#7c3aed"} + + +def match_figure_two_font_scale(content, width): + """Compensate SVG text for downscaling to Figure 2's display width.""" + scale = width / 660.0 + + def scaled(match): + size = float(match.group(1)) * scale + return f'font-size="{size:.1f}"' + + return re.sub(r'font-size="([0-9.]+)"', scaled, content) + + +def sx(log_l, x0, width, lo=6, hi=11): + return x0 + (log_l - lo) / (hi - lo) * width + + +def sy(value, y0, height, lo, hi): + return y0 + height - (value - lo) / (hi - lo) * height + + +def finite_size_figure(): + width, height = 1120, 430 + svg = [ + f'', + '', + '中心临界点的有限尺寸流', + ] + panels = [("Rp", "Rₚ", -0.64, 0.08), ("Qm", "Qₘ", 0.68, 0.88)] + for i, sigma in enumerate(colors): + x = 185 + 170 * i + svg.append(f'') + svg.append(f'σ={sigma:g}') + for p, (obs, label, ymin, ymax) in enumerate(panels): + x0, y0, pw, ph = 70 + 545 * p, 82, 450, 273 + svg.append(f'') + for tick in range(6, 12): + x = sx(tick, x0, pw) + svg.append(f'') + svg.append(f'{2**tick}') + for j in range(5): + val = ymin + (ymax - ymin) * j / 4 + y = sy(val, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'{val:.2f}') + anchor = 0.0 if obs == "Rp" else 0.857 + y_anchor = sy(anchor, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'短程锚点') + svg.append(f'L') + svg.append( + f'{label}' + ) + for sigma in colors: + rows = sorted( + (r for r in critical if float(r["sigma"]) == sigma and r["observable"] == obs), + key=lambda r: int(r["L"]), + ) + points = [] + for row in rows: + x = sx(math.log2(int(row["L"])), x0, pw) + value = float(row["value"]) + y = sy(value, y0, ph, ymin, ymax) + points.append((x, y)) + if row["se"] != "NaN": + err = float(row["se"]) + y1 = sy(value - err, y0, ph, ymin, ymax) + y2 = sy(value + err, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'') + svg.append( + f'' + ) + svg.append("") + return "\n".join(svg) + + +def fit_value(model, limit, p1, p2, length): + if model == "power": + return limit + p1 * length ** (-p2) + return limit + p1 / math.log(length / p2) + + +def extrapolation_figure(): + width, height = 1120, 760 + svg = [ + f'', + '', + '幂律与对数修正的竞争外推(Lₘᵢₙ=64)', + ] + panels = [ + (1.875, "Rp", "σ=1.875,Rₚ", -0.50, 0.68), + (2.0, "Rp", "σ=2.0,Rₚ", -0.36, 0.80), + (1.875, "Qm", "σ=1.875,Qₘ", 0.70, 1.08), + (2.0, "Qm", "σ=2.0,Qₘ", 0.74, 1.12), + ] + for p, (sigma, obs, title, ymin, ymax) in enumerate(panels): + col, row = p % 2, p // 2 + x0, y0, pw, ph = 70 + 545 * col, 55 + 350 * row, 450, 265 + svg.append(f'') + for tick in (6, 8, 10, 12, 14, 16): + x = x0 + (tick - 6) / 10 * pw + svg.append(f'') + svg.append(f'{2**tick}') + for j in range(5): + value = ymin + (ymax - ymin) * j / 4 + y = sy(value, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'{value:.2f}') + svg.append(f'{title.split(",")[0]}') + svg.append(f'L') + ylabel = "Rₚ" if obs == "Rp" else "Qₘ" + svg.append( + f'{ylabel}' + ) + svg.append(f'') + svg.append(f'power') + svg.append(f'') + svg.append(f'log') + for model, color in (("power", "#0f766e"), ("marginal", "#c2410c")): + fit = next( + r + for r in fits + if float(r["sigma"]) == sigma + and r["observable"] == obs + and int(r["Lmin"]) == 64 + and r["model"] == model + ) + limit, p1, p2 = float(fit["limit"]), float(fit["p1"]), float(fit["p2"]) + points = [] + for step in range(121): + log_l = 6 + 10 * step / 120 + length = 2**log_l + value = fit_value(model, limit, p1, p2, length) + x = x0 + (log_l - 6) / 10 * pw + y = sy(value, y0, ph, ymin, ymax) + points.append((x, max(y0, min(y0 + ph, y)))) + svg.append( + f'' + ) + rows = sorted( + (r for r in critical if float(r["sigma"]) == sigma and r["observable"] == obs), + key=lambda r: int(r["L"]), + ) + for datum in rows: + log_l = math.log2(int(datum["L"])) + x = x0 + (log_l - 6) / 10 * pw + value = float(datum["value"]) + y = sy(value, y0, ph, ymin, ymax) + if datum["se"] != "NaN": + err = float(datum["se"]) + svg.append( + f'' + ) + svg.append(f'') + measured_edge = x0 + (11 - 6) / 10 * pw + svg.append(f'') + svg.append(f'预测区') + svg.append("") + return "\n".join(svg) + + +def eta_scaling_figure(): + width, height = 900, 490 + svg = [ + f'', + '', + 'χ(L)/L² 的临界幂律拟合', + ] + x0, y0, pw, ph = 90, 55, 740, 345 + svg.append(f'') + for tick in (64, 128, 256, 512): + x = x0 + (math.log2(tick) - 6) / 3 * pw + svg.append(f'') + svg.append(f'{tick}') + logy_min, logy_max = math.log10(0.025), math.log10(0.35) + for tick in (0.03, 0.05, 0.08, 0.1, 0.15, 0.2, 0.3): + y = sy(math.log10(tick), y0, ph, logy_min, logy_max) + svg.append(f'') + svg.append(f'{tick:g}') + svg.append(f'L') + svg.append( + f'χ/L²' + ) + bcs = {1.75: 0.329136, 1.875: 0.336985, 2.0: 0.344439, 2.5: 0.369446} + for idx, sigma in enumerate(colors): + rows = sorted( + ( + r + for r in base_rows + if abs(float(r["sigma"]) - sigma) < 1e-9 + and abs(float(r["beta"]) - bcs[sigma]) < 1e-9 + ), + key=lambda r: int(r["L"]), + ) + points = [] + for datum in rows: + length = int(datum["L"]) + value = float(datum["chi"]) / length**2 + x = x0 + (math.log2(length) - 6) / 3 * pw + y = sy(math.log10(value), y0, ph, logy_min, logy_max) + points.append((x, y)) + err = float(datum["chi_seed_se"]) / length**2 + ylo = sy(math.log10(max(value - err, 1e-300)), y0, ph, logy_min, logy_max) + yhi = sy(math.log10(value + err), y0, ph, logy_min, logy_max) + svg.append(f'') + svg.append(f'') + fit_rows = [r for r in rows if int(r["L"]) >= 128] + xs = [math.log(float(r["L"])) for r in fit_rows] + ys = [ + math.log(float(r["chi"]) / int(r["L"]) ** 2) + for r in fit_rows + ] + xm, ym = sum(xs) / len(xs), sum(ys) / len(ys) + slope = sum((x - xm) * (y - ym) for x, y in zip(xs, ys)) / sum((x - xm) ** 2 for x in xs) + intercept = ym - slope * xm + eta = -slope + line = [] + for length in (64, 512): + value = math.exp(intercept) * length**slope + x = x0 + (math.log2(length) - 6) / 3 * pw + y = sy(math.log10(value), y0, ph, logy_min, logy_max) + line.append((x, y)) + svg.append( + f'' + ) + ly = y0 + ph - 80 + idx * 20 + legend_x = x0 + pw - 225 + svg.append(f'') + svg.append( + f'σ={sigma:g}, η={eta:.4f}' + ) + svg.append("") + return "\n".join(svg) + + +def linearized_extrapolation_figure(): + width, height = 1120, 1080 + svg = [ + f'', + '', + '修正变量线性化的热力学外推', + ] + rows = [ + (1.875, "Rp", -0.45, 0.38), + (2.0, "Rp", -0.32, 0.75), + (1.875, "Qm", 0.72, 1.03), + (2.0, "Qm", 0.75, 1.08), + ] + for row, (sigma, obs, ymin, ymax) in enumerate(rows): + data = sorted( + (r for r in critical if float(r["sigma"]) == sigma and r["observable"] == obs), + key=lambda r: int(r["L"]), + ) + for col, model in enumerate(("power", "marginal")): + x0, y0, pw, ph = 105 + 525 * col, 55 + 255 * row, 430, 185 + fit = next( + r for r in fits + if float(r["sigma"]) == sigma + and r["observable"] == obs + and int(r["Lmin"]) == 64 + and r["model"] == model + ) + limit, p1, q = float(fit["limit"]), float(fit["p1"]), float(fit["p2"]) + features = [ + (int(d["L"]) ** (-q) if model == "power" + else 1.0 / math.log(int(d["L"]) / q)) + for d in data + ] + xmax = max(features) * 1.08 + svg.append(f'') + for j in range(5): + value = ymin + (ymax - ymin) * j / 4 + y = sy(value, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'{value:.2f}') + for j in range(5): + value = xmax * j / 4 + x = x0 + value / xmax * pw + svg.append(f'{value:.2f}') + color = "#0f766e" if model == "power" else "#c2410c" + line_points = [] + for j in range(101): + feature_value = xmax * j / 100 + value = limit + p1 * feature_value + x = x0 + feature_value / xmax * pw + y = sy(value, y0, ph, ymin, ymax) + line_points.append((x, y)) + svg.append( + f'' + ) + for datum, feature_value in zip(data, features): + value = float(datum["value"]) + x = x0 + feature_value / xmax * pw + y = sy(value, y0, ph, ymin, ymax) + if datum["se"] != "NaN": + err = float(datum["se"]) + svg.append( + f'' + ) + svg.append(f'') + ylabel = "Rₚ" if obs == "Rp" else "Qₘ" + svg.append(f'σ={sigma:g}, {ylabel}') + svg.append(f'{ylabel},∞={limit:.3f}') + if model == "power": + xlabel = 'L−q' + else: + xlabel = '1/log(L/q)' + svg.append(f'{xlabel}') + q_feature = 0.45 * xmax + q_value = limit + p1 * q_feature + qx = x0 + 0.45 * pw + qy = max(y0 + 45, min(y0 + ph - 18, sy(q_value, y0, ph, ymin, ymax) - 18)) + svg.append( + f'q = {q:.3g}' + ) + svg.append( + f'{ylabel}(L)' + ) + svg.append("") + return "\n".join(svg) + + +def window_stability_figure(): + width, height = 1120, 750 + svg = [ + f'', + '', + '热力学外推极限的拟合窗口稳定性', + ] + panels = [ + (1.875, "Rp", "σ=1.875", -0.25, 2.9), + (2.0, "Rp", "σ=2.0", -0.25, 2.3), + (1.875, "Qm", "σ=1.875", 0.75, 1.45), + (2.0, "Qm", "σ=2.0", 0.75, 1.65), + ] + model_style = {"power": ("#0f766e", "circle"), "marginal": ("#c2410c", "square")} + lmins = [64, 128, 256, 512] + for p, (sigma, obs, title, ymin, ymax) in enumerate(panels): + col, row = p % 2, p // 2 + x0, y0, pw, ph = 105 + 525 * col, 55 + 345 * row, 430, 255 + svg.append(f'') + for i, lmin in enumerate(lmins): + x = x0 + 35 + i * (pw - 70) / 3 + svg.append(f'') + svg.append(f'{lmin}') + for j in range(5): + value = ymin + (ymax - ymin) * j / 4 + y = sy(value, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'{value:.2f}') + svg.append(f'{title}') + svg.append(f'Lₘᵢₙ') + ylabel = "Rₚ,∞" if obs == "Rp" else "Qₘ,∞" + svg.append( + f'{ylabel}' + ) + for model, (color, marker) in model_style.items(): + rows = sorted( + ( + r + for r in fits + if float(r["sigma"]) == sigma + and r["observable"] == obs + and r["model"] == model + ), + key=lambda r: int(r["Lmin"]), + ) + points = [] + for datum in rows: + i = lmins.index(int(datum["Lmin"])) + x = x0 + 35 + i * (pw - 70) / 3 + value = float(datum["limit"]) + y = sy(value, y0, ph, ymin, ymax) + points.append((x, max(y0, min(y0 + ph, y)))) + lo, hi = float(datum["limit_boot_p16"]), float(datum["limit_boot_p84"]) + ylo = max(y0, min(y0 + ph, sy(lo, y0, ph, ymin, ymax))) + yhi = max(y0, min(y0 + ph, sy(hi, y0, ph, ymin, ymax))) + svg.append(f'') + if marker == "circle": + svg.append(f'') + else: + svg.append(f'') + svg.append( + f'' + ) + svg.append(f'') + svg.append(f'power') + svg.append(f'') + svg.append(f'log') + svg.append("") + return "\n".join(svg) + + +def distinguishability_figure(): + width, height = 900, 470 + svg = [ + f'', + '', + '注册预测区间内的最大模型分离度', + ] + x0, y0, pw, ph = 85, 55, 750, 325 + svg.append(f'') + lmins = [64, 128, 256, 512] + for i, lmin in enumerate(lmins): + x = x0 + 55 + i * (pw - 110) / 3 + svg.append(f'') + svg.append(f'{lmin}') + for j in range(7): + value = 0.5 * j + y = sy(value, y0, ph, 0, 3.25) + svg.append(f'') + svg.append(f'{value:.1f}') + threshold = sy(3.0, y0, ph, 0, 3.25) + svg.append(f'') + svg.append(f'3σ 判别门槛') + svg.append(f'Lₘᵢₙ') + svg.append( + f'max z(L≤65536)' + ) + series = [ + (1.875, "Rp", "#16a34a", "σ=1.875, Rₚ"), + (1.875, "Qm", "#15803d", "σ=1.875, Qₘ"), + (2.0, "Rp", "#dc2626", "σ=2.0, Rₚ"), + (2.0, "Qm", "#991b1b", "σ=2.0, Qₘ"), + ] + for idx, (sigma, obs, color, label) in enumerate(series): + rows = sorted( + ( + r + for r in forecasts + if float(r["sigma"]) == sigma and r["observable"] == obs + ), + key=lambda r: int(r["Lmin"]), + ) + points = [] + for datum in rows: + i = lmins.index(int(datum["Lmin"])) + x = x0 + 55 + i * (pw - 110) / 3 + y = sy(float(datum["max_separation_z"]), y0, ph, 0, 3.25) + points.append((x, y)) + svg.append(f'') + svg.append( + f'' + ) + ly = y0 + 55 + idx * 20 + svg.append(f'') + svg.append(f'{label}') + svg.append("") + return "\n".join(svg) + + +def extension_extrapolation_figure(): + width, height = 1120, 1080 + rendered_label_font = 10.0 * width / 660.0 + label_ascent = 0.82 * rendered_label_font + label_descent = 0.24 * rendered_label_font + label_line_gap = 5.0 + + def place_q_label( + text, + target_fit, + panel_fits, + marker_points, + occupied_boxes, + preferred_fraction, + prefer_above, + x0, + y0, + pw, + ph, + xmax, + ymin, + ymax, + ): + """Place a direct label near its curve without touching either fit.""" + label_width = min(pw - 20.0, max(112.0, len(text) * rendered_label_font * 0.62)) + allowed_top = y0 + 32.0 + allowed_bottom = y0 + ph - 6.0 + candidates = [] + x_fractions = sorted( + (0.20 + 0.04 * index for index in range(18)), + key=lambda fraction: abs(fraction - preferred_fraction), + ) + + for fraction in x_fractions: + qx = x0 + fraction * pw + left = qx - label_width / 2.0 + right = qx + label_width / 2.0 + if left < x0 + 6.0 or right > x0 + pw - 6.0: + continue + + left_feature = (left - x0) / pw * xmax + right_feature = (right - x0) / pw * xmax + line_ranges = [] + for limit, p1, _ in panel_fits: + line_ranges.append( + sorted( + ( + sy(limit + p1 * left_feature, y0, ph, ymin, ymax), + sy(limit + p1 * right_feature, y0, ph, ymin, ymax), + ) + ) + ) + + limit, p1, _ = target_fit + target_y = sy( + limit + p1 * fraction * xmax, + y0, + ph, + ymin, + ymax, + ) + first_baseline = allowed_top + label_ascent + last_baseline = allowed_bottom - label_descent + steps = max(0, int((last_baseline - first_baseline) / 2.0)) + for step in range(steps + 1): + baseline = first_baseline + 2.0 * step + top = baseline - label_ascent + bottom = baseline + label_descent + + if any( + line_bottom >= top - label_line_gap + and line_top <= bottom + label_line_gap + for line_top, line_bottom in line_ranges + ): + continue + if any( + left - 10.0 <= px <= right + 10.0 + and top - 10.0 <= py <= bottom + 10.0 + for px, py in marker_points + ): + continue + if any( + left - 8.0 <= other_right + and right + 8.0 >= other_left + and top - 6.0 <= other_bottom + and bottom + 6.0 >= other_top + for other_left, other_top, other_right, other_bottom in occupied_boxes + ): + continue + + if bottom < target_y: + separation = target_y - bottom + is_above = True + elif top > target_y: + separation = top - target_y + is_above = False + else: + continue + side_penalty = 0.0 if is_above == prefer_above else 9.0 + outside_penalty = ( + max(y0 - target_y, target_y - (y0 + ph), 0.0) * 2.0 + ) + score = ( + separation + + abs(fraction - preferred_fraction) * 70.0 + + side_penalty + + outside_penalty + ) + candidates.append( + (score, qx, baseline, (left, top, right, bottom)) + ) + + if not candidates: + raise RuntimeError(f"could not place curve label without overlap: {text}") + _, qx, baseline, box = min(candidates, key=lambda item: item[0]) + return qx, baseline, box + + svg = [ + f'', + '', + '大尺寸数据与完整窗口的线性化外推', + ] + rows = [ + (1.875, "Rp", -0.45, 0.75), + (2.0, "Rp", -0.35, 3.25), + (1.875, "Qm", 0.72, 1.10), + (2.0, "Qm", 0.75, 1.85), + ] + for row, (sigma, obs, ymin, ymax) in enumerate(rows): + all_data = sorted( + (r for r in critical if float(r["sigma"]) == sigma and r["observable"] == obs), + key=lambda r: int(r["L"]), + ) + for col, model in enumerate(("power", "marginal")): + x0, y0, pw, ph = 105 + 525 * col, 55 + 255 * row, 430, 185 + clip_id = f"extension-panel-{row}-{col}" + svg.append( + f'' + ) + window_data = {} + window_fits = {} + all_features = [] + for maxL in (2048,): + fit = next( + r for r in extension_fits + if float(r["sigma"]) == sigma + and r["observable"] == obs + and int(r["Lmax"]) == maxL + and r["model"] == model + ) + limit, p1, q = float(fit["limit"]), float(fit["p1"]), float(fit["p2"]) + data = [d for d in all_data if int(d["L"]) <= maxL] + features = [ + (int(d["L"]) ** (-q) if model == "power" + else 1.0 / math.log(int(d["L"]) / q)) + for d in data + ] + window_data[maxL] = (data, features) + window_fits[maxL] = (limit, p1, q) + all_features.extend(features) + xmax = max(all_features) * 1.08 + svg.append(f'') + for j in range(5): + value = ymin + (ymax - ymin) * j / 4 + y = sy(value, y0, ph, ymin, ymax) + svg.append(f'') + svg.append(f'{value:.2f}') + for j in range(5): + value = xmax * j / 4 + x = x0 + value / xmax * pw + svg.append(f'{value:.2f}') + marker_points = [] + label_specs = [] + for maxL, color, dash in ((2048, "#2563eb", ""),): + limit, p1, q = window_fits[maxL] + points = [] + for j in range(101): + feature_value = xmax * j / 100 + value = limit + p1 * feature_value + x = x0 + feature_value / xmax * pw + y = sy(value, y0, ph, ymin, ymax) + points.append((x, y)) + dash_attr = f' stroke-dasharray="{dash}"' if dash else "" + svg.append( + f'' + ) + data, features = window_data[maxL] + for datum, feature_value in zip(data, features): + if int(datum["L"]) <= 512: + continue + value = float(datum["value"]) + x = x0 + feature_value / xmax * pw + y = sy(value, y0, ph, ymin, ymax) + marker_points.append((x, y)) + svg.append(f'') + label_specs.append( + ( + maxL, + color, + f"L≤{maxL}: q={q:.3g}", + window_fits[maxL], + ) + ) + + occupied_boxes = [] + for maxL, color, label, target_fit in label_specs: + qx, qy, box = place_q_label( + label, + target_fit, + tuple(window_fits.values()), + marker_points, + occupied_boxes, + 0.62, + False, + x0, + y0, + pw, + ph, + xmax, + ymin, + ymax, + ) + occupied_boxes.append(box) + svg.append( + f'{label}' + ) + ylabel = "Rₚ" if obs == "Rp" else "Qₘ" + svg.append(f'σ={sigma:g}, {ylabel}') + if model == "power": + xlabel = 'L−q' + else: + xlabel = '1/log(L/q)' + svg.append(f'{xlabel}') + svg.append( + f'{ylabel}(L)' + ) + svg.append("") + return "\n".join(svg) + + +outputs = { + "critical_finite_size_extended.svg": match_figure_two_font_scale( + finite_size_figure(), 1120 + ), + "eta_scaling.svg": match_figure_two_font_scale(eta_scaling_figure(), 900), + "competing_extrapolations.svg": match_figure_two_font_scale( + linearized_extrapolation_figure(), 1120 + ), + "extrapolation_window_stability.svg": match_figure_two_font_scale( + window_stability_figure(), 1120 + ), + "distinguishability_forecast.svg": match_figure_two_font_scale( + distinguishability_figure(), 900 + ), + "extension_extrapolation.svg": match_figure_two_font_scale( + extension_extrapolation_figure(), 1120 + ), +} + + +def english_version(content): + replacements = { + "中心临界点的有限尺寸流": "Finite-size flow at published critical points", + "短程锚点": "short-range anchor", + "χ(L)/L² 的临界幂律拟合": "Critical power-law fits of χ(L)/L²", + "χ(L) 的临界幂律拟合": "Critical power-law fits of χ(L)", + "幂律与对数修正的竞争外推": "Competing power and logarithmic extrapolations", + "修正变量线性化的热力学外推": "Thermodynamic extrapolation in linearized correction coordinates", + "热力学外推极限的拟合窗口稳定性": "Fit-window stability of thermodynamic limits", + "注册预测区间内的最大模型分离度": "Maximum model separation in the registered forecast range", + "大尺寸数据与完整窗口的线性化外推": "Linearized full-window extrapolation with large-size data", + "预测区": "forecast", + "3σ 判别门槛": "3σ threshold", + "(": " (", + ")": ")", + } + for source, target in replacements.items(): + content = content.replace(source, target) + return content + + +outputs.update( + { + name.replace(".svg", "_en.svg"): english_version(content) + for name, content in list(outputs.items()) + } +) + +for name, content in outputs.items(): + path = os.path.join(figure_dir, name) + with open(path, "w", encoding="utf-8") as handle: + handle.write(content + "\n") + print(path) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_smoke.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_smoke.py" new file mode 100644 index 000000000..5a1673b21 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/plot_smoke.py" @@ -0,0 +1,28 @@ +import csv, sys +from collections import defaultdict + +rows=list(csv.DictReader(open(sys.argv[1],encoding="utf-8"))) +g=defaultdict(list) +for r in rows:g[(int(r["L"]),float(r["beta"]))].append(r) +W,H=1200,380; panels=[("Rp",-1.6,.7),("Qm",.45,.95),("chi",0,400)] +colors={8:"#2b6cb0",16:"#d97706",32:"#15803d"} +svg=[f'', + '', + '2D long-range Ising FK smoke, sigma=1.875'] +for p,(key,y0,y1) in enumerate(panels): + ox=55+400*p; oy=45; pw=325; ph=275 + svg.append(f'') + svg.append(f'beta') + svg.append(f'{key}') + for L in (8,16,32): + pts=[] + for (l,b),rs in sorted(g.items()): + if l!=L:continue + v=sum(float(r[key]) for r in rs)/len(rs) + x=ox+(b-.326985)/.02*pw; y=oy+ph-(v-y0)/(y1-y0)*ph + pts.append((x,y)) + svg.append(f'') + for x,y in pts:svg.append(f'') + svg.append(f'L={L}') +svg.append('') +open(sys.argv[2],"w",encoding="utf-8").write("\n".join(svg)) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/prepare_nn_eta_fit.py" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/prepare_nn_eta_fit.py" new file mode 100644 index 000000000..42d91a611 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/prepare_nn_eta_fit.py" @@ -0,0 +1,61 @@ +#!/usr/bin/env python3 +"""Prepare the three-size nearest-neighbor susceptibility scaling table.""" + +import argparse +import csv +import math +from pathlib import Path + + +def read_size(root, wanted_L): + values = [] + cells = 0 + for block_path in sorted((root / "cells").glob("*/blocks.csv")): + summary_path = block_path.with_name("summary.csv") + if not summary_path.exists(): + continue + with summary_path.open(newline="") as handle: + summary = next(csv.DictReader(handle)) + L = int(summary["L"]) + if L != wanted_L: + continue + cells += 1 + with block_path.open(newline="") as handle: + for row in csv.DictReader(handle): + values.append(L * L * float(row["m2"])) + if not values: + raise SystemExit(f"blocked: no L={wanted_L} blocks under {root}") + mean = sum(values) / len(values) + variance = sum((value - mean) ** 2 for value in values) / (len(values) - 1) + return mean, math.sqrt(variance / len(values)), len(values), cells + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("nn_v3", type=Path) + parser.add_argument("nn_large", type=Path) + parser.add_argument("--out", type=Path, required=True) + args = parser.parse_args() + + sources = { + 64: args.nn_v3, + 128: args.nn_v3, + 256: args.nn_large, + 512: args.nn_large, + } + args.out.parent.mkdir(parents=True, exist_ok=True) + with args.out.open("w", newline="") as handle: + writer = csv.writer(handle, lineterminator="\n") + writer.writerow(("L", "chi", "err", "blocks", "cells", "source")) + for L, root in sources.items(): + chi, err, blocks, cells = read_size(root, L) + writer.writerow((L, chi, err, blocks, cells, root.name)) + print( + f"L={L} chi={chi:.10g} err={err:.4g} " + f"blocks={blocks} cells={cells} source={root.name}", + flush=True, + ) + + +if __name__ == "__main__": + main() diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/production_point.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/production_point.jl" new file mode 100644 index 000000000..003efee39 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/production_point.jl" @@ -0,0 +1,32 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK, Dates +id=parse(Int,get(ENV,"SLURM_ARRAY_TASK_ID",get(ENV,"CELL_ID","1"))) +sigmas=(1.75,1.875,2.0,2.5); Ls=(64,128,256,512) +offsets=(-0.002,0.0,0.002); seeds=(11001,22002) +bcs=Dict(1.75=>0.329136,1.875=>0.336985,2.0=>0.344439,2.5=>0.369446) +idx=id-1; seed=seeds[idx%2+1]+id; idx÷=2 +off=offsets[idx%3+1]; idx÷=3 +L=Ls[idx%4+1]; idx÷=4 +sigma=sigmas[idx%4+1]; beta=bcs[sigma]+off +root=get(ENV,"RUN_ROOT",joinpath(@__DIR__,"..","results","track_a_20260727")) +cell=joinpath(root,"cells",lpad(id,3,'0')); mkpath(cell) +therm=parse(Int,get(ENV,"THERM_SWEEPS","10000")) +meas=parse(Int,get(ENV,"MEAS_SWEEPS","100000")) +r=run_chain(L=L,sigma=sigma,beta=beta,seed=seed,therm=therm,meas=meas,return_blocks=true) +open(joinpath(cell,"summary.csv"),"w") do io + println(io,join(keys(r.summary),",")) + println(io,join(values(r.summary),",")) +end +open(joinpath(cell,"blocks.csv"),"w") do io + println(io,"block,m2,Rp,C1") + for i in eachindex(r.block_m2) + println(io,"$i,$(r.block_m2[i]),$(r.block_rp[i]),$(r.block_c1[i])") + end +end +open(joinpath(cell,"metadata.txt"),"w") do io + jobid=get(ENV,"SLURM_JOB_ID","local") + println(io,"timestamp=$(now())"); println(io,"hostname=$(gethostname())") + println(io,"julia=$(VERSION)"); println(io,"slurm_job=$jobid") +end +println("SUCCESS cell=$id L=$L sigma=$sigma beta=$beta seed=$seed Rp=$(r.summary.Rp) Qm=$(r.summary.Qm)") +flush(stdout) diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/smoke_test.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/smoke_test.jl" new file mode 100644 index 000000000..06335fb7f --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/scripts/smoke_test.jl" @@ -0,0 +1,13 @@ +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK, Printf +out=length(ARGS)>0 ? ARGS[1] : joinpath(@__DIR__,"..","results","smoke.csv") +mkpath(dirname(out)) +open(out,"w") do io + println(io,"L,sigma,beta,seed,therm,meas,mean_abs_m,mean_m2,mean_m4,Qm,chi,R0,R2,Rp,mean_C1,se_m2,se_Rp,tau_m2,blocks,runtime_s,sumJ") + for L in (8,16,32), beta in (0.326985,0.336985,0.346985), seed in (101,202) + r=run_chain(L=L,sigma=1.875,beta=beta,seed=seed,therm=1000,meas=5000) + println(io,join(values(r),",")) + @printf("L=%d beta=%.6f seed=%d Qm=%.5f Rp=%.5f chi=%.3f time=%.2fs\n",L,beta,seed,r.Qm,r.Rp,r.chi,r.runtime_s) + flush(stdout); flush(io) + end +end diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingClock.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingClock.jl" new file mode 100644 index 000000000..94813edaa --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingClock.jl" @@ -0,0 +1,153 @@ +module LongRangeIsingClock + +using Random, Statistics, LinearAlgebra + +export ClockKernel, build_kernel, clock_attempt!, direct_attempt!, + validate_clock, run_clock + +struct ClockKernel + L::Int + dx::Vector{Int} + dy::Vector{Int} + coupling::Vector{Float64} + cumulative_hazard::Vector{Float64} +end + +function build_kernel(L::Int, sigma::Real, beta::Real) + L >= 2 || error("L must be >= 2") + raw = Float64[] + dx = Int[] + dy = Int[] + for y in 0:L-1, x in 0:L-1 + x == 0 && y == 0 && continue + mx = min(x, L-x) + my = min(y, L-y) + push!(dx, x) + push!(dy, y) + push!(raw, (mx*mx + my*my)^(-(2+sigma)/2)) + end + coupling = 4 .* raw ./ sum(raw) + order = sortperm(coupling; rev=true) + coupling = coupling[order] + ClockKernel(L, dx[order], dy[order], coupling, + cumsum(2 .* beta .* coupling)) +end + +@inline function next_candidate(k::ClockKernel, start::Int, rng) + start > length(k.coupling) && return length(k.coupling)+1 + previous = start == 1 ? 0.0 : k.cumulative_hazard[start-1] + searchsortedfirst(k.cumulative_hazard, previous-log(rand(rng))) +end + +@inline function clock_attempt!(spins, site::Int, k::ClockKernel, rng) + L = k.L + x = (site-1) % L + 1 + y = (site-1) ÷ L + 1 + si = spins[site] + bond = next_candidate(k, 1, rng) + while bond <= length(k.coupling) + xj = mod1(x+k.dx[bond], L) + yj = mod1(y+k.dy[bond], L) + if spins[xj+(yj-1)*L] == si + return false + end + bond = next_candidate(k, bond+1, rng) + end + spins[site] = -si + true +end + +@inline function direct_attempt!(spins, site::Int, k::ClockKernel, beta, rng) + L = k.L + x = (site-1) % L + 1 + y = (site-1) ÷ L + 1 + si = spins[site] + for bond in eachindex(k.coupling) + xj = mod1(x+k.dx[bond], L) + yj = mod1(y+k.dy[bond], L) + if spins[xj+(yj-1)*L] == si && + rand(rng) < -expm1(-2beta*k.coupling[bond]) + return false + end + end + spins[site] = -si + true +end + +function validate_clock(; trials=200_000, seed=1905) + L, sigma, beta = 4, 1.875, 0.336985 + k = build_kernel(L, sigma, beta) + base = Int8[1,-1,1,1,-1,1,-1,1,1,1,-1,-1,-1,-1,1,-1] + rc = MersenneTwister(seed) + rd = MersenneTwister(seed+1) + ac = sum(clock_attempt!(copy(base), 6, k, rc) for _ in 1:trials)/trials + ad = sum(direct_attempt!(copy(base), 6, k, beta, rd) for _ in 1:trials)/trials + tolerance = 6sqrt(max(ac*(1-ac), ad*(1-ad))/trials) + abs(ac-ad) <= tolerance || + error("Clock/direct mismatch: $ac versus $ad (tol=$tolerance)") + (; clock_acceptance=ac, direct_acceptance=ad, tolerance) +end + +function sweep!(spins, k, rng) + accepted = 0 + for _ in eachindex(spins) + accepted += clock_attempt!(spins, rand(rng, eachindex(spins)), k, rng) + end + accepted/length(spins) +end + +function block_means(v, nblocks) + blocksize = length(v) ÷ nblocks + [mean(@view v[(i-1)*blocksize+1:i*blocksize]) for i in 1:nblocks] +end + +function tau_int(v, nblocks) + z = v .- mean(v) + denom = sum(abs2, z) + denom == 0 && return 0.5 + tau = 0.5 + for lag in 1:min(200, length(v) ÷ 10) + rho = dot(@view(z[1:end-lag]), @view(z[1+lag:end]))/denom + rho <= 0 && break + tau += rho + end + bm = block_means(v, nblocks) + blocksize = length(v) ÷ nblocks + tau_batch = 0.5*blocksize*var(bm)/var(v) + max(tau, tau_batch) +end + +function run_clock(; L, sigma, beta, seed, therm, meas, sample_every=1, + nblocks=50) + rng = MersenneTwister(seed) + k = build_kernel(L, sigma, beta) + spins = rand(rng, Int8[-1,1], L^2) + for _ in 1:therm + sweep!(spins, k, rng) + end + m2 = Float64[] + m4 = Float64[] + acceptance = 0.0 + started = time() + for sweep in 1:meas + acceptance += sweep!(spins, k, rng) + if sweep % sample_every == 0 + m = sum(spins)/length(spins) + push!(m2, m*m) + push!(m4, m^4) + end + end + nsamples = length(m2) + nblocks = min(nblocks, max(2, nsamples ÷ 20)) + bm2 = block_means(m2, nblocks) + bm4 = block_means(m4, nblocks) + mean2, mean4 = mean(m2), mean(m4) + summary = (L=L, sigma=Float64(sigma), beta=Float64(beta), seed=seed, + therm=therm, meas=meas, sample_every=sample_every, nsamples=nsamples, + mean_m2=mean2, mean_m4=mean4, Qm=mean2^2/mean4, + chi=L^2*mean2, acceptance=acceptance/meas, tau_m2=tau_int(m2,nblocks), + blocks=nblocks, runtime_s=time()-started, sumJ=sum(k.coupling)) + (; summary, block_m2=bm2, block_m4=bm4) +end + +end diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingFK.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingFK.jl" new file mode 100644 index 000000000..fd923093d --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/src/LongRangeIsingFK.jl" @@ -0,0 +1,300 @@ +module LongRangeIsingFK + +using Random, Statistics, Printf, Dates, LinearAlgebra + +export Geometry, WindingUF, add_edge!, wrapping, direct_sweep!, fast_sweep!, + nearest_neighbor_sweep!, run_chain, run_nn_chain, minimum_delta, + coupling_sum + +minimum_delta(d::Int, L::Int) = mod(d + fld(L,2), L) - fld(L,2) + +struct Geometry + L::Int + dx::Vector{Int} + dy::Vector{Int} + weight::Vector{Float64} + cdf::Vector{Float64} +end + +function Geometry(L::Int, sigma::Real) + dx=Int[]; dy=Int[]; raw=Float64[] + for y in 0:L-1, x in 0:L-1 + x==0 && y==0 && continue + a=minimum_delta(x,L); b=minimum_delta(y,L) + push!(dx,a); push!(dy,b); push!(raw,(a*a+b*b)^(-(2+sigma)/2)) + end + w = 4 .* raw ./ sum(raw) + Geometry(L,dx,dy,w,cumsum(w)./4) +end +coupling_sum(g::Geometry)=sum(g.weight) +site(x,y,L)=mod(x,L)+L*mod(y,L)+1 +coords(i,L)=((i-1)%L,(i-1)÷L) + +mutable struct WindingUF + parent::Vector{Int}; size::Vector{Int} + wx::Vector{Int}; wy::Vector{Int} + wrapx::Vector{Bool}; wrapy::Vector{Bool} +end +WindingUF(n::Int)=WindingUF(collect(1:n),ones(Int,n),zeros(Int,n),zeros(Int,n),falses(n),falses(n)) + +function rootpot!(u::WindingUF, a::Int) + p=u.parent[a] + p==a && return (a,0,0) + r,x,y=rootpot!(u,p) + ox=u.wx[a]; oy=u.wy[a] + u.parent[a]=r; u.wx[a]=ox+x; u.wy[a]=oy+y + (r,u.wx[a],u.wy[a]) +end + +function add_edge!(u::WindingUF, a::Int, b::Int, dx::Int, dy::Int, L::Int) + ra,ax,ay=rootpot!(u,a); rb,bx,by=rootpot!(u,b) + vx=dx+ax-bx; vy=dy+ay-by # X_rb - X_ra + if ra==rb + u.wrapx[ra] |= vx != 0 + u.wrapy[ra] |= vy != 0 + elseif u.size[ra] >= u.size[rb] + u.parent[rb]=ra; u.wx[rb]=vx; u.wy[rb]=vy + u.size[ra]+=u.size[rb] + u.wrapx[ra] |= u.wrapx[rb]; u.wrapy[ra] |= u.wrapy[rb] + else + u.parent[ra]=rb; u.wx[ra]=-vx; u.wy[ra]=-vy + u.size[rb]+=u.size[ra] + u.wrapx[rb] |= u.wrapx[ra]; u.wrapy[rb] |= u.wrapy[ra] + end +end + +function wrapping(u::WindingUF) + anyx=false; anyy=false; both=false + for i in eachindex(u.parent) + u.parent[i]==i || continue + anyx |= u.wrapx[i]; anyy |= u.wrapy[i] + both |= u.wrapx[i] && u.wrapy[i] + end + (!anyx && !anyy, both, anyx, anyy) +end + +function flip_clusters!(spins,u,rng) + flips=Dict{Int,Bool}() + for i in eachindex(spins) + r,_,_=rootpot!(u,i) + f=get!(flips,r,rand(rng,Bool)) + f && (spins[i] = -spins[i]) + end + maximum(u.size[i] for i in eachindex(u.parent) if u.parent[i]==i) +end + +function direct_sweep!(spins,g,beta,rng) + N=length(spins); L=g.L; u=WindingUF(N) + for a in 1:N-1 + xa,ya=coords(a,L) + for b in a+1:N + xb,yb=coords(b,L); dx=minimum_delta(xb-xa,L); dy=minimum_delta(yb-ya,L) + k=findfirst(i->g.dx[i]==dx && g.dy[i]==dy, eachindex(g.dx)) + spins[a]==spins[b] && rand(rng)<-expm1(-2beta*g.weight[k]) && add_edge!(u,a,b,dx,dy,L) + end + end + wr=wrapping(u); c1=flip_clusters!(spins,u,rng) + wr,c1 +end + +function randpoisson(rng,lambda) + total=0; chunks=max(1,ceil(Int,lambda/20)); lam=lambda/chunks + for _ in 1:chunks + limit=exp(-lam); p=1.0; k=0 + while true + k+=1; p*=rand(rng) + p<=limit && break + end + total += k-1 + end + total +end + +function fast_sweep!(spins,g,beta,rng) + N=length(spins); L=g.L; u=WindingUF(N) + for _ in 1:randpoisson(rng,4beta*N) + a=rand(rng,1:N); k=searchsortedfirst(g.cdf,rand(rng)) + x,y=coords(a,L); b=site(x+g.dx[k],y+g.dy[k],L) + spins[a]==spins[b] && add_edge!(u,a,b,g.dx[k],g.dy[k],L) + end + wr=wrapping(u); c1=flip_clusters!(spins,u,rng) + wr,c1 +end + +function reset!(u::WindingUF) + @inbounds for i in eachindex(u.parent) + u.parent[i]=i + u.size[i]=1 + u.wx[i]=0 + u.wy[i]=0 + u.wrapx[i]=false + u.wrapy[i]=false + end + u +end + +function flip_clusters_array!(spins,u::WindingUF,flips::Vector{Int8},rng) + fill!(flips,Int8(-1)) + largest=0 + @inbounds for i in eachindex(u.parent) + if u.parent[i]==i + flips[i]=rand(rng,Bool) ? Int8(1) : Int8(0) + largest=max(largest,u.size[i]) + end + end + @inbounds for i in eachindex(spins) + r,_,_=rootpot!(u,i) + flips[r]==1 && (spins[i] = -spins[i]) + end + largest +end + +""" +Perform one exact nearest-neighbor Swendsen-Wang/FK sweep on an L x L +periodic square lattice with coupling J=1. Each right/up bond is visited +once and activated with probability 1-exp(-2 beta) when its endpoint spins +agree. The supplied union-find and flip buffers are reused between sweeps. +""" +function nearest_neighbor_sweep!(spins,beta,rng,u::WindingUF,flips::Vector{Int8}) + N=length(spins) + L=isqrt(N) + L*L==N || throw(ArgumentError("nearest-neighbor state must have L^2 spins")) + length(u.parent)==N || throw(ArgumentError("union-find size mismatch")) + length(flips)==N || throw(ArgumentError("flip-buffer size mismatch")) + reset!(u) + p=-expm1(-2beta) + @inbounds for y in 0:L-1, x in 0:L-1 + a=site(x,y,L) + b=site(x+1,y,L) + spins[a]==spins[b] && rand(rng)

=3 || throw(ArgumentError("L must be at least 3 for the periodic bond convention")) + therm>=0 || throw(ArgumentError("therm must be nonnegative")) + meas>=100 || throw(ArgumentError("meas must be at least 100")) + rng=MersenneTwister(seed) + spins=rand(rng,(-1,1),L^2) + u=WindingUF(length(spins)) + flips=fill(Int8(-1),length(spins)) + for sweep in 1:therm + nearest_neighbor_sweep!(spins,beta,rng,u,flips) + if progress_every>0 && sweep%progress_every==0 + println("PROGRESS phase=thermalization sweep=$sweep total=$therm") + flush(stdout) + end + end + mabs=Vector{Float64}(undef,meas) + m2=Vector{Float64}(undef,meas) + m4=Vector{Float64}(undef,meas) + r0=Vector{Float64}(undef,meas) + r2=Vector{Float64}(undef,meas) + c1=Vector{Float64}(undef,meas) + t=time() + for sweep in 1:meas + wr,c=nearest_neighbor_sweep!(spins,beta,rng,u,flips) + m=sum(spins)/length(spins) + mabs[sweep]=abs(m) + m2[sweep]=m^2 + m4[sweep]=m^4 + r0[sweep]=wr[1] + r2[sweep]=wr[2] + c1[sweep]=c + if progress_every>0 && sweep%progress_every==0 + partial_q=mean(@view m2[1:sweep])^2/mean(@view m4[1:sweep]) + partial_rp=mean(@view r2[1:sweep])-2mean(@view r0[1:sweep]) + partial_chi=L^2*mean(@view m2[1:sweep]) + println("PROGRESS phase=measurement sweep=$sweep total=$meas Qm=$partial_q Rp=$partial_rp chi=$partial_chi") + flush(stdout) + end + end + requested_blocks=isnothing(nb) ? blocks : nb + nblocks=min(requested_blocks,max(2,meas÷50)) + bs=meas÷nblocks + used=nblocks*bs + block(v)=[mean(@view v[(i-1)*bs+1:i*bs]) for i in 1:nblocks] + bm2=block(@view m2[1:used]) + bm4=block(@view m4[1:used]) + br0=block(@view r0[1:used]) + br2=block(@view r2[1:used]) + rp_series=r2.-2r0 + brp=block(@view rp_series[1:used]) + bc1=block(@view c1[1:used]) + bqm=bm2.^2 ./ bm4 + bchi=L^2 .* bm2 + q=mean(m2)^2/mean(m4) + rp=mean(r2)-2mean(r0) + chi=L^2*mean(m2) + stderr_blocks(v)=length(v)>1 ? std(v)/sqrt(length(v)) : NaN + function tauint(v) + z=v.-mean(v) + den=sum(abs2,z) + den==0 && return 0.5 + tau=0.5 + for lag in 1:min(100,meas÷10) + rho=dot(@view(z[1:end-lag]),@view(z[1+lag:end]))/den + rho<=0 && break + tau+=rho + end + tau + end + summary=(;L,model="nearest_neighbor",beta,seed,therm,meas, + mean_abs_m=mean(mabs),mean_m2=mean(m2),mean_m4=mean(m4), + Qm=q,se_Qm=stderr_blocks(bqm),chi,se_chi=stderr_blocks(bchi), + R0=mean(r0),R2=mean(r2),Rp=rp,se_Rp=stderr_blocks(brp), + mean_C1=mean(c1),tau_m2=tauint(m2),blocks=nblocks, + runtime_s=time()-t,sumJ=4.0) + return_blocks ? (summary=summary,block_m2=bm2,block_m4=bm4, + block_qm=bqm,block_chi=bchi,block_r0=br0, + block_r2=br2,block_rp=brp, + block_c1=bc1) : summary +end + +function run_chain(;L=8,sigma=1.875,beta=0.336985,seed=1,therm=100,meas=500,algorithm=:fast,return_blocks=false) + rng=MersenneTwister(seed); g=Geometry(L,sigma); spins=rand(rng,(-1,1),L^2) + sweep! = algorithm==:fast ? fast_sweep! : direct_sweep! + for _ in 1:therm; sweep!(spins,g,beta,rng); end + mabs=Float64[]; m2=Float64[]; m4=Float64[]; r0=Float64[]; r2=Float64[]; c1=Float64[] + t=time() + for _ in 1:meas + wr,c=sweep!(spins,g,beta,rng); m=sum(spins)/length(spins) + push!(mabs,abs(m)); push!(m2,m^2); push!(m4,m^4) + push!(r0,wr[1]); push!(r2,wr[2]); push!(c1,c) + end + q=mean(m2)^2/mean(m4); rp=mean(r2)-2mean(r0); chi=L^2*mean(m2) + nb=min(20,max(2,meas÷50)); bs=meas÷nb + block(v)=[mean(@view v[(i-1)*bs+1:i*bs]) for i in 1:nb] + stderr(v)=std(block(v))/sqrt(nb) + function tauint(v) + z=v.-mean(v); den=sum(abs2,z); den==0 && return 0.5 + tau=0.5 + for lag in 1:min(100,meas÷10) + rho=dot(@view(z[1:end-lag]),@view(z[1+lag:end]))/den + rho<=0 && break + tau+=rho + end + tau + end + summary=(;L,sigma,beta,seed,therm,meas,mean_abs_m=mean(mabs),mean_m2=mean(m2), + mean_m4=mean(m4),Qm=q,chi,R0=mean(r0),R2=mean(r2),Rp=rp, + mean_C1=mean(c1),se_m2=stderr(m2),se_Rp=stderr(r2.-2r0), + tau_m2=tauint(m2),blocks=nb,runtime_s=time()-t,sumJ=coupling_sum(g)) + return_blocks ? (summary=summary, block_m2=block(m2), block_rp=block(r2.-2r0), + block_c1=block(c1)) : summary +end + +end diff --git "a/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/test/runtests.jl" "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/test/runtests.jl" new file mode 100644 index 000000000..43b056696 --- /dev/null +++ "b/tracks/qmc/solutions/\350\226\233\345\256\232\350\260\224\347\232\204\345\245\227\351\251\254\346\235\206/long_range_ising_fk/test/runtests.jl" @@ -0,0 +1,59 @@ +using Test, Random +include("../src/LongRangeIsingFK.jl") +using .LongRangeIsingFK + +@testset "geometry and normalization" begin + @test minimum_delta(7,8)==-1 + @test minimum_delta(4,8)==-4 + for L in (4,8,16), s in (1.75,1.875,2.0) + @test coupling_sum(Geometry(L,s)) ≈ 4 atol=2e-14 + end +end + +@testset "winding union-find" begin + L=4 + u=WindingUF(L^2); add_edge!(u,1,2,1,0,L); @test wrapping(u)[1] + u=WindingUF(L^2) + for x in 0:L-1; add_edge!(u,x+1,mod(x+1,L)+1,1,0,L); end + @test wrapping(u)[3] && !wrapping(u)[4] + u=WindingUF(L^2) + for y in 0:L-1; add_edge!(u,1+y*L,1+mod(y+1,L)*L,0,1,L); end + @test !wrapping(u)[3] && wrapping(u)[4] + u=WindingUF(L^2) + for x in 0:L-1; add_edge!(u,x+1,mod(x+1,L)+1,1,0,L); end + for y in 0:L-1; add_edge!(u,1+y*L,1+mod(y+1,L)*L,0,1,L); end + @test wrapping(u)[2] + u=WindingUF(L^2); add_edge!(u,4,1,1,0,L); @test wrapping(u)[1] + u=WindingUF(L^2) + add_edge!(u,1,3,-2,0,L); add_edge!(u,3,1,-2,0,L) + @test wrapping(u)[3] +end + +@testset "direct and fast FK sanity" begin + a=run_chain(L=4,sigma=1.875,beta=0.336985,seed=11,therm=500,meas=4000,algorithm=:direct) + b=run_chain(L=4,sigma=1.875,beta=0.336985,seed=12,therm=500,meas=4000,algorithm=:fast) + @test abs(a.mean_m2-b.mean_m2)<0.06 + @test abs(a.Qm-b.Qm)<0.08 + @test abs(a.Rp-b.Rp)<0.12 +end + +@testset "exact nearest-neighbor FK" begin + L=8 + spins=ones(Int,L^2) + u=WindingUF(L^2) + flips=fill(Int8(-1),L^2) + wr,c1=nearest_neighbor_sweep!(spins,0.0,MersenneTwister(101),u,flips) + @test wr[1] && !wr[2] + @test c1==1 + + fill!(spins,1) + wr,c1=nearest_neighbor_sweep!(spins,Inf,MersenneTwister(102),u,flips) + @test wr[2] && wr[3] && wr[4] + @test c1==L^2 + + r=run_nn_chain(L=L,seed=103,therm=500,meas=5000,blocks=20) + @test r.model=="nearest_neighbor" + @test r.sumJ==4.0 + @test 0.78