Skip to content

Commit

Permalink
Remove unused comment
Browse files Browse the repository at this point in the history
  • Loading branch information
HanatoK committed Sep 19, 2023
1 parent 72c0ea3 commit e57c55b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/colvar_neuralnetworkcompute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ std::vector<std::vector<double>> neuralNetworkCompute::multiply_matrix(const std
const size_t n = B.size();
if (A[0].size() != n) {
std::cerr << "Error on multiplying matrices!\n";
// std::cerr << fmt::format("Error on multiplying matrices ({}, {}) and ({}, {})!\n", m, A[0].size(), n, B[0].size());
}
const size_t t = B[0].size();
std::vector<std::vector<double>> C(m, std::vector<double>(t, 0.0));
Expand Down

0 comments on commit e57c55b

Please sign in to comment.