From 27efe6438673ba0db73df3c4196f5cde4735cc96 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Mon, 8 Nov 2021 18:00:19 -0500
Subject: [PATCH] Expose a method for debugging loading of fluid

---
 interface/multifluid.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/interface/multifluid.cpp b/interface/multifluid.cpp
index a493dda..fc63024 100644
--- a/interface/multifluid.cpp
+++ b/interface/multifluid.cpp
@@ -17,4 +17,5 @@ void add_multifluid(py::module& m) {
     // Expose some additional functions for working with the JSON data structures and resolving aliases
     m.def("get_BIPdep", &MultiFluidReducingFunction::get_BIPdep, py::arg("BIPcollection"), py::arg("identifiers"), py::arg("flags") = nlohmann::json{});
     m.def("build_alias_map", &build_alias_map, py::arg("root"));
+    m.def("collect_component_json", &collect_component_json, py::arg("identifiers"), py::arg("root"));
 }
\ No newline at end of file
-- 
GitLab