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):
181
181
config = {"point_set" : PointSingleton (point )}
182
182
config .update (self .config )
183
183
config .update (use_canonical_quadrature_point_ordering = False ) # quad point ordering not relevant.
184
+ interface = CellVerticesKernelInterface (self .interface )
185
+ config .update (interface = interface )
184
186
context = PointSetContext (** config )
185
187
expr = self .preprocess (expr , context )
186
188
return map_expr_dag (context .translator , expr )
@@ -194,6 +196,8 @@ def detJ_at(self, point):
194
196
config = {"point_set" : PointSingleton (point )}
195
197
config .update (self .config )
196
198
config .update (use_canonical_quadrature_point_ordering = False ) # quad point ordering not relevant.
199
+ interface = CellVerticesKernelInterface (self .interface )
200
+ config .update (interface = interface )
197
201
context = PointSetContext (** config )
198
202
expr = self .preprocess (expr , context )
199
203
return map_expr_dag (context .translator , expr )
You can’t perform that action at this time.
0 commit comments