Skip to content

Commit

Permalink
add get_information to ddm
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreMarchand20 committed Sep 10, 2023
1 parent f10d16a commit 44e3fea
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions include/htool/solvers/ddm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,13 +606,12 @@ class DDM {
}
}

std::string get_infos(const std::string &key) const {
if (hpddm_op->HA->get_rankworld() == 0) {
return infos[key];
}
return "";
std::string get_information(const std::string &key) const {
return infos[key];
}
std::map<std::string, std::string> get_information() const {
return infos;
}

int get_nevi() const {
return nevi;
}
Expand Down

0 comments on commit 44e3fea

Please sign in to comment.