Coverage for strongcoca / calculators / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-04-15 18:15 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-04-15 18:15 +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
10__all__ = ['CasidaCalculator', 'PolarizabilityCalculator']