Skip to content
Snippets Groups Projects
Commit a047cab9 authored by Tobias Leibner's avatar Tobias Leibner Committed by github-actions[bot]
Browse files

[local.integrals] fix compilation

parent e12e89a0
No related branches found
No related tags found
No related merge requests found
...@@ -120,8 +120,8 @@ public: ...@@ -120,8 +120,8 @@ public:
// evaluate the integrand // evaluate the integrand
LOG_(debug) << " point_in_{reference_element|physical_space} = {" << print(point_in_reference_element) << "|" LOG_(debug) << " point_in_{reference_element|physical_space} = {" << print(point_in_reference_element) << "|"
<< print(element.geometry().global(point_in_reference_element)) << print(element.geometry().global(point_in_reference_element))
<< "},\n integration_factor = " << integration_factor << "},\n integration_factor = " << factor << ", quadrature_weight = " << quadrature_point.weight()
<< ", quadrature_weight = " << quadrature_weight << std::endl; << std::endl;
integrand_->evaluate(test_basis, ansatz_basis, point_in_reference_element, integrand_values_, param); integrand_->evaluate(test_basis, ansatz_basis, point_in_reference_element, integrand_values_, param);
assert(integrand_values_.rows() >= rows && "This must not happen!"); assert(integrand_values_.rows() >= rows && "This must not happen!");
assert(integrand_values_.cols() >= cols && "This must not happen!"); assert(integrand_values_.cols() >= cols && "This must not happen!");
......
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