We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70349a commit 555fac9Copy full SHA for 555fac9
2 files changed
.github/workflows/publish_binary.yml
cppe/core/bmatrix.cc
@@ -76,7 +76,7 @@ Eigen::VectorXd BMatrix::apply(const Eigen::VectorXd& induced_moments) {
76
auto scheme = m_options.summation_induced_fields;
77
if (scheme == "direct") {
78
return apply_direct(induced_moments);
79
- } else if (scheme == "fmm" or scheme == "bh") {
+ } else if (scheme == "fmm") {
80
return apply_fast_summation(induced_moments, scheme);
81
} else {
82
throw std::invalid_argument("Invalid summation scheme for induced fields provided.");
0 commit comments