summaryrefslogtreecommitdiff
path: root/src/sample_fracture.cpp
blob: eaba69e47a6ca4b0b6e844923320407c84b5df22 (plain)
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

#include <random>
#include <iostream>

#include <cholmod.h>

#include "randutils/randutils.hpp"

#include <graph.hpp>
#include <network.hpp>
#include <hooks.hpp>
#include "sample.hpp"

#include <csignal>
#include <cstring>
#include <atomic>

int main(int argc, char* argv[]) {

  int opt;

  unsigned N = 1;
  unsigned Lx = 16;
  double Ly = 16;
  double  beta = 0.5;

  while ((opt = getopt(argc, argv, "N:X:Y:b:")) != -1) {
    switch (opt) {
      case 'N':
        N = (unsigned)atof(optarg);
        break;
      case 'X':
        Lx = atof(optarg);
        break;
      case 'Y':
        Ly = atof(optarg);
        break;
      case 'b':
        beta = atof(optarg);
        break;
      default:
        exit(1);
    }
  }

  cholmod_common c;
  CHOL_F(start)(&c);

  sample meas(Lx, Ly, beta);
  //sample meas2(Ly, Lx, beta);

  randutils::auto_seed_128 seeds;
  std::mt19937 rng{seeds};

  for (unsigned trial = 0; trial < N; trial++) {
    graph G(Lx, 1.0, rng);
    elastic_network network(G, &c);
    network.set_thresholds(beta, rng);
    network.fracture(meas);

    /*graph G2 = G.rotate();
    class network network2(G2, &c);
    network2.thresholds = network.thresholds;
    network2.fracture(meas2);
    */
  }

  CHOL_F(finish)(&c);

  return 0;
}