Coverage for gemlib/abc/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-18 09:01 +0000
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-18 09:01 +0000
1"""Approximate Bayesian Computation
3This module provides sampling algorithms for Approximate Bayesian Computation
4(ABC) on :code:`gemlib` distributions. See each module member for detailed
5documentation.
6"""
8from gemlib.abc.abc_rejection_sampler import abc_rejection_sampler
10__all__ = ["abc_rejection_sampler"]