Differences From Artifact [0155d37d08046666]:
- File        
TZTesterSp/template.cpp
- 2011-05-19 07:51:05 - part of checkin [b344f7b953] on branch trunk - Added my standard template for TZTester (user: kinaba) [annotate]
 
 
To Artifact [56e8b77f261a915b]:
- File        
TZTesterSp/template.cpp
- 2011-11-12 23:35:53 - part of checkin [3de32bb725] on branch trunk - 523 (user: kinaba) [annotate]
 
 
   11  #include <functional>                                                                 11  #include <functional>
   12  #include <complex>                                                                    12  #include <complex>
   13  #include <queue>                                                                      13  #include <queue>
   14  #include <stack>                                                                      14  #include <stack>
   15  #include <cmath>                                                                      15  #include <cmath>
   16  #include <cassert>                                                                    16  #include <cassert>
   17  #include <cstring>                                                                    17  #include <cstring>
                                                                                        >    18  #ifdef __GNUC__
                                                                                        >    19  #include <ext/hash_map>
                                                                                        >    20  #define unordered_map __gnu_cxx::hash_map
                                                                                        >    21  #else
                                                                                        >    22  #include <unordered_map>
                                                                                        >    23  #endif
   18  using namespace std;                                                                  24  using namespace std;
   19  typedef long long LL;                                                                 25  typedef long long LL;
   20  typedef complex<double> CMP;                                                          26  typedef complex<double> CMP;
   21                                                                                        27  
   22  class $CLASSNAME$ { public:                                                           28  class $CLASSNAME$ { public:
   23          $RC$ $METHODNAME$($METHODPARMS$)                                              29          $RC$ $METHODNAME$($METHODPARMS$)
   24          {                                                                             30          {
   25          }                                                                             31          }
   26  };                                                                                    32  };
   27                                                                                        33  
   28  $TESTCODE$                                                                            34  $TESTCODE$