From 0f8659c72ae28b91f558925614c89a677504ac02 Mon Sep 17 00:00:00 2001 From: "Myers, Audun D" Date: Wed, 9 Oct 2024 14:32:37 -0400 Subject: [PATCH] adding HG matching to __init__ under algorithms --- hypernetx/algorithms/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hypernetx/algorithms/__init__.py b/hypernetx/algorithms/__init__.py index 78b30c49..3dd7129d 100644 --- a/hypernetx/algorithms/__init__.py +++ b/hypernetx/algorithms/__init__.py @@ -19,6 +19,13 @@ hypergraph_homology_basis, interpret, ) +from hypernetx.algorithms.matching_algorithms import ( + greedy_matching, + maximal_matching, + iterated_sampling, + HEDCS_matching, + approximation_matching_checking, +) from hypernetx.algorithms.s_centrality_measures import ( s_betweenness_centrality, s_harmonic_closeness_centrality, @@ -116,4 +123,10 @@ "two_section", "kumar", "last_step", + # matching_algorithms API's + "greedy_matching", + "maximal_matching", + "iterated_sampling", + "HEDCS_matching", + "approximation_matching_checking", ]