Skip to content

Commit

Permalink
Fixed undefined identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex authored and sunqm committed Feb 1, 2023
1 parent 0c9ab4d commit 933d2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optimizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,11 @@ FINT CINTset_pairdata(PairData *pairdata, double *ai, double *aj, double *ri, do
// <~ (d+1/sqrt(aij))^(li+lj) * (pi/aij)^1.5
aij = ai[iprim-1] + aj[jprim-1];
double log_rr_ij = 1.7 - 1.5 * approx_log(aij);
double dist_ij = sqrt(rr_ij);
int lij = li_ceil + lj_ceil;
if (lij > 0) {
#ifdef WITH_RANGE_COULOMB
double omega = env[PTR_RANGE_OMEGA];
double dist_ij = sqrt(rr_ij);
if (omega < 0) {
double r_guess = 8.;
double omega2 = omega * omega;
Expand Down

0 comments on commit 933d2dc

Please # to comment.