This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_sir.R is in r-cran-igraph 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
context("SIR epidemics model on a network")

test_that("SIR works", {

  set.seed(42)
  library(digest)
  library(igraph)

  g <- erdos.renyi.game(50, 50, type="gnm")
  res <- sir(g, beta=5, gamma=1, no.sim=10)
  if (.Machine$sizeof.pointer == 4) {
    expect_that(digest(res), equals("b73a8ad03b832b3543f2f03d07330398"))
  } else {
    expect_that(digest(res), equals("bc42d0cbe0bb3321e83979c0432f9cea"))
  }
})