theader.h - numeric - C++ library with numerical algorithms | |
git clone git://src.adamsgaard.dk/numeric | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
theader.h (464B) | |
--- | |
1 // Make sure header is only included once | |
2 #ifndef HEADER_H_ | |
3 #define HEADER_H_ | |
4 | |
5 // Define whether the program should output values of matrices | |
6 const bool verbose = false; | |
7 //const bool verbose = true; | |
8 | |
9 // Choose vector length variable type | |
10 typedef int Lengthtype; | |
11 | |
12 // Choose floating-point precision | |
13 //typedef float Floattype; | |
14 typedef double Floattype; | |
15 //typedef long double Floattype; | |
16 | |
17 // Prototype for checking function | |
18 void check(const bool statement); | |
19 | |
20 #endif |