Skip to content

Commit d090fdb

Browse files
committed
Add benchmarks to list to be run
1 parent 2500ac0 commit d090fdb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

benchmarks/domains/__init__.py

+16
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
"""Benchmark domains."""
22

33
from benchmarks.definition.base import Benchmark
4+
from benchmarks.domains.arylhalides_tl_substance import (
5+
arylhalides_tl_substance_benchmark,
6+
)
7+
from benchmarks.domains.direct_arylation_tl_temp import (
8+
direct_arylation_tl_temp_benchmark,
9+
)
10+
from benchmarks.domains.easom_tl_noise import easom_tl_noise_benchmark
11+
from benchmarks.domains.hartmann_tl_inverted_noise import (
12+
hartmann_tl_inverted_noise_benchmark,
13+
)
14+
from benchmarks.domains.michalewicz_tl_noise import michalewicz_tl_noise_benchmark
415
from benchmarks.domains.synthetic_2C1D_1C import synthetic_2C1D_1C_benchmark
516

617
BENCHMARKS: list[Benchmark] = [
718
synthetic_2C1D_1C_benchmark,
19+
arylhalides_tl_substance_benchmark,
20+
direct_arylation_tl_temp_benchmark,
21+
hartmann_tl_inverted_noise_benchmark,
22+
easom_tl_noise_benchmark,
23+
michalewicz_tl_noise_benchmark,
824
]
925

1026
__all__ = ["BENCHMARKS"]

0 commit comments

Comments
 (0)