Ignore:
Timestamp:
10/21/16 13:40:33 (8 years ago)
Author:
mhnguyen
Message:

Correcting various bugs relating to transformation

+) Fix the order of transformation selection
+) Correct domain transformation selection
+) Reorganize test_remap

Test
+) On Curie
+) All tests pass

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/transformation/grid_generate.cpp

    r889 r978  
    103103    int elementPositionInGrid = it->first; 
    104104    ETranformationType transType = (it->second).first; 
    105     int transformationOrder = (it->second).second; 
     105    int transformationOrder = (it->second).second.first; 
     106    int algoType = (it->second).second.second; 
    106107 
    107108    // First of all, select an algorithm 
    108     selectAlgo(elementPositionInGrid, transType, transformationOrder, algoTypes_[std::distance(itb, it)]); 
     109    selectAlgo(elementPositionInGrid, transType, transformationOrder, algoType); 
    109110  } 
    110111} 
Note: See TracChangeset for help on using the changeset viewer.