(final double[][] rawdat)
| 12 | public final int dim; |
| 13 | |
| 14 | public RExample(final double[][] rawdat) { |
| 15 | this.rawdat = rawdat; |
| 16 | dim = rawdat[0].length; |
| 17 | } |
| 18 | |
| 19 | private class SI implements Iterator<ExampleRow> { |
| 20 | private int i = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected