From 20eb606d8cee6ee3033c6587746d6df831ef822d Mon Sep 17 00:00:00 2001 From: maxfirmbach Date: Tue, 5 Nov 2024 14:42:32 -0700 Subject: [PATCH] Tell aggregate export about Graph and Aggregates Signed-off-by: maxfirmbach --- .../muelu/src/Interface/MueLu_ParameterListInterpreter_def.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/muelu/src/Interface/MueLu_ParameterListInterpreter_def.hpp b/packages/muelu/src/Interface/MueLu_ParameterListInterpreter_def.hpp index e46d286abb90..9c041e18c81f 100644 --- a/packages/muelu/src/Interface/MueLu_ParameterListInterpreter_def.hpp +++ b/packages/muelu/src/Interface/MueLu_ParameterListInterpreter_def.hpp @@ -1331,6 +1331,8 @@ void ParameterListInterpreter:: MUELU_TEST_AND_SET_PARAM_2LIST(paramList, defaultList, "aggregation: output file: build colormap", bool, aggExportParams); aggExport->SetParameterList(aggExportParams); aggExport->SetFactory("DofsPerNode", manager.GetFactory("DofsPerNode")); + aggExport->SetFactory("Aggregates", manager.GetFactory("Aggregates")); + aggExport->SetFactory("Graph", manager.GetFactory("Graph")); if (!RAP.is_null()) RAP->AddTransferFactory(aggExport);