Added new timing helper in python

This commit is contained in:
Guilhem Lavaux 2014-07-28 09:33:08 +02:00
parent 6150597c67
commit 917a45b494
3 changed files with 17 additions and 1 deletions

View file

@ -135,6 +135,12 @@ namespace CosmoTool
int Nx, Ny, Nz;
};
template<typename IType, typename ArrayType>
void singleInterpolation(IType *input_array, ArrayType *x, ArrayType *y, ArrayType *z, ArrayType *scalers)
{
}
};
#endif