test_that("[ indexing works", { g <- make_tree(20) ## Are these vertices connected? expect_equal(g[1, 2], 1) expect_equal(canonicalize_matrix(g[c(1, 1, 7), c(2, 3, 14)]), vector_to_square_matrix(1, 1, 0, 1, 1, 0, 0, 0, 1)) expect_equal(canonicalize_matrix(g[c(1, 1, 7), c(5, 3, 12)]), vector_to_square_matrix(0, 0, 0, 1, 1, 0, 0, 0, 0)) expect_equal(canonicalize_matrix(g[c(1, 1, 1, 1), c(2, 3, 2, 2)]), matrix(1, 4, 4)) expect_equal(canonicalize_matrix(g[c(8, 17), c(17, 8)]), vector_to_square_matrix(1, 0, 0, 0)) }) test_that("[ indexing works with symbolic names", { g <- make_test_named_tree() expect_equal(g["a", "b"], 1) expect_equal( canonicalize_matrix(g[c("a", "a", "g"), c("b", "c", "n")]), vector_to_square_matrix(1, 1, 0, 1, 1, 0, 0, 0, 1) ) expect_equal( canonicalize_matrix(g[c("a", "a", "g"), c("e", "c", "l")]), vector_to_square_matrix(0, 0, 0, 1, 1, 0, 0, 0, 0) ) expect_equal( canonicalize_matrix(g[c("a", "a", "a", "a"), c("b", "c", "b", "b")]), matrix(1, 4, 4) ) expect_equal(canonicalize_matrix(g[c("h", "q"), c("q", "h")]), vector_to_square_matrix(1, 0, 0, 0)) }) test_that("[ indexing works with logical vectors", { g <- make_test_named_tree() lres <- structure( c( 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), .Dim = c(2L, 20L), .Dimnames = list(c("b", "c"), c( "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t" )) ) expect_equal(g[degree(g, mode = "in") == 0, 2], 1) expect_equal(as.matrix(g[2:3, TRUE]), lres) }) test_that("[ indexing works with negative indices", { g <- make_test_named_tree() nres <- structure( c( 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ), .Dim = c(2L, 19L), .Dimnames = list( c("b", "c"), c( "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t" ) ) ) expect_equal(as.matrix(g[2:3, -1]), nres) }) test_that("[ indexing works with weighted graphs", { g <- make_test_weighted_tree() expect_equal(g[1, 2], 2) expect_equal(canonicalize_matrix(g[c(1, 1, 7), c(2, 3, 14)]), vector_to_square_matrix(2, 2, 0, 3, 3, 0, 0, 0, 98)) expect_equal(canonicalize_matrix(g[c(1, 1, 7), c(5, 3, 12)]), vector_to_square_matrix(0, 0, 0, 3, 3, 0, 0, 0, 0)) expect_equal( canonicalize_matrix(g[c(1, 1, 1, 1), c(2, 3, 2, 2)]), vector_to_square_matrix(2, 2, 2, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2) ) expect_equal(canonicalize_matrix(g[c(8, 17), c(17, 8)]), vector_to_square_matrix(136, 0, 0, 0)) }) test_that("[ indexing works with weighted graphs and symbolic names", { g <- make_test_weighted_tree() expect_equal(g["a", "b"], 2) expect_equal( canonicalize_matrix(g[c("a", "a", "g"), c("b", "c", "n")]), vector_to_square_matrix(2, 2, 0, 3, 3, 0, 0, 0, 98) ) expect_equal( canonicalize_matrix(g[c("a", "a", "g"), c("e", "c", "l")]), vector_to_square_matrix(0, 0, 0, 3, 3, 0, 0, 0, 0) ) expect_equal( canonicalize_matrix(g[c("a", "a", "a", "a"), c("b", "c", "b", "b")]), vector_to_square_matrix(2, 2, 2, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2) ) expect_equal(canonicalize_matrix(g[c("h", "q"), c("q", "h")]), vector_to_square_matrix(136, 0, 0, 0)) }) test_that("[[ indexing works with adjacent vertices", { g <- make_test_named_tree() expect_equal(g[[1, ]], list(a = V(g)[2:3]), ignore_attr = TRUE) expect_equal(g[[, 2]], list(b = V(g)[1]), ignore_attr = TRUE) expect_equal( g[[, 2, directed = FALSE]], list(b = V(g)[c(1, 4, 5)]), ignore_attr = TRUE ) expect_equal( g[[2, directed = FALSE]], list(b = V(g)[c(1, 4, 5)]), ignore_attr = TRUE ) expect_equal(g[[1:3, ]], list(a = V(g)[2:3], b = V(g)[4:5], c = V(g)[6:7]), ignore_attr = TRUE) expect_equal(g[[, 1:3]], list(a = V(g)[numeric()], b = V(g)[1], c = V(g)[1]), ignore_attr = TRUE) }) test_that("[[ indexing works with symbolic names", { g <- make_test_named_tree() expect_equal(g[["a", ]], list(a = V(g)[2:3]), ignore_attr = TRUE) expect_equal(g[[, "b"]], list(b = V(g)[1]), ignore_attr = TRUE) expect_equal( g[[, "b", directed = FALSE]], list(b = V(g)[c(1, 4, 5)]), ignore_attr = TRUE ) expect_equal( g[["b", directed = FALSE]], list(b = V(g)[c(1, 4, 5)]), ignore_attr = TRUE ) expect_equal( g[[letters[1:3], ]], list(a = V(g)[2:3], b = V(g)[4:5], c = V(g)[6:7]), ignore_attr = TRUE ) expect_equal( g[[, letters[1:3]]], list(a = V(g)[numeric()], b = V(g)[1], c = V(g)[1]), ignore_attr = TRUE ) }) test_that("[[ indexing works with logical vectors", { g <- make_test_named_tree() expect_equal( g[[degree(g, mode = "in") == 0, ]], list(a = V(g)[2:3]), ignore_attr = TRUE ) }) test_that("[[ indexing works with filtering on both ends", { g <- make_test_named_tree() expect_equal( g[[1:10, 1:10]], list(a = V(g)[2:3], b = V(g)[4:5], c = V(g)[6:7], d = V(g)[8:9], e = V(g)[10], f = V(g)[numeric()], g = V(g)[numeric()], h = V(g)[numeric()], i = V(g)[numeric()], j = V(g)[numeric()]), ignore_attr = TRUE ) }) test_that("[[ indexing is consistent with length()", { g <- make_test_named_tree() expect_equal(length(g), vcount(g)) }) test_that("[[ can query incident edges", { g <- make_test_named_tree() expect_equal(g[[1, , edges = TRUE]], list(a = E(g)[1:2]), ignore_attr = TRUE) expect_equal(g[[, 2, edges = TRUE]], list(b = E(g)[1]), ignore_attr = TRUE) expect_equal( g[[, 2, directed = FALSE, edges = TRUE]], list(b = E(g)[c(1, 3, 4)]), ignore_attr = TRUE ) expect_equal( g[[2, directed = FALSE, edges = TRUE]], list(b = E(g)[c(1, 3, 4)]), ignore_attr = TRUE ) expect_equal( g[[1:3, , edges = TRUE]], list(a = E(g)[1:2], b = E(g)[3:4], c = E(g)[5:6]), ignore_attr = TRUE ) expect_equal( g[[, 1:3, edges = TRUE]], list(a = E(g)[numeric()], b = E(g)[1], c = E(g)[2]), ignore_attr = TRUE ) }) test_that("[[ queries edges with vertex names", { g <- make_test_named_tree() expect_equal( g[["a", , edges = TRUE]], list(a = E(g)[1:2]), ignore_attr = TRUE ) expect_equal( g[[, "b", edges = TRUE]], list(b = E(g)[1]), ignore_attr = TRUE ) expect_equal( g[[, "b", directed = FALSE, edges = TRUE]], list(b = E(g)[c(1, 3, 4)]), ignore_attr = TRUE ) expect_equal( g[["b", directed = FALSE, edges = TRUE]], list(b = E(g)[c(1, 3, 4)]), ignore_attr = TRUE ) expect_equal( g[[letters[1:3], , edges = TRUE]], list(a = E(g)[1:2], b = E(g)[3:4], c = E(g)[5:6]), ignore_attr = TRUE ) expect_equal( g[[, letters[1:3], edges = TRUE]], list(a = E(g)[numeric()], b = E(g)[1], c = E(g)[2]), ignore_attr = TRUE ) ## Filtering on both ends expect_equal( g[[1:10, 1:10, edges = TRUE]], list(E(g)[1:2], E(g)[3:4], E(g)[5:6], E(g)[7:8], E(g)[9], E(g)[numeric()], E(g)[numeric()], E(g)[numeric()], E(g)[numeric()], E(g)[numeric()]), ignore_attr = TRUE ) }) test_that("[ handles from and to properly", { g <- make_test_named_tree() g <- make_tree(20) expect_equal(g[from = c(1, 2, 2, 3), to = c(3, 4, 8, 7)], c(1, 1, 0, 1)) V(g)$name <- letters[1:20] expect_equal( g[from = c("a", "b", "b", "c"), to = c("c", "d", "h", "g")], c(1, 1, 0, 1) ) E(g)$weight <- (1:ecount(g))^2 expect_equal( g[from = c("a", "b", "b", "c"), to = c("c", "d", "h", "g")], c(4, 9, 0, 36) ) expect_equal( g[from = c("a", "b", "b", "c"), to = c("c", "d", "h", "g"), edges = TRUE], c(2, 3, 0, 6) ) }) test_that("[[ works with from and to", { g <- make_tree(20) expect_equal(ignore_attr = TRUE, g[[1, ]], g[[from = 1]]) expect_equal(ignore_attr = TRUE, g[[, 1]], g[[to = 1]]) expect_equal(ignore_attr = TRUE, g[[1:5, 4:10]], g[[from = 1:5, to = 4:10]]) expect_error(g[[1, from = 1]], "Cannot give both") expect_error(g[[, 2, to = 10]], "Cannot give both") }) test_that("[[ returns vertex and edges sequences", { g <- make_tree(20) expect_true(is_igraph_vs(g[[1]][[1]])) expect_true(is_igraph_es(g[[1, edges = TRUE]][[1]])) expect_true(is_igraph_vs(g[[1:3, 2:6]][[1]])) expect_true(is_igraph_es(g[[1:3, 2:6, edges = TRUE]][[1]])) }) test_that("[[ handles from and to properly even if the graph has conflicting vertex attributes", { g <- make_tree(20) V(g)$i <- 200:219 V(g)$j <- 200:219 expect_true(is_igraph_vs(g[[1:3, 2:6]][[1]])) expect_true(is_igraph_vs(g[[from = 1:3, to = 2:6]][[1]])) })