Skip to content
Snippets Groups Projects
Commit 94ec9133 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[local.integrands.product] enable vector-valued case

parent 96008d7c
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ public:
// compute product
for (size_t ii = 0; ii < rows; ++ii)
for (size_t jj = 0; jj < cols; ++jj)
result[ii][jj] = function_value * test_basis_values_[ii] * ansatz_basis_values_[jj];
result[ii][jj] = function_value * (test_basis_values_[ii] * ansatz_basis_values_[jj]);
} // ... evaluate(...)
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment