The R Project SVN R-packages

Rev

Rev 1830 | Rev 3465 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#ifndef MATRIX_SSC_H
#define MATRIX_SSC_H

#include <Rdefines.h>
#include "Mutils.h"
#include "R_ldl.h"
#include "triplet_to_col.h"

SEXP dsCMatrix_validate(SEXP x);
SEXP dsCMatrix_chol(SEXP x, SEXP pivot);
SEXP dsCMatrix_inverse_factor(SEXP A);
SEXP dsCMatrix_matrix_solve(SEXP a, SEXP b, SEXP classed);
SEXP ssc_transpose(SEXP x);
SEXP dsCMatrix_to_dgTMatrix(SEXP x);
SEXP sCMatrix_to_gCMatrix(SEXP x);
SEXP dsCMatrix_ldl_symbolic(SEXP x, SEXP doPerm);
extern void ssc_metis_order(int n, const int Tp [], const int Ti [],
                int Perm[], int iPerm[]);


#endif