Coverage for strongcoca/calculators/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-10-26 18:44 +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""" 

6 

7from .casida_calculator import CasidaCalculator 

8from .polarizability_calculator import PolarizabilityCalculator 

9 

10__all__ = ['CasidaCalculator', 'PolarizabilityCalculator']