R/Lab6RT-package.R

#' Lab6RT: Different methods for solving the knapsack problem
#'
#' The Lab6RT package contains three methods; brute force, dynamic programming, and greedy heuristic, to solve the knapsack problem.
#'
#' brute_force_knapsack(), dynamic_knapsack(), greedy_knapsack()
#' 
#' 
#'
#' @docType package
#' @name Lab6RT
NULL
## usethis namespace: start
#' @useDynLib Lab6RT, .registration = TRUE
## usethis namespace: end

## usethis namespace: start
#' @importFrom Rcpp sourceCpp
## usethis namespace: end
NULL
Safvenberger/Lab6RT documentation built on Oct. 16, 2020, 1:56 a.m.