Ignore:
Timestamp:
Apr 15, 2013, 9:43:05 PM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
d6a338
Parents:
dc7dc9
Message:

Renamed GlobalIndices::GlobalSizeNew back to GlobalIndices::GlobalSize.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/grid/is_grid.hpp

    rdc7dc9 re58835d  
    171171inline int IsGrid<T>::GlobalLinearIndex(int x, int y, int z) const
    172172{
    173   return z + global.GlobalSizeNew().Z() * (y + global.GlobalSizeNew().Y() * x);
     173  return z + global.GlobalSize().Z() * (y + global.GlobalSize().Y() * x);
    174174}
    175175
     
    177177inline int IsGrid<T>::GlobalLinearIndex(const Index& index) const
    178178{
    179   return index.Z() + global.GlobalSizeNew().Z() * (index.Y() + global.GlobalSizeNew().Y() * index.X());
     179  return index.Z() + global.GlobalSize().Z() * (index.Y() + global.GlobalSize().Y() * index.X());
    180180}
    181181
Note: See TracChangeset for help on using the changeset viewer.