/usr/lib/python2.7/dist-packages/ufl/classes.py is in python-ufl 1.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | """This file is useful for external code like tests and form compilers,
since it enables the syntax "from ufl.classes import CellFacetooBar" for getting
implementation details not exposed through the default ufl namespace.
It also contains functionality used by algorithms for dealing with groups
of classes, and for mapping types to different handler functions."""
# Copyright (C) 2008-2014 Martin Sandve Alnes
#
# This file is part of UFL.
#
# UFL is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# UFL is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with UFL. If not, see <http://www.gnu.org/licenses/>.
#
# Modified by Anders Logg, 2009.
# Modified by Kristian B. Oelgaard, 2011
# Modified by Andrew T. T. McRae, 2014
# This will be populated part by part below
__all__ = []
#
# Import all submodules, triggering execution of the
# ufl_type class decorator for each Expr class.
#
# Base classes of Expr type hierarchy
import ufl.core.expr
import ufl.core.terminal
import ufl.core.operator
# Terminal types
import ufl.constantvalue
import ufl.argument
import ufl.coefficient
import ufl.geometry
import ufl.indexing
# Operator types
import ufl.indexed
import ufl.indexsum
import ufl.variable
import ufl.tensors
import ufl.algebra
import ufl.tensoralgebra
import ufl.mathfunctions
import ufl.differentiation
import ufl.conditional
import ufl.restriction
import ufl.exprcontainers
import ufl.referencevalue
# Make sure we import exproperators which attaches special functions to Expr
from ufl import exproperators as __exproperators
#
# Make sure to import modules with new Expr subclasses here!
#
# Collect all classes in sets automatically classified by some properties
all_ufl_classes = set(ufl.core.expr.Expr._ufl_all_classes_)
abstract_classes = set(c for c in all_ufl_classes if c._ufl_is_abstract_)
ufl_classes = set(c for c in all_ufl_classes if not c._ufl_is_abstract_)
terminal_classes = set(c for c in all_ufl_classes if c._ufl_is_terminal_)
nonterminal_classes = set(c for c in all_ufl_classes if not c._ufl_is_terminal_)
__all__ += [
"all_ufl_classes",
"abstract_classes",
"ufl_classes",
"terminal_classes",
"nonterminal_classes",
]
def populate_namespace_with_expr_classes(namespace):
"""Export all Expr subclasses into the namespace under their natural name."""
names = []
classes = ufl.core.expr.Expr._ufl_all_classes_
for cls in classes:
class_name = cls.__name__
namespace[class_name] = cls
names.append(class_name)
return names
__all__ += populate_namespace_with_expr_classes(locals())
# Domain types
from ufl.cell import Cell, ProductCell, OuterProductCell
from ufl.domain import Domain, ProductDomain
__all__ += [
"Cell", "ProductCell", "OuterProductCell",
"Domain", "ProductDomain",
]
# Elements
from ufl.finiteelement import (
FiniteElementBase,
FiniteElement,
MixedElement, VectorElement, TensorElement,
EnrichedElement, RestrictedElement,
TensorProductElement, OuterProductElement, OuterProductVectorElement)
__all__ += [
"FiniteElementBase",
"FiniteElement",
"MixedElement", "VectorElement", "TensorElement",
"EnrichedElement", "RestrictedElement",
"TensorProductElement", "OuterProductElement", "OuterProductVectorElement",
]
# Other non-Expr types
from ufl.argument import TestFunction, TrialFunction, TestFunctions, TrialFunctions
from ufl.core.multiindex import IndexBase, FixedIndex, Index
__all__ += [
"TestFunction", "TrialFunction", "TestFunctions", "TrialFunctions",
"IndexBase", "FixedIndex", "Index",
]
# Higher level abstractions
from ufl.measure import Measure, MeasureSum, MeasureProduct
from ufl.integral import Integral
from ufl.form import Form
from ufl.equation import Equation
__all__ += [
"Measure", "MeasureSum", "MeasureProduct",
"Integral",
"Form",
"Equation",
]
|