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

RDE_lib2/DefaultTrajectory.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 __DEFAULTTRAJECTORY__
00016 #define __DEFAULTTRAJECTORY__
00017 
00018 
00019 #include "BaseTrajectory.h"
00020 
00021 
00023 template <typename my_alg_type>
00024 class DefaultTrajectory :
00025         public BaseTrajectory<my_alg_type>
00026 {
00027 public:
00028         DefaultTrajectory(void)
00029         {
00030         };
00031 
00032         ~DefaultTrajectory(void)
00033         {
00034         };
00035 
00037         AbstractSolutionPoint Value(const SCA t, const unsigned int Resolution=11) const
00038         {
00039                 return AbstractSolutionPoint();
00040         };
00041 };
00042 
00043 #endif // __DEFAULTTRAJECTORY__

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