~ubuntu-branches/ubuntu/raring/ffc/raring

« back to all changes in this revision

Viewing changes to ffc/parameters.py

  • Committer: Bazaar Package Importer
  • Author(s): Johannes Ring
  • Date: 2011-05-18 11:22:37 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20110518112237-22o6lwrno3uf0jyz
Tags: 0.9.10-1
* New upstream release. This release introduces some new features and
  some behind-the-scenes improvements. Special quadrature schemes for
  simplices have been added, which will lead to improved performance
  when using the quadrature representation for low-order forms.
* Move from python-central to dh_python2 (closes: #616807).
  - Remove python-central from Build-Depends.
  - Bump minimum required python-all package version to 2.6.6-3~.
  - Remove XB-Python-Version line.
  - Bump minimum required cdbs version to 0.4.90~.
  - Remove DEB_PYTHON_SYSTEM=pycentral from debian/rules.
  - Replace XS-Python-Version with X-Python-Version.
* debian/rules:
  - Avoid compressing files with .ufl extension.
  - Use DEB_COMPRESS_EXCLUDE_ALL instead of deprecated
    DEB_COMPRESS_EXCLUDE.
  - Include cdbs utils.mk rule for automated copyright checks.
* Remove old custom cdbs rules and licensecheck script for copyright
  check.
* Bump Standards-Version to 3.9.2 (no changes needed).
* debian/copyright:
  - Update for upstream license change to LGPLv3.
  - Switch to DEP-5 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__author__ = "Anders Logg (logg@simula.no)"
2
 
__date__ = "2005-05-20"
3
 
__copyright__ = "Copyright (C) 2005-2010 " + __author__
4
 
__license__  = "GNU GPL version 3 or any later version"
 
1
# Copyright (C) 2005-2010 Anders Logg
 
2
#
 
3
# This file is part of FFC.
 
4
#
 
5
# FFC is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU Lesser General Public License as published by
 
7
# the Free Software Foundation, either version 3 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# FFC is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU Lesser General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Lesser General Public License
 
16
# along with FFC.  If not, see <http://www.gnu.org/licenses/>.
 
17
#
 
18
# First added:  2005-05-20
 
19
# Last changed: 2005-05-20
5
20
 
6
21
from log import INFO
7
22
 
34
49
  "log_level":                      INFO,    # log level, displaying only
35
50
                                             # messages with level >= log_level
36
51
  "log_prefix":                     "",      # log prefix
37
 
  "error_control":                  False    # with error control
 
52
  "error_control":                  False,   # with error control
 
53
  "swig_binary":                    "swig",  # swig binary file for the JIT compiler
 
54
  "swig_path":                      "",      # path to swig binary for the JIT compiler
38
55
}
39
56
 
40
57
def default_parameters():