Skip to content

Commit

Permalink
metric types match cmdstan args
Browse files Browse the repository at this point in the history
  • Loading branch information
mitzimorris committed Dec 7, 2023
1 parent 3591ded commit cebb8bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stan/mcmc/hmc/hamiltonians/dense_e_point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class dense_e_point : public ps_point {
}

inline std::string metric_type() {
return "dense";
return "dense_e";
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/stan/mcmc/hmc/hamiltonians/diag_e_point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class diag_e_point : public ps_point {
}

inline std::string metric_type() {
return "diag";
return "diag_e";
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/stan/mcmc/hmc/hamiltonians/unit_e_point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class unit_e_point : public ps_point {
}

inline std::string metric_type() {
return "unit";
return "unit_e";
}
};

Expand Down

0 comments on commit cebb8bb

Please sign in to comment.