~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to test/unit/python-extras/python/test.py

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    def test_error_norm(self):
30
30
 
31
31
        # Approximation (zero)
32
 
        mesh = UnitSquare(4, 4)
 
32
        mesh = UnitSquareMesh(4, 4)
33
33
        V = FunctionSpace(mesh, "CG", 2)
34
34
        u_h = Function(V)
35
35
        u_h.vector().zero()