Skip to content
Snippets Groups Projects
Commit d3c06c77 authored by Stepan Sindelar's avatar Stepan Sindelar
Browse files

Merge pull request #124 in G/fastr from...

Merge pull request #124 in G/fastr from ~STEPAN.SINDELAR_ORACLE.COM/fastr:bugfix/annotate-rffi-dqrls to master

* commit 'cfb54f1b':
  Annotate dqrls method in Linpack interface for RFFI
parents dd4413cb cfb54f1b
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,8 @@ public class JNR_RAppl implements RApplRFFI {
void dqrcf_(double[] x, @In int[] n, @In int[] k, double[] qraux, double[] y, @In int[] ny, double[] b, int[] info);
void dqrls_(double[] x, int[] n, int[] p, double[] y, int[] ny, double[] tol, double[] b, double[] rsd, double[] qty, int[] k, int[] jpvt, double[] qraux, double[] work);
void dqrls_(double[] x, @In int[] n, @In int[] p, @In double[] y, @In int[] ny, @In double[] tol, @Out double[] b, @Out double[] rsd, @Out double[] qty, @Out int[] k, int[] jpvt,
@Out double[] qraux, @In double[] work);
}
private static class LinpackProvider {
......
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