Skip to content
Merged
Show file tree
Hide file tree
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
45 changes: 0 additions & 45 deletions .github/workflows/publish_binary.yml

This file was deleted.

2 changes: 1 addition & 1 deletion cppe/core/bmatrix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Eigen::VectorXd BMatrix::apply(const Eigen::VectorXd& induced_moments) {
auto scheme = m_options.summation_induced_fields;
if (scheme == "direct") {
return apply_direct(induced_moments);
} else if (scheme == "fmm" or scheme == "bh") {
} else if (scheme == "fmm") {
return apply_fast_summation(induced_moments, scheme);
} else {
throw std::invalid_argument("Invalid summation scheme for induced fields provided.");
Expand Down