Coverage for src/bwd/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-12 11:56 +0000
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-12 11:56 +0000
1"""
2Module level documentation for the Balancing Walk Design.
4This package is a truly minimal implementation in Python with
5only a dependency on numpy. There are only two classes implemented
6in this package:
8- [`BWD`](bwd.md) - The Balancing Walk Design with restarts of the algorithm.
9- [`BWDRandom`](bwd_random.md) - The Balancing Walk Design which reverts to simple randomization
10rather than restarting.
11"""
13from .bwd import BWD as BWD
14from .bwd_random import BWDRandom as BWDRandom
15from .multi_bwd import MultiBWD as MultiBWD
16from .online import Online as Online