LinAlgWrapper.h
Go to the documentation of this file.
1 
5 #ifndef LINALGWRAPPER_H
6 #define LINALGWRAPPER_H
7 
8 #include "CMAFwd.h"
9 
12 class LinAlg {
13  public:
17  void solve(double * A, int n, double * b);
18 };
19 
20 #endif // LINALGWRAPPER_H
void solve(double *A, int n, double *b)
interface function for solving Calculates where A is of dimension n-by-n, b is n-by-1, result is store in b, therefore b is overwritten.
Definition: LinAlgWrapper.cc:12
A wrapper for interfacing with 3rd party linear algebra packages.
Definition: LinAlgWrapper.h:12