tests/testthat/test-suffix_tree_positions.R

test_that("the suffix tree finds the positions of a subsequence", {
  withr::local_seed(10)
  for (k in 1:10) {
    x <- sample(0:k, 1000, replace = TRUE)
    tree <- build_suffix_tree(x[2:length(x)], nb_vals = k + 1)
    tree$compute_counts(x[1], TRUE)
    valid_positions <- TRUE
    for (i in 1:200) {
      idx <- sample(2:length(x), 1)
      ss_len <- sample(1:min(5, length(x) - idx + 1), 1)
      subseq <- x[idx:(idx + ss_len - 1)]
      ss_where <- find_occurrences(x, subseq)
      positions <- 2L + sort(tree$positions(subseq))
      valid_positions <- identical(positions, ss_where)
      if (!valid_positions) {
        break
      }
    }
    i <- 1L
    repeat {
      pre_match <- find_occurrences(x, x[1:i])
      if (length(pre_match) == 1L) {
        break
      } else {
        positions <- 2L + sort(tree$positions(x[1:i]))
        valid_positions <- identical(positions, pre_match)
        if (!valid_positions) {
          break
        }
        i <- i + 1L
      }
    }
    expect_true(valid_positions)
  }
})

Try the mixvlmc package in your browser

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

mixvlmc documentation built on June 8, 2025, 12:35 p.m.