mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
30 lines
691 B
C++
30 lines
691 B
C++
#ifndef FILE_LINALG
|
|
#define FILE_LINALG
|
|
|
|
/* *************************************************************************/
|
|
/* File: linalg.hpp */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 01. Oct. 94 */
|
|
/* *************************************************************************/
|
|
|
|
/*
|
|
|
|
Data types for basic linear algebra
|
|
|
|
The basic concepts include the data types
|
|
|
|
Vector
|
|
SparseMatrix
|
|
DenseMatrix
|
|
|
|
*/
|
|
|
|
|
|
#include "../include/myadt.hpp"
|
|
#include "vector.hpp"
|
|
#include "densemat.hpp"
|
|
#include "polynomial.hpp"
|
|
#endif
|
|
|
|
|