Hi Dirk,
Re-writing the wrapper using the new API resolved the issues; it installs
perfectly on Windows now. Thank you for your help!
Best,
Tim
On Jun 10, 2011, at 10:20 PM, Dirk Eddelbuettel wrote:
>
> Hi Tim,
>
> On 10 June 2011 at 21:31, Tim Jurka wrote:
> | Hello Rcpp-Devel,
> |
> | Thi
Hi Tim,
On 10 June 2011 at 21:31, Tim Jurka wrote:
| Hello Rcpp-Devel,
|
| This is my first question posted to this list, so please remind me if I'm
missing crucial details in my inquiry!
|
| I have successfully interfaced Yoshimasa Tsuruoka's excellent C++ maximum
| entropy library ( http://w
Hello Rcpp-Devel,
This is my first question posted to this list, so please remind me if I'm
missing crucial details in my inquiry!
I have successfully interfaced Yoshimasa Tsuruoka's excellent C++ maximum
entropy library ( http://www-tsujii.is.s.u-tokyo.ac.jp/~tsuruoka/maxent/ )
using RcppClas
On 10 June 2011 at 15:06, [email protected] wrote:
| Hello I want to experiment a little with Rcpp, however, as a newby I don't
get it to work, e.g.:
|
| #include
| #include
| int main()
| {
| using namespace Rcpp;
| RNGScope scope;
| std::cout << runif( 1, 0, 1) << std::endl;
|
Hello I want to experiment a little with Rcpp, however, as a newby I don't get
it to work, e.g.:
#include
#include
int main()
{
using namespace Rcpp;
RNGScope scope;
std::cout << runif( 1, 0, 1) << std::endl;
return 0;
}
How can I get it to work? Thanks, Sören