Error with R.h file

Hi, really not sure where to put this. I've been working on some C code and using a package called cOde. I've been getting warnings where I shouldn't have been and it looks like there's extra letters added in the header file R.h (ERR). I accessed my own file on my computer and removed the offending letters, so my own compiled code worked. package cOde isn't working well because of this (I'm getting NaN's at the tail end of my code, when deSolve converges for the same system of ODE's, they should be nearly the same if not exactly the same) as it seems to access R.h elsewhere. Here's an example of what's going on.

library(cOde)
state<-c(x=1, y=1, z=1)
times<-seq(0,100,0.001)
parms=c(a=-8/3, b=-10, c=28)
f<-c(x="a*x+y*z", y="b*(y-z)", z="x*y+c*y-z")
# it's this next function where the warning comes up
func<-funC(f)

out2<-odeC(state, times, func, parms)
tail(out2)

I'm not really sure where to inform of this error, or if it is on everyone's computer. So any advice would be great.
Thanks
Michael

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.