Skip to content
Open
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
2 changes: 2 additions & 0 deletions inst/include/ade4.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#include <RcppArmadillo.h>
int matcentrageCpp (arma::mat& A, const arma::vec& poili, const int typ);
1 change: 1 addition & 0 deletions src/Makevars
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
PKG_CPPFLAGS = -I../inst/include
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)

2 changes: 2 additions & 0 deletions src/testertracenuCpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ using namespace arma;

// [[Rcpp::depends(RcppArmadillo)]]

#include <ade4.h>

// [[Rcpp::export]]
/*****************/
arma::vec testertracenuCpp(int npermut,
Expand Down
1 change: 1 addition & 0 deletions src/testertracenubisCpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ using namespace arma;
#include <Rcpp.h>

// [[Rcpp::depends(RcppArmadillo)]]
#include <ade4.h>

// [[Rcpp::export]]
/*****************/
Expand Down