Basic Components
|
- Dense vectors
- new Vector<>
is STL-free and supports both [0] and (1) index schemes
- Dense matrices
- row-major
Matrix<>
uses C-style memory layout, and supports both [0][0]
and (1,1) indexing schemes
- column-major
Fortran_Matrix<>
uses Fortran-style memory layout and (1,1) indexing scheme
- Regions and views
- C++ Algorithms
- LU factorization example
- QR factorization example
- Cholesky factorization example
- Utilities
- TNT header file, tnt.h includes global
definitions
- tntmath.h auxillary math routines,
e.g.
abs(), sign()
- stopwatch class for timing measurements
|