-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethod19b.R
56 lines (40 loc) · 1.09 KB
/
method19b.R
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
#####################
### Load packages ###
#####################
library(igraph)
library(doParallel)
library(foreach)
library(combinat)
library(VGAM)
##################
### Parameters ###
##################
set.seed(1)
registerDoParallel(cores = 10)
load("graphsB.RData")
#################
### Functions ###
#################
source("functions.R")
##################
### Simulation ###
##################
durationMethod19b <- proc.time()
est19b <- foreach(i = 1:length(gB),
.combine = rbind,
.packages = c("igraph",
"combinat",
"VGAM")) %dopar% deconstruct(g = gB[[i]][[1]],
method = "maxInt")
durationMethod19b <- proc.time() - durationMethod19b
#############################
### Remove unwanted stuff ###
#############################
rm(gB,
truthB,
durationTruthB)
rm(list = lsf.str())
#################
### Save data ###
#################
save.image("method19b.RData")