From 5f94a60e82a6ded15211b3b237b773c5c09a84cc Mon Sep 17 00:00:00 2001 From: Cole Kendrick Date: Fri, 31 May 2024 14:19:08 -0700 Subject: [PATCH] Disable libROM mfem check temporarily --- bindings/pylibROM/pylibROM.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bindings/pylibROM/pylibROM.cpp b/bindings/pylibROM/pylibROM.cpp index b41f5c1..c225488 100644 --- a/bindings/pylibROM/pylibROM.cpp +++ b/bindings/pylibROM/pylibROM.cpp @@ -5,9 +5,10 @@ // check that libROM has MFEM if pylibROM is using MFEM #ifdef PYLIBROM_HAS_MFEM -#ifndef CAROM_HAS_MFEM -#error "libROM was not compiled with MFEM support" -#endif +// temporarily disabled until libROM upstream adds this option +// #ifndef CAROM_HAS_MFEM +// #error "libROM was not compiled with MFEM support" +// #endif #endif namespace py = pybind11;