From 98444aba3e1b0e6ecbfcdced442d9c16ffe14aa7 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Thu, 28 Dec 2023 13:29:28 -0500 Subject: [PATCH] another windows fix --- gtsam/nonlinear/internal/ChiSquaredInverse.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtsam/nonlinear/internal/ChiSquaredInverse.h b/gtsam/nonlinear/internal/ChiSquaredInverse.h index 5a25a030e..e0284c313 100644 --- a/gtsam/nonlinear/internal/ChiSquaredInverse.h +++ b/gtsam/nonlinear/internal/ChiSquaredInverse.h @@ -13,7 +13,8 @@ * @file ChiSquaredInverse.h * @brief Implementation of the Chi Squared inverse function. * - * Uses the cephes 3rd party library to help with gamma inverse functions. + * Uses the cephes 3rd party library to help with + * incomplete gamma inverse functions. * * @author Varun Agrawal */ @@ -41,9 +42,8 @@ namespace internal { * @param alpha Quantile value * @return double */ -double GTSAM_EXPORT chi_squared_quantile(const double dofs, - const double alpha) { - return 2 * cephes_igami(dofs / 2, alpha); +double chi_squared_quantile(const double dofs, const double alpha) { + return 2 * igami(dofs / 2, alpha); } } // namespace internal