Coverage for openxps/couplings/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-13 22:08 +0000
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-13 22:08 +0000
1"""
2.. module:: openxps.couplings
3 :platform: Linux, MacOS, Windows
4 :synopsis: Coupling between physical and extended phase-space systems.
6.. classauthor:: Charlles Abreu <craabreu@gmail.com>
8"""
10from .base import Coupling, CouplingSum
11from .collective_variable_coupling import CollectiveVariableCoupling
12from .harmonic_coupling import HarmonicCoupling
13from .inner_product_coupling import InnerProductCoupling
15__all__ = [
16 "CollectiveVariableCoupling",
17 "HarmonicCoupling",
18 "InnerProductCoupling",
19]