-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace generate_splines by a more flexible class
Also allow to calculate the derivative of the radial integral numerically.
- Loading branch information
1 parent
4648a26
commit 0033cb2
Showing
9 changed files
with
454 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ Utility functions and classes that extend the core usage of rascaline. | |
:maxdepth: 1 | ||
|
||
power-spectrum | ||
splines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.. automodule:: rascaline.utils.splines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
from . import utils # noqa | ||
from .calculators import ( | ||
AtomicComposition, | ||
CalculatorBase, | ||
LodeSphericalExpansion, | ||
NeighborList, | ||
SoapPowerSpectrum, | ||
SoapRadialSpectrum, | ||
SortedDistances, | ||
SphericalExpansion, | ||
SphericalExpansionByPair, | ||
) | ||
from .log import set_logging_callback # noqa | ||
from .profiling import Profiler # noqa | ||
from .status import RascalError # noqa | ||
from .systems import IntoSystem, SystemBase # noqa | ||
from .version import __version__ # noqa | ||
|
||
|
||
from .calculators import CalculatorBase # noqa isort: skip | ||
from .calculators import AtomicComposition # noqa isort: skip | ||
from .calculators import SortedDistances # noqa isort: skip | ||
from .calculators import NeighborList # noqa isort: skip | ||
from .calculators import LodeSphericalExpansion # noqa isort: skip | ||
from .calculators import SphericalExpansion # noqa isort: skip | ||
from .calculators import SphericalExpansionByPair # noqa isort: skip | ||
from .calculators import SoapRadialSpectrum # noqa isort: skip | ||
from .calculators import SoapPowerSpectrum # noqa isort: skip | ||
|
||
from .splines import generate_splines # noqa isort: skip | ||
__all__ = [ | ||
"AtomicComposition", | ||
"CalculatorBase", | ||
"LodeSphericalExpansion", | ||
"NeighborList", | ||
"SoapPowerSpectrum", | ||
"SoapRadialSpectrum", | ||
"SortedDistances", | ||
"SphericalExpansion", | ||
"SphericalExpansionByPair", | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.