Ignore:
Timestamp:
Jun 30, 2009, 2:07:41 PM (15 years ago)
Author:
ole
Message:

Merged numpy branch back into the trunk.

In ~/sandpit/anuga/anuga_core/source
svn merge -r 6246:HEAD ../../branches/numpy .

In ~/sandpit/anuga/anuga_validation
svn merge -r 6417:HEAD ../branches/numpy_anuga_validation .

In ~/sandpit/anuga/misc
svn merge -r 6809:HEAD ../branches/numpy_misc .

For all merges, I used numpy version where conflicts existed

The suites test_all.py (in source/anuga) and validate_all.py passed using Python2.5 with numpy on my Ubuntu Linux box.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/utilities/quad.py

    r6158 r7276  
    184184                    #y = self.mesh.coordinates[point][1]
    185185                    node = self.mesh.get_node(point, absolute=True)
    186                     print "node", node
    187                     print "(" + str(node[0]) + "," + str(node[1]) + ")"
    188                     raise 'point not in region: %s' %str(point)
     186                    msg = ('point not in region: %s\nnode=%s'
     187                           % (str(point), str(node)))
     188                    raise Exception, msg
    189189               
    190190               
Note: See TracChangeset for help on using the changeset viewer.