File size: 989 Bytes
5ccb4fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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",
]