This file is indexed.

/usr/share/doc/python-ufl/README 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
===========================
UFL - Unified Form Language
===========================

The Unified Form Language (UFL) is a domain specific language for
declaration of finite element discretizations of variational
forms. More precisely, it defines a flexible interface for choosing
finite element spaces and defining expressions for weak forms in a
notation close to mathematical notation.

Authors:
  | Martin Sandve Alnæs   <martinal@simula.no>
  | Anders Logg           <logg@simula.no>

Contributors:
  | Kristian B. Ølgaard   <k.b.oelgaard@gmail.com>
  | Garth N. Wells        <gnw20@cam.ac.uk>
  | Marie E. Rognes       <meg@simula.no>
  | Kent-Andre Mardal     <kent-and@simula.no>
  | Johan Hake            <hake@simula.no>
  | David Ham             <David.Ham@imperial.ac.uk>
  | Florian Rathgeber     <f.rathgeber10@imperial.ac.uk>
  | Andrew McRae          <a.mcrae12@imperial.ac.uk>
  | Lawrence Mitchell     <lawrence.mitchell@imperial.ac.uk>
  | Johannes Ring         <johannr@simula.no>


Installation
============

Linux::

  sudo python setup.py install


Directories
===========

- ufl/

  All source code for the UFL implementation.

- scripts/

  Commandline utilities like "ufl-analyse", "ufl-convert" and "form2ufl".

- demo/

  Several ufl form files which demonstrates the use of the form language.

- doc/

  The UFL manual resides here.

- test/

  Unit tests for the UFL implementation. Run all tests by typing "python test.py" inside the test/ directory.

- sandbox/

  A place for experimental scripts and other unofficial code.


Utilities
=========

For more information about the utilities, type::

  ufl-analyse -h
  ufl-convert -h
  form2ufl -h

after installation.


About the Python modules
========================

The global namespace of the module ufl contains the entire UFL language::

  from ufl import *

Form compilers may want to import additional implementation details like::

  from ufl.classes import *

and::

  from ufl.algorithms import *

Importing a .ufl file can be done easily from Python::

  from ufl.algorithms import load_ufl_file
  filedata = load_ufl_file("filename.ufl")
  forms = filedata.forms
  elements = filedata.elements

to get lists of forms and elements from the .ufl file, or::

  from ufl.algorithms import load_forms
  forms = load_forms("filename.ufl")

to get a list of forms in the .ufl file.


Contact
=======

Send feature requests and questions to

  fenics@fenicsproject.org

The Git source repository for UFL is located at

  https://bitbucket.org/fenics-project/ufl

and bugs can be registered at

  https://bitbucket.org/fenics-project/ufl/issues


License
=======

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/>.