tmt.h
00001
00002
00003
00004
00005 #ifdef use_namespace
00006
00007 namespace NEWMAT {
00008 #endif
00009
00010
00011 class time_lapse
00012 {
00013 double start_time;
00014 public:
00015 time_lapse();
00016 ~time_lapse();
00017 };
00018
00019
00020
00021 class MultWithCarry
00022 {
00023 unsigned long x;
00024 unsigned long crry;
00025
00026 void NextValue();
00027
00028 void operator=(const MultWithCarry&) {}
00029
00030 public:
00031 MultWithCarry(double s=0.46875);
00032 Real Next();
00033 ~MultWithCarry() {}
00034 };
00035
00036
00037 void FillWithValues(MultWithCarry& MWC, Matrix& M);
00038
00039
00040 void Print(const Matrix& X);
00041 void Print(const UpperTriangularMatrix& X);
00042 void Print(const DiagonalMatrix& X);
00043 void Print(const SymmetricMatrix& X);
00044 void Print(const LowerTriangularMatrix& X);
00045
00046 void Clean(Matrix&, Real);
00047 void Clean(DiagonalMatrix&, Real);
00048
00049 #ifdef use_namespace
00050 }
00051 using namespace NEWMAT;
00052 #endif
00053
00054
00055
00056 void trymat1(); void trymat2(); void trymat3();
00057 void trymat4(); void trymat5(); void trymat6();
00058 void trymat7(); void trymat8(); void trymat9();
00059 void trymata(); void trymatb(); void trymatc();
00060 void trymatd(); void trymate(); void trymatf();
00061 void trymatg(); void trymath(); void trymati();
00062 void trymatj(); void trymatk(); void trymatl();
00063 void trymatm();
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090