跳到主要内容
知仓学习社ZHICANG

stoc-reproducibility

Use when hardening a STOC (ACM Symposium on Theory of Computing) paper so its results can be independently checked — proof completeness across the e…

不碰外部(只输出文字)无严重或高危命中brycewang-stanford/Awesome-Journal-Skills

它会碰到什么

扫了多少1 个文本文件,7 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

STOC Reproducibility

For a proofs-only venue, "reproducible" means a third party can verify every

claimed theorem without contacting the authors. STOC's structure makes this a

two-document problem that pure-appendix venues do not have: the committee

reads a 12-page guaranteed window, the community reads the arXiv/ECCC full

version, and the paper is only as checkable as the pair is consistent. No

checklist form enforces any of this — the STOC 2026 CFP contains none (checked

2026-07-08) — so the discipline below is self-imposed or absent.

Statement drift: the STOC-specific failure

Whenever the same theorem exists in two documents, the versions decay apart:

a hypothesis strengthened during a proof repair gets updated in one file only; a

constant improves in the full version while the abstract still advertises the old

one; numbering shifts and cross-references silently point at the wrong lemma.

Drift is not cosmetic — a reader who finds Theorem 2's statement differing

between the proceedings and arXiv cannot tell which one is proved.

The mechanical cure is a single-source build: one repository of statement

files included by both documents, so a statement physically cannot fork.

% statements/thm-main.tex  (the only copy of the claim, ever)
\begin{theorem}[Main; restated in the full version as Theorem~\ref{thm:main}]
\label{thm:main}
Under Assumption~\ref{ass:degree}, there is a deterministic
$O(m \log^{3} n)$-time algorithm computing a $(1+\varepsilon)$-approximate
solution for every fixed $\varepsilon > 0$.
\end{theorem}

% extended-abstract.tex          % full-version.tex
\input{statements/thm-main}      % \input{statements/thm-main}
\begin{proofsketch} ... \end{proofsketch}   % \begin{proof} ... \end{proof}

An \iffull toggle in a shared preamble achieves the same with one master file;

either way, the invariant is one copy of every statement on disk.

Checkability audit before submission

| Question a verifier will ask | Passing standard |

|---|---|

| Is every claim in the first 12 pages proved somewhere I can reach? | Each theorem carries a forward pointer (appendix section or full-version anchor) |

| Do the two documents state identical theorems? | Single-source statements, or a diff run over extracted statement blocks |

| Are all hypotheses visible at the statement? | No condition introduced only inside a proof ("assume wlog the graph is connected" that is not wlog) |

| Do invoked external theorems apply? | Citation with result number, plus a line confirming your setting meets its hypotheses |

| Can the parameter trail be followed? | Constants named where they first appear; "for sufficiently large n" bounded explicitly at least once |

| Are "standard" steps actually standard? | Anything a second-year graduate student cannot fill in gets written out |

Computation that claims depend on

If any theorem rests on a machine check (case enumeration, solver certificate,

verified numerics), reproducibility requirements sharpen from "nice" to

"load-bearing":

  • Determinism: the run must be exactly repeatable — fixed enumeration order,

no wall-clock cutoffs deciding mathematical facts, solver versions pinned.

  • Independence: publish the certificate and a separate checker, so trust does

not reduce to trusting your search program (see stoc-artifact-evaluation

for packaging mechanics).

  • Description: the paper itself must specify the computation precisely enough

that someone could rewrite it from scratch; code is evidence, prose is the

specification.

Illustrative-only plots and timing anecdotes carry no proof weight and need only

honesty: seed and instance disclosure, no claims beyond what is proved

(stoc-experiments covers when to include them at all).

Verification workflow for the author team

  1. Freeze statements four weeks out; from then on, statement edits require a

team-visible diff, because every edit can invalidate a downstream proof.

  1. Assign each theorem a verifier who did not write its proof; record

pass/fail per proof section, and treat any "I believe it but cannot check

line 5" as a fail.

  1. Grep both documents for confessions: wlog, clearly, standard,

similar, it is easy to see — each hit either survives justification or

gets expanded.

  1. Re-derive the main constant chain once, by hand, on paper, from the final

text only. This catches the strengthened-hypothesis-updated-once bug that

review will otherwise catch for you.

  1. After camera-ready, keep the full version live-maintained: arXiv revision

with a dated changelog is the community's accepted correction channel.

Vignette: how drift actually happens

A team submits in November with Theorem 2 requiring subgaussian noise. In

December a reviewer-anticipating coauthor realizes the proof of Lemma 7 uses a

fourth-moment bound that subgaussianity gives but the written hypothesis does

not state; she patches the full-version draft to "subgaussian with parameter

$\sigma$" and adjusts two constants. The extended abstract is not touched —

nobody is editing a submitted file. At camera-ready in March, the proceedings

version is produced from the submitted sources, and the published extended

abstract now states a theorem the team knows is proved only under the amended

hypothesis. Nothing dishonest happened at any step; the pipeline had two copies

of one statement and no synchronization rule. The single-source layout above

makes this sequence structurally impossible, which is why it is worth the

Makefile friction.

Cycle-volatility warnings

  • If a future CFP introduces any structured checklist, code policy, or

supplementary channel, it will say so; the 2026 cycle had none (待核实 yearly).

  • The 12-page guaranteed window and the full-version expectation are 2026

wording; both shape where proofs must live, so re-read the live CFP before

restructuring.

Output format

[Checkability verdict] verifiable end-to-end / gaps found
[Statement-drift control] single-source / manual sync (risk) / diverged <- fix
[Hypothesis visibility] clean / hidden conditions at: <list>
[External results] all hypothesis-checked / unchecked: <citations>
[Load-bearing computation] none / deterministic + certified / unreproducible <- blocker

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。