Skip to content

Commit 1d355cc

Browse files
author
Samuel Jenness
committed
Updates to pass check
1 parent 0cc3c0c commit 1d355cc

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: EpiModel.hpc
22
Version: 1.0
3-
Date: 2014-04-23
3+
Date: 2015-04-23
44
Title: EpiModel Extensions for High-Performance Computing
55
Description: Extension package to EpiModel to run large-scale network models
66
on modern high-performance computing systems. Functionality provided to run models in
7-
parallel environments based on Torque computing systems. Checkpointing functions are
7+
parallel environments based on Torque computing systems. Check-pointing functions are
88
included to save and restore simulation work.
99
Maintainer: Samuel Jenness <sjenness@uw.edu>
1010
Authors@R: c(person("Samuel", "Jenness",

tests/testthat/test-parallel.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
context("netsim_par")
22

33
test_that("1 sim on 1 core", {
4+
skip_on_cran()
45
nw <- network.initialize(n = 50, directed = FALSE)
56
formation <- ~ edges
67
target.stats <- 25
@@ -19,6 +20,7 @@ test_that("1 sim on 1 core", {
1920
})
2021

2122
test_that("2 sims on 1 core", {
23+
skip_on_cran()
2224
nw <- network.initialize(n = 50, directed = FALSE)
2325
formation <- ~ edges
2426
target.stats <- 25
@@ -37,6 +39,7 @@ test_that("2 sims on 1 core", {
3739
})
3840

3941
test_that("1 sim on (not really) 2 cores", {
42+
skip_on_cran()
4043
nw <- network.initialize(n = 50, directed = FALSE)
4144
formation <- ~ edges
4245
target.stats <- 25
@@ -55,6 +58,7 @@ test_that("1 sim on (not really) 2 cores", {
5558
})
5659

5760
test_that("2 sims on 2 cores", {
61+
skip_on_cran()
5862
nw <- network.initialize(n = 50, directed = FALSE)
5963
formation <- ~ edges
6064
target.stats <- 25

vignettes/Intro.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To get started, start by loading the **EpiModel.hpc** library:
2424
library(EpiModel.hpc)
2525
```
2626

27-
This package depends on **EpiModel** itself, so that package and the related [Statnet](http://statnet.csde.washington.edu/trac/wiki) software suite will also be loaded. Readers without prior experience estimating and simulating network models in **EpiModel** should consult the [Basic Network Models](http://statnet.github.io/tut/BasicNet.html) tutorial first. This tutorial assumes readers are familiar with that material.
27+
This package depends on **EpiModel** itself, so that package and the related [Statnet](http://statnet.org/) software suite will also be loaded. Readers without prior experience estimating and simulating network models in **EpiModel** should consult the [Basic Network Models](http://statnet.github.io/tut/BasicNet.html) tutorial first. This tutorial assumes readers are familiar with that material.
2828

2929

3030
## 2. A Basic Simulation in Parallel

0 commit comments

Comments
 (0)