From 6d876d861cdaedeeb2bc2787da92035b657d6713 Mon Sep 17 00:00:00 2001 From: "Martin D. Weinberg" Date: Mon, 13 May 2024 07:34:59 -0400 Subject: [PATCH] Revert the density sign change because it breaks the orthoTest [no ci] --- expui/BiorthBess.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/expui/BiorthBess.cc b/expui/BiorthBess.cc index 6114da63..82a0c759 100644 --- a/expui/BiorthBess.cc +++ b/expui/BiorthBess.cc @@ -82,8 +82,6 @@ void BiorthBess::get_dens(double r, Eigen::MatrixXd& p) aa*dens_grid[l].rw2(n, klo) + bb*dens_grid[l].rw2(n, khi); } } - - p *= -1.0; } @@ -111,8 +109,6 @@ void BiorthBess::get_potl_dens(double r, Eigen::MatrixXd& p, Eigen::MatrixXd& d) aa*dens_grid[l].rw2(n, klo) + bb*dens_grid[l].rw2(n, khi); } } - - d *= -1.0; } double BiorthBess::dens(double r, int n)