# sample pair of graphs w. 10 vertices
set.seed(123)
g <- sample_correlated_gnp_pair(n = 10, corr = 0.5, p = 0.5)
A <- g$graph1
B <- g$graph2
# sample hard seeds
hard_cor <- c(1, 5, 3) # correct
hard_incor <- data.frame(A = c(1, 2, 3), B = c(1, 2, 5)) # contain incorrect
test_that("FW with no seed", {
m <- gm(A, B, seeds = NULL, method = "indefinite", start = "bari")
expect_true(all(!m$seeds))
})
test_that("FW with correct hard seeds", {
m <- gm(A, B, seeds = hard_cor, method = "indefinite", start = "bari")
expect_equal(
m[m$seeds],
data.frame(corr_A = c(1, 3, 5), corr_B = c(1, 3, 5)),
ignore_attr = TRUE
)
})
test_that("FW with incorrect hard seeds", {
m <- gm(A, B, seeds = hard_incor, method = "indefinite", start = "bari")
expect_equal(
m[m$seeds],
data.frame(corr_A = c(1, 2, 3), corr_B = c(1, 2, 5)),
ignore_attr = TRUE
)
})
set.seed(12)
g2 <- sample_correlated_gnp_pair(n = 10, corr = 0.7, p = 0.3)
A2 <- g2$graph1
B2 <- g2$graph2
A_l <- list(A, A2)
B_l <- list(B, B2)
test_that("FW multi-layer", {
m <- gm(A_l, B_l, seeds = 1:3, method = "indefinite", start = "rds")
expect_equal(m[m$seeds], data.frame(corr_A = 1:3, corr_B = 1:3))
})
# test get_s_to_ns, input non-list adj matrices
seeds <- check_seeds(seeds = 1:3, nv = 10)
nonseeds <- seeds$nonseeds
seeds <- seeds$seeds
test_that("get_s_to_ns non-list adj matrices", {
s2ns <- get_s_to_ns(A, B, seeds, nonseeds, perm = sample(10-nrow(seeds)))
expect_equal(nrow(s2ns), 7)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.