| # Copyright (c) 2026 Simulacra Research Inc. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| from .backend import ( | |
| BeamCandidates, | |
| CanonicalContext, | |
| EvalBackend, | |
| LargeNCompilation, | |
| MCMCPopulation, | |
| ) | |
| from .runner import evaluate | |
| from .runtime import DefaultEvalBackend, build_eval_backend | |
| from .statistics import ( | |
| ChannelMetrics, | |
| EnergyWindow, | |
| P01_TWO_SIDED, | |
| select_winner_per_physical, | |
| standard_error_from_tailstd, | |
| welch_band_walkermean, | |
| ) | |
| from .types import ContestCandidate, ContestResult, EvalMetric, EvalResult | |
| __all__ = [ | |
| "BeamCandidates", | |
| "CanonicalContext", | |
| "ChannelMetrics", | |
| "ContestCandidate", | |
| "ContestResult", | |
| "DefaultEvalBackend", | |
| "EnergyWindow", | |
| "EvalBackend", | |
| "EvalMetric", | |
| "EvalResult", | |
| "LargeNCompilation", | |
| "MCMCPopulation", | |
| "P01_TWO_SIDED", | |
| "evaluate", | |
| "build_eval_backend", | |
| "select_winner_per_physical", | |
| "standard_error_from_tailstd", | |
| "welch_band_walkermean", | |
| ] | |