R/lab6-package.R

#' lab6
#' @description The package provides three different algorithms for solutions to the knapsack problem, 
#' each with different computational complexity. One provides the optimal solution, 
#' but is very computationally expensive, 
#' one is computationally cheaper but provides an optimal solution only for discrete weights 
#' and the third one is a heuristic which is computationally even cheaper, 
#' but the solution is not expected to be as good as for the other two algorithms.
#' @docType package
#' @title A package providing algorithms for solving the knapsack problem
#' @name lab6-package

NULL
Marbr987/lab6 documentation built on Dec. 17, 2021, 2:20 a.m.