tests/testthat/test-graph.de.bruijn.R

test_that("make_de_bruijn_graph works", {
  g <- make_de_bruijn_graph(2, 1)
  g2 <- make_de_bruijn_graph(2, 2)
  g3 <- make_line_graph(g)

  expect_true(graph.isomorphic(g3, make_graph(c(
    1, 1, 3, 1, 1, 2, 3, 2, 2, 3,
    4, 3, 2, 4, 4, 4
  ))))
  expect_true(graph.isomorphic(g2, g3))
})

Try the igraph package in your browser

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

igraph documentation built on Aug. 10, 2023, 9:08 a.m.