Skip to content
Prev 8849 / 10988 Next

[Rcpp-devel] When calling same Rcpp function several times different results are returned

It's because several instances of your object will be created (via the
splitting constructor) and then joined together using the join method.
If all instances share an output variable then they will overwrite
each others' output, giving them their own allows the split/join logic
to work correctly.
On Wed, Jul 15, 2015 at 8:37 AM, Vaidas Zemlys <mpiktas at gmail.com> wrote: