m.put(1., S1);
m.put(2., S1);
m.put(3., S3);
other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, m, INTERPOLATOR, NAME);
assertFalse(other.equals(XY_CUBE));
other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, SURFACE_MAP, new LogLinearInterpolator1D(), NAME);
assertFalse(other.equals(XY_CUBE));
other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, SURFACE_MAP, INTERPOLATOR, NAME + "_");
assertFalse(other.equals(XY_CUBE));
}