-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethod05.R
57 lines (41 loc) · 1.14 KB
/
method05.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
57
#####################
### Load packages ###
#####################
library(igraph)
library(doParallel)
library(foreach)
library(combinat)
library(VGAM)
##################
### Parameters ###
##################
set.seed(1)
registerDoParallel(cores = 10)
load("graphs.RData")
#################
### Functions ###
#################
source("functions.R")
##################
### Simulation ###
##################
durationMethod05 <- proc.time()
est05 <- foreach(i = 1:length(g),
.combine = rbind,
.packages = c("igraph",
"combinat",
"VGAM")) %dopar% deconSearch(g = g[[i]][[1]],
method = "NLL",
numPerSide = 4)
durationMethod05 <- proc.time() - durationMethod05
#############################
### Remove unwanted stuff ###
#############################
rm(g,
truth,
durationTruth)
rm(list = lsf.str())
#################
### Save data ###
#################
save.image("method05.RData")