Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Higher resolution logo #39

Merged
merged 2 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/index.html

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

Binary file modified docs/reference/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon.ico
Binary file not shown.
22 changes: 11 additions & 11 deletions src/cpp11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ extern "C" SEXP _myTAI_fun() {

extern "C" {
/* .Call calls */
extern SEXP _myTAI_cpp_TAI(void *, void *);
extern SEXP _myTAI_cpp_bootMatrix(void *, void *, void *);
extern SEXP _myTAI_cpp_geom_mean(void *);
extern SEXP _myTAI_cpp_harmonic_mean(void *);
extern SEXP _myTAI_cpp_omitMatrix(void *, void *);
extern SEXP _myTAI_cpp_pMatrix(void *, void *);
extern SEXP _myTAI_cpp_std_error(void *);
extern SEXP _myTAI_rcpp_boottei_parallel(void *, void *, void *, void *);
extern SEXP _myTAI_rcpp_pMatrix_parallel(void *, void *, void *);
extern SEXP _myTAI_rcpp_pStrata_parallel(void *, void *, void *, void *);
extern SEXP _myTAI_rcpp_tei_parallel(void *, void *, void *);
extern SEXP _myTAI_cpp_TAI(SEXP, SEXP);
extern SEXP _myTAI_cpp_bootMatrix(SEXP, SEXP, SEXP);
extern SEXP _myTAI_cpp_geom_mean(SEXP);
extern SEXP _myTAI_cpp_harmonic_mean(SEXP);
extern SEXP _myTAI_cpp_omitMatrix(SEXP, SEXP);
extern SEXP _myTAI_cpp_pMatrix(SEXP, SEXP);
extern SEXP _myTAI_cpp_std_error(SEXP);
extern SEXP _myTAI_rcpp_boottei_parallel(SEXP, SEXP, SEXP, SEXP);
extern SEXP _myTAI_rcpp_pMatrix_parallel(SEXP, SEXP, SEXP);
extern SEXP _myTAI_rcpp_pStrata_parallel(SEXP, SEXP, SEXP, SEXP);
extern SEXP _myTAI_rcpp_tei_parallel(SEXP, SEXP, SEXP);

static const R_CallMethodDef CallEntries[] = {
{"_myTAI_cpp_TAI", (DL_FUNC) &_myTAI_cpp_TAI, 2},
Expand Down