编辑GBM源代码,C ++部分代码

时间:2016-07-11 17:40:41

标签: c++ r gbm

我是R.的新手。我一直在玩GBM源代码进行学习。

我正在尝试在源代码中更改不同的现有条件和公式。

我可以使用fix()和trace()编辑R代码,但GBM的c ++代码我无法编辑并将这些编辑的代码放在现有位置并运行它们以查看更改的影响现有条件/公式。

是否可以更改GBM的c ++代码并使用编辑后的代码运行GBM?

提前致谢

1 个答案:

答案 0 :(得分:1)

C++ codes will work only after compilation. Most packages have precompiled C/C++ codes for faster execution. Please check if there is any compilation step or other hints.

Without compiling C++ code you are observing old code behavior only and hence no changes in output, even after your changes.