Skip to content

Commit

Permalink
add local_to_global_numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreMarchand20 committed Sep 12, 2023
1 parent 2f528bb commit b7cc753
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/htool
2 changes: 2 additions & 0 deletions src/htool/solver/utility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ void declare_solver_utility(py::module &m, std::string prefix = "") {
default_ddm_solver_class.def(py::init<DistributedOperator<CoefficientPrecision> &, const HMatrix<CoefficientPrecision, CoordinatePrecision> *, const VirtualGeneratorWithPermutation<CoefficientPrecision> &, const std::vector<int> &, const std::vector<int> &, const std::vector<int> &, const std::vector<std::vector<int>> &>());
default_ddm_solver_class.def_property_readonly(
"solver", [](const DefaultDDMSolverBuilder &self) { return &self.solver; }, py::return_value_policy::reference_internal);
default_ddm_solver_class.def_property_readonly(
"local_to_global_numbering", [](const DefaultDDMSolverBuilder &self) { return &self.local_to_global_numbering; }, py::return_value_policy::reference_internal);
}
#endif

0 comments on commit b7cc753

Please sign in to comment.