Ignore:
Timestamp:
05/31/23 12:20:29 (13 months ago)
Author:
ymipsl
Message:

Supress limitation of number of vertex max in remaper.
YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS2/trunk/extern/remap/src/mapper.hpp

    r2088 r2506  
    4141*/ 
    4242       /* where weights are returned after call to `computeWeights` */ 
    43        double *remapMatrix; 
    44        int *srcAddress; 
    45        int *srcRank; 
    46        int *dstAddress; 
     43       std::vector<double> remapMatrix; 
     44       std::vector<int> srcAddress; 
     45       std::vector<int> srcRank; 
     46       std::vector<int> dstAddress; 
    4747       int nWeights; 
    48        long int* sourceWeightId ; 
    49        long int* targetWeightId ; 
     48       std::vector<long int> sourceWeightId ; 
     49       std::vector<long int> targetWeightId ; 
    5050 
    5151private: 
Note: See TracChangeset for help on using the changeset viewer.