00001 /* 00002 * 00003 * Template Numerical Toolkit (TNT): Linear Algebra Module 00004 * 00005 * Mathematical and Computational Sciences Division 00006 * National Institute of Technology, 00007 * Gaithersburg, MD USA 00008 * 00009 * 00010 * This software was developed at the National Institute of Standards and 00011 * Technology (NIST) by employees of the Federal Government in the course 00012 * of their official duties. Pursuant to title 17 Section 105 of the 00013 * United States Code, this software is not subject to copyright protection 00014 * and is in the public domain. NIST assumes no responsibility whatsoever for 00015 * its use by other parties, and makes no guarantees, expressed or implied, 00016 * about its quality, reliability, or any other characteristic. 00017 * 00018 */ 00019 00020 00021 #ifndef TNT_H 00022 #define TNT_H 00023 00024 00025 00026 //--------------------------------------------------------------------- 00027 // Define this macro if you want TNT to track some of the out-of-bounds 00028 // indexing. This can encur a small run-time overhead, but is recommended 00029 // while developing code. It can be turned off for production runs. 00030 // 00031 // #define TNT_BOUNDS_CHECK 00032 //--------------------------------------------------------------------- 00033 // 00034 00035 //#define TNT_BOUNDS_CHECK 00036 00037 00038 00039 #include "tnt_version.h" 00040 #include "tnt_math_utils.h" 00041 00042 #include "tnt_vector.h" 00043 #include "tnt_matrix.h" 00044 00045 #include "tnt_array1d.h" 00046 #include "tnt_array2d.h" 00047 #include "tnt_array3d.h" 00048 #include "tnt_array1d_utils.h" 00049 #include "tnt_array2d_utils.h" 00050 #include "tnt_array3d_utils.h" 00051 00052 #include "tnt_fortran_array1d.h" 00053 #include "tnt_fortran_array2d.h" 00054 #include "tnt_fortran_array3d.h" 00055 #include "tnt_fortran_array1d_utils.h" 00056 #include "tnt_fortran_array2d_utils.h" 00057 #include "tnt_fortran_array3d_utils.h" 00058 00059 #include "tnt_sparse_vector.h" 00060 #include "tnt_sparse_matrix.h" 00061 00062 #include "tnt_stopwatch.h" 00063 #include "tnt_subscript.h" 00064 00065 00066 #endif 00067 // TNT_H