| 29960 |
ripley |
1 |
/*
|
|
|
2 |
* R : A Computer Language for Statistical Data Analysis
|
| 59039 |
ripley |
3 |
* Copyright (C) 2001-2010 The R Core Team.
|
| 29960 |
ripley |
4 |
*
|
| 71665 |
ripley |
5 |
* This program is free software; you can redistribute it and/or modify
|
|
|
6 |
* it under the terms of the GNU General Public License as published by
|
|
|
7 |
* the Free Software Foundation; either version 2 of the License, or
|
| 29960 |
ripley |
8 |
* (at your option) any later version.
|
| 71657 |
plummer |
9 |
*
|
| 29960 |
ripley |
10 |
* This program is distributed in the hope that it will be useful,
|
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
13 |
* GNU Lesser General Public License for more details.
|
|
|
14 |
*
|
| 71665 |
ripley |
15 |
* You should have received a copy of the GNU General Public License
|
| 42315 |
ripley |
16 |
* along with this program; if not, a copy is available at
|
| 68949 |
ripley |
17 |
* https://www.R-project.org/Licenses/
|
| 29960 |
ripley |
18 |
*/
|
|
|
19 |
|
|
|
20 |
/* Definitions for the Lapack module. Not intended for end-user use */
|
|
|
21 |
|
|
|
22 |
#ifndef R_LAPACK_MODULE_H
|
|
|
23 |
#define R_LAPACK_MODULE_H
|
|
|
24 |
|
|
|
25 |
#include <Rinternals.h>
|
|
|
26 |
|
| 60413 |
ripley |
27 |
typedef SEXP (*Rf_do_lapack)(SEXP, SEXP, SEXP, SEXP);
|
| 29960 |
ripley |
28 |
|
|
|
29 |
typedef struct {
|
| 60413 |
ripley |
30 |
Rf_do_lapack do_lapack;
|
| 29960 |
ripley |
31 |
} R_LapackRoutines;
|
|
|
32 |
|
|
|
33 |
R_LapackRoutines *R_setLapackRoutines(R_LapackRoutines *routines);
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
#endif /* R_LAPACK_MODULE_H */
|