From 8ade0e71d500293b8f3507d2eb047690fe9dd0ee Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 24 Mar 2024 00:20:39 +0100 Subject: [PATCH] Fix checker failure on nmsimplex methods --- checker.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/checker.py b/checker.py index 43f9cff4..83f9a5b8 100644 --- a/checker.py +++ b/checker.py @@ -6,7 +6,14 @@ MACROS_TO_IGNORE = ["ffi_wrap", "wrap_callback", "ffi_wrapper"] -FUNC_NAME_TO_IGNORE = ["new", "new_with_init", "from_slice"] +FUNC_NAME_TO_IGNORE = [ + "new", + "new_with_init", + "from_slice", + "nm_simplex", + "nm_simplex2", + "nm_simplex2_rand", +] def read_file(path):