tests/testthat/test_spectrum.R

test_that("hypergraph.spectrum works", {
  h <- hypergraph_from_edgelist(list(1:2,2:3,3:4))
  g <- graph_from_literal(1-2-3-4)
  set.seed(222)
  s <- hypergraph.spectrum(h,k=2)
  Inc <- incidence_matrix(g)
  set.seed(222)
  si <- RSpectra::svds(Inc,k=2)

  expect_equal(s, si)

  ## check that it works on small hypergraphs
  h <- hypergraph_from_edgelist(list(1:2,2:3))
  s <- hypergraph.spectrum(h)
  s1 <- svd(rbind(c(1,1,0),c(0,1,1)))
  expect_equal(s, s1)

})

Try the HyperG package in your browser

Any scripts or data that you put into this service are public.

HyperG documentation built on March 4, 2021, 5:06 p.m.