//http://cbucks.codeplex.com/
//ACADEMIC FREE LICENSE ("AFL") V. 3.0
using System;
using System.Collections.Generic;
using System.Text;
namespace CBucks {
///
/// The class which provides the array utility functions
///
internal static class ArrayUtils {
///
/// Computes the indices
///
/// The linearized index
/// The array cumulative sizes
/// The multidimensional indices
internal static int[] getIndices(int ind, int[] cumSizes) {
int[] inds = new int[cumSizes.Length];
int rm = ind;
for(int i = 0; i < inds.Length - 1; i++) {
inds[i] = rm / cumSizes[inds.Length - i - 2];
rm %= cumSizes[inds.Length - i - 2];
} // end of for()
inds[inds.Length - 1] = rm;
return inds;
} // end of getIndices()
} // end of internal static class ArrayUtils
} // end of namespace CBucks