This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_label.propagation.community.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
17
18
19
20
21
22
23
context("label.propagation.community")

test_that("label.probagation.community works", {

  library(igraph)

  g <- graph.famous("Zachary")
  set.seed(42)
  lpc <- label.propagation.community(g)
  expect_that(lpc$modularity, equals(modularity(g, lpc$membership)))
  expect_that(membership(lpc),
              equals(c(1, 1, 2, 1, 3, 3, 3, 1, 2, 2, 3, 1, 1, 1, 2, 2,
                       3, 1, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
                       2, 2)))
  expect_that(length(lpc), equals(3))
  expect_that(sizes(lpc),
              equals(structure(c(10L, 19L, 5L), .Dim = 3L, .Dimnames =
                               structure(list(`Community sizes` =
                                              c("1", "2", "3")),
                                         .Names = "Community sizes"),
                               class = "table")))

})