From aaf3f7c892d2ff1c609b45933b16311495f2a5ea Mon Sep 17 00:00:00 2001 From: Chi Cheng Date: Thu, 6 Mar 2025 14:17:12 +0000 Subject: [PATCH] corrected comment --- MDANSE/Src/MDANSE/Mathematics/Arithmetic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MDANSE/Src/MDANSE/Mathematics/Arithmetic.py b/MDANSE/Src/MDANSE/Mathematics/Arithmetic.py index 8c117ad08..b0f3a9c81 100644 --- a/MDANSE/Src/MDANSE/Mathematics/Arithmetic.py +++ b/MDANSE/Src/MDANSE/Mathematics/Arithmetic.py @@ -56,7 +56,7 @@ def get_weights( factor = atom_conc_product**conc_exp * property_product # E.g. for property b_coh, 5 Cu atoms, 100 total atoms, and dim=2 - # factor = (5*5/(100*100))**c_exp * b_coh(Cu)*b_coh(Cu) + # factor = (5*5/(100*100))**conc_exp * b_coh(Cu)*b_coh(Cu) weights[elements] = np.float64(np.copy(factor)) normFactor += atom_conc_product * property_product