Skip to content

Commit

Permalink
Fix lingering linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sciome-bot committed Jan 13, 2024
1 parent e55e38c commit ee193de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 1 addition & 3 deletions R/PrestoGP_Multivariate_Vecchia.R
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ setMethod("prestogp_predict", "MultivariateVecchiaModel",
ndx.out <- c(ndx.out, rep(i, nrow(locs[[i]])))
}
for (i in seq_along(locs)) {
Vec.sds[ndx.out == i] <- sqrt(Vec.sds[ndx.out == i] +
model@covparams[model@param_sequence[4,
i]])
Vec.sds[ndx.out == i] <- sqrt(Vec.sds[ndx.out == i] + model@covparams[model@param_sequence[4, i]])
}
return.list <- list(means = Vec.mean, sds = Vec.sds)
}
Expand Down
7 changes: 3 additions & 4 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

na_omit_c <- function(x) {
.Call('_PrestoGP_na_omit_c', PACKAGE = 'PrestoGP', x)
.Call('_PrestoGP_na_omit_c', PACKAGE = 'PrestoGP', x)
}

createU_helper_mat <- function(olocs, ondx, curqys, curqzs, vijs, aijs, full_const, nugget, sig2, U_beginning) {
.Call('_PrestoGP_createU_helper_mat', PACKAGE = 'PrestoGP', olocs, ondx, curqys, curqzs, vijs, aijs, full_const, nugget, sig2, U_beginning)
}

.Call('_PrestoGP_createU_helper_mat', PACKAGE = 'PrestoGP', olocs, ondx, curqys, curqzs, vijs, aijs, full_const, nugget, sig2, U_beginning)
}

0 comments on commit ee193de

Please sign in to comment.