-
Notifications
You must be signed in to change notification settings - Fork 6
/
model_ising2dsqrffwolff.hpp
70 lines (52 loc) · 1.88 KB
/
model_ising2dsqrffwolff.hpp
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
/*
* Copyright (c) 2012, Robert Rueger <[email protected]>
*
* This file is part of SSMC.
*
* SSMC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SSMC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SSMC. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MODEL_ISING2DSQRFFWOLFF_H_INCLUDED
#define _MODEL_ISING2DSQRFFWOLFF_H_INCLUDED
#include <cmath>
#include <vector>
using namespace std;
#include <gsl/gsl_rng.h>
#include <png++/png.hpp>
#include "systemmodel.hpp"
#include "isingspin.hpp"
#include "model_ising2dsqrmet.hpp"
struct lsite_2dsquare {
// ----- HELPER STRUCT: POSITION ON A 2D SQUARE LATICE -----
unsigned short int line, col;
lsite_2dsquare();
lsite_2dsquare( const unsigned int& line, const unsigned int& col );
};
class IsingModel2dWolff: public IsingModel2d
{
// ----- 2D FIELD-FREE ISING MODEL (WOLFF-ALGORITHM) -----
protected:
vector< vector<bool> > mask;
vector< lsite_2dsquare > mask_items;
vector< lsite_2dsquare > mask_candidates;
double add_prob;
vector<unsigned long int> cluster_size;
public:
IsingModel2dWolff( const unsigned int& N, const bool& periodic,
const double& J, const double& T,
const unsigned int& fsize_correction, const string& cwd );
png::image< png::index_pixel > get_image() const;
void wolff_clusterflip();
void mcstep();
};
#endif // _MODEL_ISING2DSQRFFWOLFF_H_INCLUDED