File: __init__.py

package info (click to toggle)
python-ase 3.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 15,448 kB
  • sloc: python: 144,945; xml: 2,728; makefile: 113; javascript: 47
file content (16 lines) | stat: -rw-r--r-- 507 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Methods for finding minimum-energy paths and/or saddle points."""

from ase.mep.autoneb import AutoNEB
from ase.mep.dimer import DimerControl, MinModeAtoms, MinModeTranslate
from ase.mep.dyneb import DyNEB
from ase.mep.neb import (
    NEB,
    NEBTools,
    SingleCalculatorNEB,
    idpp_interpolate,
    interpolate,
)

__all__ = ['NEB', 'NEBTools', 'DyNEB', 'AutoNEB', 'interpolate',
           'idpp_interpolate', 'SingleCalculatorNEB',
           'DimerControl', 'MinModeAtoms', 'MinModeTranslate']