Files Classes Functions Hierarchy
00001 00005 class desystest 00006 { 00007 public: 00008 00010 static string doc[]; 00011 00013 static void test01(int argc, char** argv); 00015 static void test02(); 00017 static int test03(int argc, char** argv); 00019 static int test04(int argc, char** argv); 00021 static void test05(int argc, char** argv); 00022 00026 template< typename T > 00027 class f1 00028 { 00029 public: 00030 00032 T * xval; 00034 T * yi; 00035 00037 f1(T * xval_, T * yi_) 00038 : xval(xval_), yi(yi_) { *xval=0; yi[0]=1.0; yi[1]=0.0; } 00039 00041 void operator ++ () {} 00042 00044 void operator () (T & Dz, T const z, T const x) const 00045 { Dz = -yi[0]; } 00046 }; 00047 00048 }; 00049 00050 00051
1.5.8