From 0f2f23e4c35c086fbc6b7812aeabf563ec6657d5 Mon Sep 17 00:00:00 2001 From: Guillaume Fraux Date: Thu, 21 Sep 2023 17:06:20 +0200 Subject: [PATCH] Small docs changes in splines --- python/rascaline/rascaline/utils/splines.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/rascaline/rascaline/utils/splines.py b/python/rascaline/rascaline/utils/splines.py index 247cbdfc6..af8534b5e 100644 --- a/python/rascaline/rascaline/utils/splines.py +++ b/python/rascaline/rascaline/utils/splines.py @@ -2,9 +2,9 @@ Splined radial integrals ======================== -Classes for generating spline points which can be used as input for the for the radial -integral hyper paramater option. For an complete example for the LE how to use the -classes see :ref:`example-splines`. +Classes for generating splines which can be used as tabulated radial integrals in the +various SOAP and LODE calculators. For an complete example of how to use these classes +see :ref:`example-splines`. .. autoclass:: rascaline.utils.RadialIntegralSplinerBase :members: @@ -322,7 +322,7 @@ class RadialIntegralFromFunction(RadialIntegralSplinerBase): where :math:`g(r)` is the radially symmetric density function, `R_n(r)` the radial basis function and :math:`n` the current radial channel. This should be - implemented in the child classes. + pre-computed and provided as a separate parameter. Example -------