added variable cluster finder

This commit is contained in:
Erik Fröjdh
2024-10-30 17:22:57 +01:00
parent dde92b993f
commit a466887064
5 changed files with 109 additions and 62 deletions

View File

@@ -1,5 +1,6 @@
#include "file.hpp"
#include "var_cluster.hpp"
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
@@ -11,4 +12,5 @@ PYBIND11_MODULE(_aare, m) {
define_file_io_bindings(m);
define_var_cluster_finder_bindings(m);
}