Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tsfc/finatinterface.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
#
# This file was modified from FFC
# (http://bitbucket.org/fenics-project/ffc), copyright notice
# reproduced below.
Expand Down Expand Up @@ -71,6 +69,10 @@
"Real": finat.DiscontinuousLagrange,
"DPC": finat.DPC,
"S": finat.Serendipity,
"SminusF": finat.TrimmedSerendipityFace,
"SminusDiv": finat.TrimmedSerendipityDiv,
"SminusE": finat.TrimmedSerendipityEdge,
"SminusCurl": finat.TrimmedSerendipityCurl,
"DPC L2": finat.DPC,
"Discontinuous Lagrange L2": finat.DiscontinuousLagrange,
"Gauss-Legendre L2": finat.GaussLegendre,
Expand Down Expand Up @@ -319,7 +321,6 @@ def _create_element(ufl_element, **kwargs):

def create_base_element(ufl_element, **kwargs):
"""Create a "scalar" base FInAT element given a UFL element.

Takes a UFL element and an unspecified set of parameter options,
and returns the converted element.
"""
Expand Down