Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# File solely for gently deprecating this BaseSiesta class.
2import warnings
3import numpy as np
4from ase.calculators.siesta.siesta import Siesta
7class BaseSiesta(Siesta):
8 def __init__(self, *args, **kwargs):
9 warnings.warn(
10 "The BaseSiesta calculator class will no longer be supported. "
11 "Use 'ase.calculators.siesta.Siesta in stead.",
12 np.VisibleDeprecationWarning)
13 Siesta.__init__(self, *args, **kwargs)