URI:
       theader.h - numeric - C++ library with numerical algorithms
  HTML git clone git://src.adamsgaard.dk/numeric
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       theader.h (362B)
       ---
            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 
            8 // Choose vector length variable type
            9 typedef int Lengthtype;
           10  
           11 // Choose floating-point precision
           12 typedef double Floattype;
           13 
           14 // Prototype functions
           15 void check(const bool statement);
           16 
           17 #endif