• Main Page
  • Namespaces
  • Classes
  • Files
  • File List

RDE_lib2/DefaultPath.h

00001 /* *************************************************************
00002 
00003 Copyright 2010 Terry Lyons, Stephen Buckley, Djalil Chafai, 
00004 Greg Gyurkó and Arend Janssen. 
00005 
00006 Distributed under the terms of the GNU General Public License, 
00007 Version 3. (See accompanying file License.txt)
00008 
00009 ************************************************************* */
00010 
00011 
00012 
00013 #pragma once
00014 
00015 #ifndef __DEFAULTPATH__
00016 #define __DEFAULTPATH__
00017 
00018 
00019 #include "BasePath.h"
00020 
00021 
00023 template <typename my_alg_type>
00024 class DefaultPath :
00025         public BasePath<my_alg_type>
00026 {
00027 
00028 public:
00029         DefaultPath(void)
00030         {
00031         };
00032 
00033         ~DefaultPath(void)
00034         {
00035         };
00036 
00038         LIE DescribePath(const dyadic_interval & increment, const int accuracy) const
00039         {
00040                 return LIE();
00041         };
00042 
00044         LIE DescribePath(double inf, double sup, int tolerance) const
00045         {
00046                 return LIE();
00047         };
00048 };
00049 
00050 #endif // __DEFAULTPATH__

Generated on Fri Jan 14 2011 17:50:33 for Rough Differential Equation Solver by  doxygen 1.7.1