Coverage for src/bwd/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2024-08-19 16:45 +0000

1""" 

2Module level documentation for the Balancing Walk Design. 

3 

4This package is a truly minimal implementation in Python with  

5only a dependency on numpy. There are only two classes implemented 

6in this package: 

7 

8- [`BWD`](bwd) - The Balancing Walk Design with restarts of the algorithm. 

9- [`BWDRandom`](bwd_random) - The Balancing Walk Design which reverts to simple randomization 

10rather than restarting. 

11""" 

12 

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