Skip to content
Snippets Groups Projects
Commit acd01a41 authored by stepan's avatar stepan Committed by Mick Jordan
Browse files

Minor fix: Choose use idiomatic Utils.incMod

parent ddeacc9b
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ import com.oracle.truffle.r.runtime.RBuiltinKind;
import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RError.Message;
import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.Utils;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.model.RAbstractDoubleVector;
import com.oracle.truffle.r.runtime.data.model.RAbstractIntVector;
......@@ -91,8 +92,8 @@ public abstract class Choose extends RBuiltinNode {
for (int i = 0, nIdx = 0, kIdx = 0; i < resultLen; i++) {
result[i] = choose(getN.applyAsDouble(nIdx), getK.applyAsInt(kIdx));
complete &= result[i] != RRuntime.DOUBLE_NA;
nIdx = (nIdx + 1) % nLength;
kIdx = (kIdx + 1) % kLength;
nIdx = Utils.incMod(nIdx, nLength);
kIdx = Utils.incMod(kIdx, kLength);
}
return RDataFactory.createDoubleVector(result, complete);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment