Ignore:
Timestamp:
Apr 27, 2006, 3:44:41 PM (18 years ago)
Author:
steve
Message:

On our 64 bit machine, ran into problem in pmesh/mesh.py where seg[0], seg[1], triangle,
and neighbor where not seen as integers. Had to wrap them in int(..)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/utilities/numerical_tools.py

    r2710 r2778  
    197197                return array(A)  #FIXME: Shouldn't this just return A?
    198198            else:
    199                 return A.astype(typecode)
     199                return array(A,typecode)
    200200        else:
    201             return array(A).astype(typecode)
     201            return array(A,typecode)
    202202
    203203
Note: See TracChangeset for help on using the changeset viewer.