cmake introduction
A short example project for the CMake build system
|
#include "config.h"
Go to the source code of this file.
Namespaces | |
core | |
Namespace for core components. | |
Functions | |
void | dgesv_ (int *N, int *NRHS, double *A, int *LDA, int *IPIV, double *B, int *LDB, int *INFO) |
Function provided by LAPACK to solve a (dense) linear system. More... | |
void | core::dgesv_wrap (int *N, int *NRHS, double *A, int *LDA, int *IPIV, double *B, int *LDB, int *INFO) |
Wrapper function around around dgesv_. More... | |
void dgesv_ | ( | int * | N, |
int * | NRHS, | ||
double * | A, | ||
int * | LDA, | ||
int * | IPIV, | ||
double * | B, | ||
int * | LDB, | ||
int * | INFO | ||
) |
Function provided by LAPACK to solve a (dense) linear system.