我目前正在处理的程序就像一个脚本,除了我正在使用(或尝试)将3个变量相互关联的1个类。我有一个名为“SupNetModel”的类,它包含3个不同的值,没有类方法。此类被声明为头文件,因为实际上没有任何方法可以实现它。
#ifndef SUPNETMODEL_H
#define SUPNETMODEL_H
class SupNetModel {
public:
//variables
SupNetModel();
};
#endif
我的主要功能的精简版本如下:
#include "train.h"
#include "SupNetModel.h"
int main() {
//Some stuff
SupNetModel* model = Train(data,labels);
return 1;
}
Train.cpp如下所示
#include "train.h"
SupNetModel* Train(arma::mat data, arma::mat labels) {
SupNetModel * model = new SupNetModel();
//Do a bunch of stuff
return model;
}
编辑:Train.h看起来像:
#ifndef TRAIN_H
#define TRAIN_H
#include <RcppArmadillo.h>
#include "SupNetModel.h"
SupNetModel* Train(arma::mat data, arma::mat labels);
#endif
基本上我正在尝试做的是在堆上创建我的类的实例,然后返回指向该实例的指针,以便我可以在main中访问它。但是,目前我收到以下错误“'SupNetModel'没有命名类型”
如果相关,则在R环境中使用RCpp构建。错误引用的错误行是在RcppExports.cpp中自动生成的。仔细阅读该文件(其中包含有关类的信息),看起来SupNetModel似乎没有出现在RcppExports中,除了在Train的函数声明行中。
编辑:以下是RCppExports文件的相关部分:
// train
SupNetModel* train(arma::mat data, arma::mat labels);
RcppExport SEXP SupervisedNetworks_train(SEXP dataSEXP, SEXP labelsSEXP) {
BEGIN_RCPP
SEXP __sexp_result;
{
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< arma::mat >::type data(dataSEXP );
Rcpp::traits::input_parameter< arma::mat >::type labels(labelsSEXP );
SupNetModel* __result = trainNetworkOfNetworks(data, labels);
PROTECT(__sexp_result = Rcpp::wrap(__result));
}
UNPROTECT(1);
return __sexp_result;
END_RCPP
}
以下是我尝试构建项目时出现的最后几行:
g++ -I/usr/share/R/include -DNDEBUG -I"/home/anne/LabWork/qpOASES-3.0.0/include" -std=c++11 -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/home/anne/R/x86_64-pc-linux-gnu-library/3.1/RcppArmadillo/include" -fpic -O3 -pipe -g -c LS_LocalLaplacian.cpp -o LS_LocalLaplacian.o
g++ -I/usr/share/R/include -DNDEBUG -I"/home/anne/LabWork/qpOASES-3.0.0/include" -std=c++11 -I"/usr/local/lib/R/site-library/Rcpp/include" -I"/home/anne/R/x86_64-pc-linux-gnu-library/3.1/RcppArmadillo/include" -fpic -O3 -pipe -g -c RcppExports.cpp -o RcppExports.o
RcppExports.cpp:241:1: error: ‘SupNetModel’ does not name a type
SupNetModel* train(arma::mat data, arma::mat labels);
^
RcppExports.cpp: In function ‘SEXPREC* SupervisedNetworks_train(SEXP, SEXP)’:
RcppExports.cpp:249:9: error: ‘SupNetModel’ was not declared in this scope
SupNetModel* __result = train(data, labels);
^
RcppExports.cpp:249:22: error: ‘__result’ was not declared in this scope
SupNetModel* __result = train(data, labels);
^
RcppExports.cpp:249:68: error: ‘train’ was not declared in this scope
SupNetModel* __result = train(data, labels);
^
make: *** [RcppExports.o] Error 1
ERROR: compilation failed for package ‘SupervisedNetworks’
* removing ‘/home/anne/R/x86_64-pc-linux-gnu-library/3.1/SupervisedNetworks’
* restoring previous ‘/home/anne/R/x86_64-pc-linux-gnu-library/3.1/SupervisedNetworks’
Exited with status 1.
导致此错误的原因是什么,您认为如何解决?
答案 0 :(得分:1)
看起来解决方案非常简单。
在测试train()函数时遗留下来,我将// [[Rcpp :: export]]标签留在列车功能上方,允许通过R访问train()。删除此处理错误!