Skip to content

Commit

Permalink
Fixed constructor call issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauri-codes committed Aug 2, 2023
1 parent 77b7294 commit c5284a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dscribe/descriptors/soap.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,12 +687,12 @@ def derivatives_numerical(
self._weighting,
self.average,
cutoff_padding,
alphas,
betas,
self._atomic_numbers,
self.species_weights,
self.periodic,
self.compression,
alphas,
betas,
)
# Calculate numerically with extension
soap_gto.derivatives_numerical(
Expand Down Expand Up @@ -721,12 +721,12 @@ def derivatives_numerical(
self._weighting,
self.average,
cutoff_padding,
rx,
gss,
self._atomic_numbers,
self.species_weights,
self.periodic,
self.compression,
rx,
gss,
)
soap_poly.derivatives_numerical(
d,
Expand Down Expand Up @@ -791,12 +791,12 @@ def derivatives_analytical(
self._weighting,
self.average,
cutoff_padding,
alphas,
betas,
self._atomic_numbers,
self.species_weights,
self.periodic,
self.compression,
alphas,
betas,
)

# These arrays are only used internally by the C++ code.
Expand Down

0 comments on commit c5284a5

Please sign in to comment.