00001 00002 /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ 00003 /* */ 00004 /* */ 00005 /* MV++ Numerical Matrix/Vector C++ Library */ 00006 /* MV++ Version 1.5 */ 00007 /* */ 00008 /* R. Pozo */ 00009 /* National Institute of Standards and Technology */ 00010 /* */ 00011 /* NOTICE */ 00012 /* */ 00013 /* Permission to use, copy, modify, and distribute this software and */ 00014 /* its documentation for any purpose and without fee is hereby granted */ 00015 /* provided that this permission notice appear in all copies and */ 00016 /* supporting documentation. */ 00017 /* */ 00018 /* Neither the Institution (National Institute of Standards and Technology) */ 00019 /* nor the author makes any representations about the suitability of this */ 00020 /* software for any purpose. This software is provided ``as is''without */ 00021 /* expressed or implied warranty. */ 00022 /* */ 00023 /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ 00024 00025 // 00026 // mvv.h 00027 // 00028 // MV vector classes for double, float, int, and complex 00029 // 00030 00031 #ifndef _MV_VECTOR_ALL_H_ 00032 #define _MV_VECTOR_ALL_H_ 00033 00034 #include "mvvrf.h" 00035 #include "mvvd.h" 00036 #include "mvvi.h" 00037 #include "mvvf.h" 00038 00039 #include "mvblasf.h" 00040 #include "mvblasd.h" 00041 #include "mvblasi.h" 00042 00043 #include <complex> 00044 #include "mvvc.h" 00045 #include "mvblasc.h" 00046 #include "iotext.h" 00047 00048 00049 #endif 00050 00051 // _MV_VECTOR_ALL_H_