Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/ElmerGUI/netgen/libsrc/linalg/linalg.hpp
3206 views
1
#ifndef FILE_LINALG
2
#define FILE_LINALG
3
4
/* *************************************************************************/
5
/* File: linalg.hpp */
6
/* Author: Joachim Schoeberl */
7
/* Date: 01. Oct. 94 */
8
/* *************************************************************************/
9
10
/*
11
12
Data types for basic linear algebra
13
more data types are found in linalgl.hpp
14
15
The basic concepts include the data types
16
17
Vector
18
SparseMatrix
19
DenseMatrix
20
21
*/
22
23
24
#include "../include/myadt.hpp"
25
namespace netgen
26
{
27
#include "vector.hpp"
28
#include "densemat.hpp"
29
#include "polynomial.hpp"
30
}
31
#endif
32
33
34
35