1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#pragma once
#include <cmath>
#include <stdio.h>
#include "types.h"
/* The following is the minimum definition of a spin class.
*
* The class must contain an M_t and an F_t for holding the sum of an
* integer number of spins and a double-weighted number of spins,
* respectively.
*
* void init(X_t *p);
* void free_spin(X_t p);
* void free_spin(M_t p);
* void free_spin(F_t p);
* X_t copy(X_t x);
* void add(M_t *x1, int factor, X_t x2);
* void add(F_t *x1, double factor, X_t x2);
* M_t scalar_multiple(int factor, X_t x);
* F_t scalar_multiple(double factor, X_t x);
* double norm_squared(F_t x);
* void write_magnetization(M_t M, FILE *outfile);
*
*/
template <class T>
struct height_t {
T x;
typedef T M_t;
typedef double F_t;
height_t() : x(0) {}
height_t(T x) : x(x) {}
inline T operator*(v_t a) const {
return x * a;
}
inline double operator*(double a) const {
return x * a;
}
};
template <class T>
inline T& operator+=(T& M, const height_t<T> &h) {
M += h.x;
return M;
}
template <class T>
inline T& operator-=(T& M, const height_t<T> &h) {
M -= h.x;
return M;
}
double norm_squared(double h) {
return pow(h, 2);
}
template <class T>
void write_magnetization(T M, FILE *outfile) {
fwrite(&M, sizeof(T), 1, outfile);
}
|