From bbabde8b8aa140cc8a005be0e41727c0069e7c3d Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Fri, 30 Aug 2024 14:32:50 +0200 Subject: [PATCH] [EDF30822] : Add missing operator to request on presence of iterative stats. --- src/PyWrapping/medcoupling.i | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/PyWrapping/medcoupling.i b/src/PyWrapping/medcoupling.i index c8f20df05..283ce6d8e 100644 --- a/src/PyWrapping/medcoupling.i +++ b/src/PyWrapping/medcoupling.i @@ -138,6 +138,15 @@ return false; #endif } + + bool HasIterativeStatisticsExt() + { +#ifdef WITH_ITERATIVE_STATISTICS + return true; +#else + return false; +#endif + } bool HasShapeRecognitionExt() { -- 2.39.2