summaryrefslogtreecommitdiff
path: root/src/fracture.cpp
blob: 77af25348cd6d76b19a0a2d364d99ce693b5a23e (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

#include <random>
#include <iostream>

#include <cholmod.h>

#include "randutils/randutils.hpp"

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

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

  unsigned int N = 1;
  unsigned int L = 16;
  double  beta = 0.5;

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

  cholmod_common c;
  CHOL_F(start)(&c);
  c.supernodal = CHOLMOD_SUPERNODAL;


  graph G(L);
  network base_network(G, &c);
  ma meas(N, L, beta);

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

  for (unsigned int trial = 0; trial < N; trial++) {
    network tmp_network(base_network);
    tmp_network.set_thresholds(beta, rng);
    tmp_network.fracture(meas);
  }

  CHOL_F(finish)(&c);

  return 0;
}