This file is indexed.

/usr/lib/R/site-library/igraph/tests/test_operators.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
context("operators")

test_that("operators work", {

  library(igraph)

  o <- function(x) x[order(x[,1], x[,2]),]

  g1 <- graph.ring(10)
  g2 <- graph.star(11, center=11, mode="undirected")
  gu <- graph.union(g1, g2)
  expect_that(vcount(gu), equals(11))
  expect_that(ecount(gu), equals(20))
  expect_that(o(rbind(get.edgelist(g1), get.edgelist(g2))),
              equals(o(get.edgelist(gu))))

  gdu <- graph.disjoint.union(g1, g2)
  expect_that(o(get.edgelist(gdu)),
              equals(o(rbind(get.edgelist(g1),
                             get.edgelist(g2)+vcount(g1)))))

####

  expect_that(graph.isomorphic(graph.difference(gu, g1), g2), is_true())

####

  expect_that(graph.isomorphic(graph.intersection(gu, g2), g2), is_true())

  expect_that(graph.isomorphic(graph.intersection(gu, g1,
                                                  keep.all.vertices=FALSE),
                               g1),is_true())

####

  expect_that(graph.complementer(graph.complementer(g2)),
              equals(g2))

####

  gc <- graph.compose(gu, g1)
  expect_that(vcount(gc), equals(11))
  expect_that(ecount(gc), equals(60))
  expect_that(diameter(gc), equals(2))
  
})