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 #include <iterator> 10 #include <iterator>
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> <
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 using namespace std; 17 using namespace std;
25 typedef long long LL; 18 typedef long long LL;
> 19 typedef long double LD;
26 typedef complex<double> CMP; | 20 typedef complex<LD> CMP;
27 21
28 class $CLASSNAME$ { public: 22 class $CLASSNAME$ { public:
29 $RC$ $METHODNAME$($METHODPARMS$) 23 $RC$ $METHODNAME$($METHODPARMS$)
30 { 24 {
31 } 25 }
32 }; 26 };
33 27
34 $TESTCODE$ 28 $TESTCODE$