Changeset 6152
- Timestamp:
- 10/04/10 14:46:44 (14 years ago)
- Location:
- issm/trunk/src/m/classes/clusters
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/clusters/astrid.m
r6097 r6152 51 51 function IsConsistent(cluster) % {{{1 52 52 if cluster.np>16, 53 error('IsConsistent error message: number of processors should be les tthan 16!');53 error('IsConsistent error message: number of processors should be less than 16!'); 54 54 end 55 55 if isnan(cluster.np), -
issm/trunk/src/m/classes/clusters/ericmac.m
r6043 r6152 50 50 function IsConsistent(cluster) % {{{1 51 51 if cluster.np>4, 52 error('IsConsistent error message: number of processors should be les t than 16!');52 error('IsConsistent error message: number of processors should be less than 4!'); 53 53 end 54 54 if isnan(cluster.np), -
issm/trunk/src/m/classes/clusters/larsen.m
r6097 r6152 50 50 function IsConsistent(cluster) % {{{1 51 51 if cluster.np>8, 52 error('IsConsistent error message: number of processors should be les t than 16!');52 error('IsConsistent error message: number of processors should be less than 8!'); 53 53 end 54 54 if isnan(cluster.np), -
issm/trunk/src/m/classes/clusters/wilkes.m
r6097 r6152 49 49 %}}} 50 50 function IsConsistent(cluster) % {{{1 51 if cluster.np> 8,52 error('IsConsistent error message: number of processors should be les tthan 16!');51 if cluster.np>16, 52 error('IsConsistent error message: number of processors should be less than 16!'); 53 53 end 54 54 if isnan(cluster.np),
Note:
See TracChangeset
for help on using the changeset viewer.