Nothing
test_that("make_empty_hypergraph works", {
h <- make_empty_hypergraph(10)
expect_true(is.empty.hypergraph(h))
expect_equal(hsize(h), 0)
expect_equal(horder(h), 10)
h <- make_empty_hypergraph(0)
expect_true(is.empty.hypergraph(h))
expect_equal(hsize(h), 0)
expect_equal(horder(h), 0)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.