Changeset 7709


Ignore:
Timestamp:
May 5, 2010, 6:06:29 PM (15 years ago)
Author:
hudson
Message:

Fixed rounding errors which were causing failing unit tests.

File:
1 edited

Legend:

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

    r7707 r7709  
    1818   
    1919    def __init__(self, xmin, xmax, ymin, ymax):
    20         self.xmin = round(xmin,5)   
    21         self.xmax = round(xmax,5)
    22         self.ymin = round(ymin,5)   
    23         self.ymax = round(ymax,5)
     20        self.xmin = xmin   
     21        self.xmax = xmax
     22        self.ymin = ymin   
     23        self.ymax = ymax
    2424
    2525    def __repr__(self):
Note: See TracChangeset for help on using the changeset viewer.