Skip to content

Commit

Permalink
Avoid CVN link in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jemus42 committed Nov 21, 2024
1 parent e662eb0 commit bb729f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
}
Expand Down
5 changes: 1 addition & 4 deletions man/genlassoRcpp.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/genlasso.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
Expand Down

0 comments on commit bb729f8

Please sign in to comment.