Differences From Artifact [56e8b77f261a915b]:
- File        
TZTesterSp/template.cpp
- 2011-11-12 23:35:53 - part of checkin [3de32bb725] on branch trunk - 523 (user: kinaba) [annotate]
 
To Artifact [6e30a998ce576012]:
- File        
TZTesterSp/template.cpp
- 2012-05-20 14:16:51 - part of checkin [2034908d41] on branch trunk - 543 (user: kinaba) [annotate]
 
    10     10   #include <iterator>
    11     11   #include <functional>
    12     12   #include <complex>
    13     13   #include <queue>
    14     14   #include <stack>
    15     15   #include <cmath>
    16     16   #include <cassert>
    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
    24     17   using namespace std;
    25     18   typedef long long LL;
    26         -typedef complex<double> CMP;
           19  +typedef long double LD;
           20  +typedef complex<LD> CMP;
    27     21   
    28     22   class $CLASSNAME$ { public:
    29     23    $RC$ $METHODNAME$($METHODPARMS$)
    30     24    {
    31     25    }
    32     26   };
    33     27   
    34     28   $TESTCODE$