R/utils.R
score_solution.Rd
compute the price of a partition solution (and check is valid).
score_solution(x, solution)
NumericMatix, for j>=i x(i,j) is the cost of partition element [i,...,j] (inclusive).
vector of indices
price
x <- matrix(c(1,1,5,1,1,0,5,0,1), nrow=3) s <- c(1, 2, 4) score_solution(x, s) #> [1] 1