mirror of
https://github.com/logos-storage/logos-storage-research.git
synced 2026-01-02 21:43:09 +00:00
* add block discovery simulator * add analysis document for simpler cases of block discovery
19 lines
306 B
R
19 lines
306 B
R
# We do this hack because rsconnect doesn't seem to like us bundling the app
|
|
# as a package.
|
|
|
|
order <- c(
|
|
'R/partition.R',
|
|
'R/stats.R',
|
|
'R/node.R',
|
|
'R/sim.R'
|
|
)
|
|
|
|
library(R6)
|
|
library(purrr)
|
|
library(tidyverse)
|
|
|
|
lapply(order, source)
|
|
|
|
run <- function() {
|
|
rmarkdown::run('./block-discovery-sim.Rmd')
|
|
} |