Closed walterxie closed 3 years ago
In Slice, the method below is alway returning the 1st element of a parameter, even if the parameter has multiple dimensions:
Slice
public double getArrayValue() { return functionInput.get().getArrayValue(0); }
The correct code should be
public double getArrayValue() { return functionInput.get().getArrayValue(indexStart); }
In
Slice
, the method below is alway returning the 1st element of a parameter, even if the parameter has multiple dimensions:The correct code should be