cmake introduction
A short example project for the CMake build system
include
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.*/
16
int
solve_linear_system
(
Matrix<double>
& A,
Vector<double>
& rhs);
17
18
}
19
20
#endif
core
Namespace for core components.
Definition:
core.h:11
core::solve_linear_system
int solve_linear_system(Matrix< double > &A, Vector< double > &rhs)
Definition:
core.cxx:9
matrix.h
vector.h
core::Matrix
A dense quadratic matrix of arbitrary size.
Definition:
matrix.h:19
core::Vector
A vector of arbitrary size.
Definition:
vector.h:18
Generated on Wed Jan 5 2022 21:36:56 for cmake introduction by
1.8.14