tests/testthat/test_rnc.R

library(igraph)

test_that("one vertex best solution is returned", {
    solver <- rnc_solver(max_iterations = 100)
    g <- igraph::make_graph(c("A", "B"), directed = FALSE)
    V(g)$weight <- c(5, 5)
    E(g)$weight <- -7
    solution <- solve_mwcsp(solver, g)
    expect_equal(solution$weight, 5)
})

test_that("sgmwcs rnc solver works on specific test", {
    solver <- rnc_solver(max_iterations = 100)
    g <- igraph::make_ring(5)
    V(g)$weight <- 1:-3
    E(g)$weight <- 1
    solution <- solve_mwcsp(solver, g)
    expect_equal(solution$weight, 2)
    expect_equal(solution$solved_to_optimality, TRUE)
    expect_true(igraph::is_connected(solution$graph))
})

test_that("sgmwcs rnc solver does not crush on GAM instances", {
    solver <- rnc_solver(max_iterations = 100)
    solution <- solve_mwcsp(solver, gam_example)
    expect_gte(length(V(solution$graph)), 0)
    expect_true(igraph::is_connected(solution$graph))
})

test_that("rnc solver handles non-integer signal weights in single-vertex solution (#10)", {
    solver <- rnc_solver(max_iterations = 50)
    g <- igraph::make_graph(c(1,2, 3,4, 3,5, 1,6, 4,6) + 0L, n = 6, directed = FALSE)
    V(g)$signal <- c("s2","s2","s2","s2","s3","s2")
    E(g)$signal <- c("s1","s2","s3","s2","s2")
    g$signals <- c(s1 = -3.026, s2 = 2.193558, s3 = -4.921)
    solution <- solve_mwcsp(solver, g)
    expect_equal(solution$weight, 2.193558)
})

test_that("sgmwcs rnc solver gives good solution for a GAM instance", {
    rnc <- rnc_solver(max_iterations = 100)
    solution <- solve_mwcsp(rnc, gmwcs_example)
    expect_gte(get_weight(solution$graph), 200)
    expect_true(igraph::is_connected(solution$graph))
})

Try the mwcsr package in your browser

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

mwcsr documentation built on May 12, 2026, 1:07 a.m.