File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,8 @@ def jacobian_at(self, point):
181181 config = {"point_set" : PointSingleton (point )}
182182 config .update (self .config )
183183 config .update (use_canonical_quadrature_point_ordering = False ) # quad point ordering not relevant.
184+ interface = CellVerticesKernelInterface (self .interface )
185+ config .update (interface = interface )
184186 context = PointSetContext (** config )
185187 expr = self .preprocess (expr , context )
186188 return map_expr_dag (context .translator , expr )
@@ -194,6 +196,8 @@ def detJ_at(self, point):
194196 config = {"point_set" : PointSingleton (point )}
195197 config .update (self .config )
196198 config .update (use_canonical_quadrature_point_ordering = False ) # quad point ordering not relevant.
199+ interface = CellVerticesKernelInterface (self .interface )
200+ config .update (interface = interface )
197201 context = PointSetContext (** config )
198202 expr = self .preprocess (expr , context )
199203 return map_expr_dag (context .translator , expr )
You can’t perform that action at this time.
0 commit comments