From bb729f8d0ca65283a500c6beedfdb717f135331c Mon Sep 17 00:00:00 2001 From: Lukas Burk Date: Thu, 21 Nov 2024 12:58:12 +0100 Subject: [PATCH] Avoid CVN link in docs --- R/RcppExports.R | 3 +-- man/genlassoRcpp.Rd | 5 +---- src/genlasso.cpp | 3 +-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/R/RcppExports.R b/R/RcppExports.R index cafaafe..9eb2a63 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -18,7 +18,7 @@ #' @param eta1 Equals \eqn{\lambda_1 / rho} #' @param eta2 Equals \eqn{\lambda_2 / rho} #' @param a Value added to the diagonal of \eqn{-D'D} so that -#' the matrix is positive definite, see [CVN::matrix_A_inner_ADMM()] +#' the matrix is positive definite, see `matrix_A_inner_ADMM` in package `CVN` #' @param rho The ADMM's parameter #' @param max_iter Maximum number of iterations #' @param eps Stopping criterion. If differences @@ -34,7 +34,6 @@ #' Generalized Lasso Problem. Journal of Computational and Graphical Statistics, #' 26(1), 195–204. https://doi.org/10.1080/10618600.2015.1114491 #' -#' @seealso genlasso_wrapper genlassoRcpp <- function(Y, W, m, eta1, eta2, a, rho, max_iter, eps, truncate) { .Call(`_wflsa_genlassoRcpp`, Y, W, m, eta1, eta2, a, rho, max_iter, eps, truncate) } diff --git a/man/genlassoRcpp.Rd b/man/genlassoRcpp.Rd index 963250c..df6f736 100644 --- a/man/genlassoRcpp.Rd +++ b/man/genlassoRcpp.Rd @@ -18,7 +18,7 @@ genlassoRcpp(Y, W, m, eta1, eta2, a, rho, max_iter, eps, truncate) \item{eta2}{Equals \eqn{\lambda_2 / rho}} \item{a}{Value added to the diagonal of \eqn{-D'D} so that -the matrix is positive definite, see \code{\link[CVN:matrix_A_inner_ADMM]{CVN::matrix_A_inner_ADMM()}}} +the matrix is positive definite, see \code{matrix_A_inner_ADMM} in package \code{CVN}} \item{rho}{The ADMM's parameter} @@ -49,6 +49,3 @@ Zhu, Y. (2017). An Augmented ADMM Algorithm With Application to the Generalized Lasso Problem. Journal of Computational and Graphical Statistics, 26(1), 195–204. https://doi.org/10.1080/10618600.2015.1114491 } -\seealso{ -genlasso_wrapper -} diff --git a/src/genlasso.cpp b/src/genlasso.cpp index 6aa69e3..e35b172 100644 --- a/src/genlasso.cpp +++ b/src/genlasso.cpp @@ -18,7 +18,7 @@ using namespace Rcpp; //' @param eta1 Equals \eqn{\lambda_1 / rho} //' @param eta2 Equals \eqn{\lambda_2 / rho} //' @param a Value added to the diagonal of \eqn{-D'D} so that -//' the matrix is positive definite, see [CVN::matrix_A_inner_ADMM()] +//' the matrix is positive definite, see `matrix_A_inner_ADMM` in package `CVN` //' @param rho The ADMM's parameter //' @param max_iter Maximum number of iterations //' @param eps Stopping criterion. If differences @@ -34,7 +34,6 @@ using namespace Rcpp; //' Generalized Lasso Problem. Journal of Computational and Graphical Statistics, //' 26(1), 195–204. https://doi.org/10.1080/10618600.2015.1114491 //' -//' @seealso genlasso_wrapper // [[Rcpp::export]] NumericVector genlassoRcpp(const NumericVector Y, const NumericMatrix W,