Coverage for gemlib/abc/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.16.1, created at 2026-09-15 19:54 +0000

1"""Approximate Bayesian Computation 

2 

3This module provides sampling algorithms for Approximate Bayesian Computation 

4(ABC) on :code:`gemlib` distributions. See each module member for detailed 

5documentation. 

6""" 

7 

8from gemlib.abc.abc_rejection_sampler import abc_rejection_sampler 

9 

10__all__ = ["abc_rejection_sampler"]