2017-03-19 7 views
0

RcppEigen을 사용하여 R 패키지의 일부 C++ 구성 요소를 작성하고 있는데이 컨텍스트에서 typedef를 사용하는 데 문제가 있습니다. 다음 코드는 컴파일되지 않습니다 :typedef와 함께 Rcpp를 사용하여 컴파일 오류가 발생했습니다

==> Rcpp::compileAttributes() 

* Updated src/RcppExports.cpp 
* Updated R/RcppExports.R 

==> devtools::document(roclets=c('rd', 'collate', 'namespace')) 

Updating my_package documentation 
Loading my_package 
Re-compiling my_package 
'/usr/lib64/R/bin/R' --no-site-file --no-environ --no-save --no-restore \ 
    --quiet CMD INSTALL '/my_path/my_package' \ 
    --library='/tmp/RtmpgPjAdf/devtools_install_125071da0b53' --no-R --no-data \ 
    --no-help --no-demo --no-inst --no-docs --no-exec --no-multiarch \ 
    --no-test-load 

* installing *source* package ‘my_package’ ... 
g++ -m64 -I/usr/include/R -DNDEBUG -I/usr/local/include -I"/my_path/R/x86_64-redhat-linux-gnu-library/3.3/Rcpp/include" -I" /my_path/R/x86_64-redhat-linux-gnu-library/3.3/RcppEigen/include" -fpic -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -c RcppExports.cpp -o RcppExports.o 
** libs 
RcppExports.cpp:10:1: error: ‘MapAr1’ does not name a type 
MapAr1 myFun(const MapAr1& x); 
^ 
RcppExports.cpp: In function ‘SEXPREC* my_package_myFun(SEXP)’: 
RcppExports.cpp:15:42: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive] 
    Rcpp::traits::input_parameter< const MapAr1& >::type x(xSEXP); 
             ^
RcppExports.cpp:15:50: error: template argument 1 is invalid 
    Rcpp::traits::input_parameter< const MapAr1& >::type x(xSEXP); 
               ^
RcppExports.cpp:15:58: error: expected initializer before ‘x’ 
    Rcpp::traits::input_parameter< const MapAr1& >::type x(xSEXP); 
                 ^
RcppExports.cpp:16:40: error: ‘x’ was not declared in this scope 
    rcpp_result_gen = Rcpp::wrap(myFun(x)); 
             ^
RcppExports.cpp:16:41: error: ‘myFun’ was not declared in this scope 
    rcpp_result_gen = Rcpp::wrap(myFun(x)); 
             ^
make: *** [RcppExports.o] Error 1 
ERROR: compilation failed for package ‘my_package’ 
* removing ‘/tmp/RtmpgPjAdf/devtools_install_125071da0b53/my_package’ 
Error: Command failed (1) 
Execution halted 

Exited with status 1. 

동일한 코드가 패키지 외부에서 컴파일 : 여기

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

using namespace Rcpp; 

typedef Eigen::ArrayXd MapAr1; 

// [[Rcpp::export]] 
MapAr1 myFun(const MapAr1& x){ 

    MapAr1 y = x; 
    y[0] = 0; 

    return y; 

} 

는 오류입니다. 그래서 뭔가가 제대로 RcppExports 파일에 복사되지 않는 것 같아요. 또한 RcppEigen 네임 스페이스를 사용할 때 비슷한 문제가 나타났습니다. using namespace RcppEigen;은 복사되지 않았습니다.

RcppExports를 직접 수정하지 않고 어떻게 해결할 수 있습니까? 감사합니다.

답변

6

당신은 typedef을 고집하면서 인생을 너무 복잡하게 만들고 있습니다. 파일에 및 기능 서명을 포함하면 인터페이스의 일부가되며 따라서 RcppExports.cpp에 있어야합니다. 따라서 '한 단계 더 높게'제공해야합니다.

그러나 그에 대한 조항이 있습니다 : pkgname_types.h 파일을 호출하면이 파일이 포함됩니다.

#include "eigentest_types.h" 

대신 typedef하여 코드에 추가 한 후

#include <RcppEigen.h> 

typedef Eigen::ArrayXd MapAr1; 

과 : 나는 간단한 패키지를 만들어 eigentestsrc/ 디렉토리에있는 파일 eigentest_types.h을 추가했다.

그게 전부입니다. eigentest을 패키지 이름으로 바꿉니다.

+0

고맙습니다. 그것은 실제로 지금 일합니다. 이것을 잘 아는 ... – ixpl