cmake introduction
A short example project for the CMake build system
core.h
Go to the documentation of this file.
1 #ifndef __cxx_test_project_core_h__
2 #define __cxx_test_project_core_h__
3 
4 #include "matrix.h"
5 #include "vector.h"
6 
7 /** @brief Namespace for core components
8  *
9  * Detailed description here.
10  */
11 namespace core
12 {
13 
14 /** Solve the linear system given by the (dense) matrix A and the right-hand side.
15  The solution will be written to rhs and the matrix contains the LU factorization.*/
17 
18 }
19 
20 #endif
Namespace for core components.
Definition: core.h:11
int solve_linear_system(Matrix< double > &A, Vector< double > &rhs)
Definition: core.cxx:9
A dense quadratic matrix of arbitrary size.
Definition: matrix.h:19
A vector of arbitrary size.
Definition: vector.h:18