Skip to content
Snippets Groups Projects
Commit 96f043a1 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Implement jacobian_apply

parent f5a2c7d2
No related branches found
No related tags found
No related merge requests found
......@@ -1783,7 +1783,7 @@ def generate_driver(formdatas, data):
# In case of operator conunting we only assemble the matrix and evaluate the residual
#assemble_matrix_timer()
evaluate_residual_timer()
# apply_jacobian_timer()
apply_jacobian_timer()
elif is_stationary():
# We could also use solve if we are not interested in visualization
vtkoutput()
......
......@@ -37,6 +37,16 @@ class SumFactInterface(PDELabInterface):
visitor.indices = indices
return ret
def pymbolic_apply_function_gradient(self, element, restriction, component, visitor=None):
ret, indices = pymbolic_coefficient_gradient(element, restriction, component, name_applycontainer, visitor)
visitor.indices = indices
return ret
def pymbolic_apply_function(self, element, restriction, component, visitor=None):
ret, indices = pymbolic_coefficient(element, restriction, component, name_applycontainer, visitor)
visitor.indices = indices
return ret
def quadrature_inames(self):
return quadrature_inames()
......
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