-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethod01a.R
56 lines (40 loc) · 1.09 KB
/
method01a.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("graphsA.RData")
#################
### Functions ###
#################
source("functions.R")
##################
### Simulation ###
##################
durationMethod01a <- proc.time()
est01a <- foreach(i = 1:length(gA),
.combine = rbind,
.packages = c("igraph",
"combinat",
"VGAM")) %dopar% deconstruct(g = gA[[i]][[1]],
method = "random")
durationMethod01a <- proc.time() - durationMethod01a
#############################
### Remove unwanted stuff ###
#############################
rm(gA,
truthA,
durationTruthA)
rm(list = lsf.str())
#################
### Save data ###
#################
save.image("method01a.RData")