Coverage for strongcoca / calculators / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-07-25 16:26 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-07-25 16:26 +0000
1"""The evaluation of correlation energy and spectrum of a coupled system is
2handled by calculator objects. These calculators use different internal
3representations of the response functions of the polarizable objects that
4build up the coupled system.
5"""
7from .casida_calculator import CasidaCalculator
8from .polarizability_calculator import PolarizabilityCalculator
9from .retarded_polarizability_calculator import RetardedPolarizabilityCalculator
10__all__ = ['CasidaCalculator',
11 'PolarizabilityCalculator',
12 'RetardedPolarizabilityCalculator']