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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
#include <random>
#include <iostream>
#include <cholmod.h>
#include "randutils/randutils.hpp"
#include <graph.hpp>
#include <network.hpp>
#include <hooks.hpp>
#include "animate.hpp"
#include <csignal>
#include <cstring>
#include <atomic>
int main(int argc, char* argv[]) {
int opt;
unsigned N = 1;
unsigned Lx = 16;
unsigned Ly = 16;
double beta = 0.5;
unsigned n = 128;
double a = 1.0;
bool use_aN = false;
double w = 0.5;
unsigned width = 800;
while ((opt = getopt(argc, argv, "N:X:Y:b:n:a:w:W:")) != -1) {
switch (opt) {
case 'N':
N = (unsigned)atof(optarg);
break;
case 'X':
Lx = atoi(optarg);
break;
case 'Y':
Ly = atoi(optarg);
break;
case 'b':
beta = atof(optarg);
break;
case 'n':
n = (unsigned)atof(optarg);
use_aN = true;
break;
case 'a':
a = atof(optarg);
use_aN = true;
break;
case 'w':
w = atof(optarg);
break;
case 'W':
width = atoi(optarg);
break;
default:
exit(1);
}
}
cholmod_common c;
CHOL_F(start)(&c);
randutils::auto_seed_128 seeds;
std::mt19937 rng{seeds};
if (w == 0.0 || w == 1.0) {
if (use_aN) {
animate meas(sqrt(2*n *a), sqrt( 2*n / a), width, argc, argv);
for (unsigned trial = 0; trial < N; trial++) {
graph G(n, a, rng);
fuse_network net(G, &c);
net.set_thresholds(beta, rng);
net.fracture(meas);
}
} else {
animate meas(Lx, Ly, width, argc, argv);
const graph G(Lx, Ly);
const fuse_network plain_net(G, &c);
for (unsigned trial = 0; trial < N; trial++) {
fuse_network net = plain_net;
net.set_thresholds(beta, rng);
try {
net.fracture(meas);
} catch (std::exception &e) {
std::cout << e.what() << std::endl;
getchar();
}
}
}
} else {
if (use_aN) {
animate meas(sqrt(2*n *a), sqrt( 2*n / a), width, argc, argv);
for (unsigned trial = 0; trial < N; trial++) {
graph G(n, a, rng);
elastic_network net(G, &c, w);
net.set_thresholds(beta, rng);
net.fracture(meas);
}
} else {
animate meas(Lx, Ly, width, argc, argv);
const graph G(Lx, Ly);
const elastic_network plain_net(G, &c, w);
for (unsigned trial = 0; trial < N; trial++) {
elastic_network net = plain_net;
net.set_thresholds(beta, rng);
net.fracture(meas);
}
}
}
CHOL_F(finish)(&c);
return 0;
}
|