Changeset 8259
- Timestamp:
- Nov 30, 2011, 6:10:36 PM (13 years ago)
- Location:
- trunk/anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/operators/base_operator.py
r8248 r8259 30 30 """By default an operator is not parallel safe 31 31 """ 32 return False32 return True 33 33 34 34 def statistics(self): -
trunk/anuga_core/source/anuga/structures/inlet.py
r8235 r8259 14 14 self.domain = domain 15 15 self.domain_bounding_polygon = self.domain.get_boundary_polygon() 16 self.line = num.asarray(line, 'f')16 self.line = num.asarray(line, dtype=num.float64) 17 17 self.verbose = verbose 18 18
Note: See TracChangeset
for help on using the changeset viewer.