Is it possible to solve a time delay differential equations using C++ Boost - odeint library ? For an instance below equation:
x'(t) = r*x(t)*(1 - x(t-tau)),
where tau is a constant value for time delay.
Yes, you can. But odeint is not explicitly designed for DDEs. There are two possibilities to solve DDEs with odeint:
If I have time I will write a more concrete answer, maybe with some code snippets.