Ignore:
Timestamp:
07/07/15 10:46:25 (9 years ago)
Author:
mhnguyen
Message:

Implementing interpolation (polynomial) and correct some bugs

+) Implement interpolation (polynomial)
+) Correct some minor bugs relating to memory allocation
+) Clear some redundant codes

Test
+) On Curie
+) test_client and test_complete pass

File:
1 edited

Legend:

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

    r624 r630  
    1212 
    1313CAxisAlgorithmZoom::CAxisAlgorithmZoom(CAxis* axisDestination, CAxis* axisSource, CZoomAxis* zoomAxis) 
    14 : CAxisAlgorithmTransformation(axisDestination, axisSource), axisDest_(axisDestination), axisSrc_(axisSource) 
     14: CAxisAlgorithmTransformation(axisDestination, axisSource) 
    1515{ 
    1616  zoomAxis->checkValid(axisSource); 
     
    4545 
    4646  std::map<int, std::vector<int> >& transMap = this->transformationMapping_; 
     47  std::map<int, std::vector<double> >& transWeight = this->transformationWeight_; 
    4748  for (StdSize idx = 0; idx < ni; ++idx) 
    4849  { 
    4950    transMap[ibegin+idx].push_back(ibegin+idx); 
     51    transWeight[ibegin+idx].push_back(1.0); 
    5052  } 
    5153 
Note: See TracChangeset for help on using the changeset viewer.