3dpcp/.svn/pristine/26/26bfd4d3b74c669dc82a5034105f4dc6ddda89fa.svn-base
2012-09-16 14:33:11 +02:00

33 lines
685 B
Text

// This is an example of the use of solution to find the cube root of
// the integers -10 to 10
// you will need to compile and link solution.cpp and except.cpp
#define WANT_STREAM
#define WANT_MATH
#include "include.h"
#include "solution.h"
#ifdef use_namespace
using namespace RBD_LIBRARIES;
#endif
// the cube class
class Cube : public R1_R1
{ Real operator()() { return x*x*x; } };
int main()
{
// construct the Cube object
Cube cube;
// and then the solve object
OneDimSolve cube_root(cube);
// Now do the solves
for (int i=-10; i<=10; i++)
cout << i << " " << cube_root.Solve(i,0,1.5) << endl;
return 0;
}