D3C.java

package neureka.ndim.config.types;

import neureka.ndim.config.AbstractNDC;

/**
 *  An abstract class for {@link neureka.ndim.config.NDConfiguration}s which are representing
 *  tensors of rank 3, meaning the name of this class translates to "Dimension-3-Configuration".
 */
public abstract class D3C extends AbstractNDC
{
    public abstract int indexOfIndices( int d1, int d2, int d3 );
}