Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Critical Points (Vectorized) and Finding Bond Paths #59

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions chemtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from chemtools.denstools import *
from chemtools.utils import *
from chemtools.outputs import *
from chemtools.topology import *
import horton


Expand Down
4 changes: 3 additions & 1 deletion chemtools/topology/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@
"""The Scalar Field Topological Analysis Module."""


from chemtools.topology import *
from chemtools.topology.critical import *
from chemtools.topology.ode import *
from chemtools.topology.point import *
Loading