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

« back to all changes in this revision

Viewing changes to bench/Poisson_2D_2.ufl

  • Committer: Bazaar Package Importer
  • Author(s): Johannes Ring
  • Date: 2010-07-01 19:54:32 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100701195432-xz3gw5nprdj79jcb
Tags: 0.9.3-1
* New upstream release.
* debian/control:
  - Minor fix in Vcs fields.
  - Bump Standards-Version to 3.9.0 (no changes needed).
  - Update version for python-ufc, python-fiat, and python-ufl in
    Depends field.
* Switch to dpkg-source 3.0 (quilt) format.
* Update debian/copyright and debian/copyright_hints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004-2010 Anders Logg (logg@simula.no).
 
2
# Licensed under the GNU GPL version 3 or any later version.
 
3
 
 
4
element = FiniteElement("Lagrange", triangle, 2)
 
5
 
 
6
v = TestFunction(element)
 
7
u = TrialFunction(element)
 
8
 
 
9
a = inner(grad(v), grad(u))*dx