Changeset 7784
- Timestamp:
- Jun 5, 2010, 7:03:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/pipeflow/quantity.py
r7777 r7784 23 23 #Initialise Quantity using optional vertex values. 24 24 25 from domain importDomain25 from generic_domain import Generic_Domain 26 26 27 27 msg = 'First argument in Quantity.__init__ ' 28 28 msg += 'must be of class Domain (or a subclass thereof)' 29 assert isinstance(domain, Domain), msg29 assert isinstance(domain, Generic_Domain), msg 30 30 31 31 if vertex_values is None:
Note: See TracChangeset
for help on using the changeset viewer.