R/TraversalType.R

# SPDX-FileCopyrightText: 2024 Petros Koutsolampros
#
# SPDX-License-Identifier: GPL-3.0-only

# The values here should be kept the same order as the ones in TraversalType.h

#' Traversal types
#'
#' These are meant to be used to indicate what kind of analysis
#' is meant to be carried out.
#'
#' @returns A list of numbers representing each particular analysis type
#' @examples
#' TraversalType$Angular
#' TraversalType$Topological
#' TraversalType$Metric
#' @export
TraversalType <- list(
    None = 0L,
    Angular = 1L,
    Topological = 2L,
    Metric = 3L
)

Try the alcyon package in your browser

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

alcyon documentation built on April 3, 2025, 6:18 p.m.