-
Notifications
You must be signed in to change notification settings - Fork 104
Fixing function %||% not being found #134
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
base: master
Are you sure you want to change the base?
Changes from 6 commits
9d3328b
1d3ad62
1c8d668
4488214
5ca2f1f
1d1a2a1
7cdd175
6d8737c
ed84274
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| setwd("C:/Users/Konstantin/Programmierung/harmony") | ||
| roxygen2::roxygenise() | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,11 @@ | |
|
|
||
| using namespace Rcpp; | ||
|
|
||
| #ifdef RCPP_USE_GLOBAL_ROSTREAM | ||
| Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get(); | ||
| Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get(); | ||
| #endif | ||
|
|
||
|
Comment on lines
+10
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where does this change come from? Has it been added by roxygen?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, it has. I am unsure whether it is necessary though |
||
| // compute_Y | ||
| MATTYPE compute_Y(const MATTYPE& Z_cos, const MATTYPE& R); | ||
| RcppExport SEXP _harmony_compute_Y(SEXP Z_cosSEXP, SEXP RSEXP) { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.