Skip to content

Commit

Permalink
tsfc: introduce MixedMesh ufl-update-MixedMesh-list
Browse files Browse the repository at this point in the history
  • Loading branch information
ksagiyam committed Dec 10, 2024
1 parent ff777e8 commit ffef507
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/tsfc/test_tsfc_182.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_delta_elimination(mode):

element_chi_lambda = MixedElement(element_eps_p, element_lambda)
domain = Mesh(VectorElement("Lagrange", tetrahedron, 1))
domains = MixedMesh(domain, domain)
domains = MixedMesh([domain, domain])
space = FunctionSpace(domains, element_chi_lambda)

chi_lambda = Coefficient(space)
Expand Down
2 changes: 1 addition & 1 deletion tests/tsfc/test_tsfc_204.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def test_physically_mapped_facet():
mesh = Mesh(VectorElement("P", triangle, 1))
meshes = MixedMesh(mesh, mesh, mesh, mesh, mesh)
meshes = MixedMesh([mesh, mesh, mesh, mesh, mesh])

# set up variational problem
U = FiniteElement("Morley", mesh.ufl_cell(), 2)
Expand Down

0 comments on commit ffef507

Please sign in to comment.