Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clang_format #28

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Source/Background/KerrSchild.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ class KerrSchild
public:
// used to decide when to excise - ie when within the horizon of the BH
// note that this is not templated over data_t
bool check_if_excised(const Coordinates<double> &coords, const double innerH_buffer = 1.05, const double outerH_buffer = 0.9) const
bool check_if_excised(const Coordinates<double> &coords,
const double innerH_buffer = 1.05,
const double outerH_buffer = 0.9) const
{
// black hole params - mass M and spin a
const double M = m_params.mass;
Expand Down
Loading