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

RDE_lib2/MakeNonLinearSolutionPath.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 MakeNonlinearSolutionPath_h__
00016 #define MakeNonlinearSolutionPath_h__
00017 
00018 
00019 #include "NonlinearSolutionPath.h"
00020 #include "Path.h"
00021 #include <memory>
00022 #include <functional>
00023 
00024 template <typename my_alg_type_IN, typename my_alg_type_OUT>
00025 Path<my_alg_type_OUT> MakeNonLinearSolutionPath(Path<my_alg_type_IN> & theControlIn, std::vector<POLYLIE<my_alg_type_OUT>> & theVectorFieldsIn, AbstractSolutionPoint<my_alg_type_OUT> & theInitialValue, typename my_alg_type_OUT::SCA theStartTime = my_alg_type_OUT::SCA(0))
00026 {
00027         std::tr1::shared_ptr< const NonLinearSolutionPath<my_alg_type_IN,my_alg_type_OUT> > p(new NonLinearSolutionPath<my_alg_type_IN,my_alg_type_OUT>(theControlIn, theVectorFieldsIn, theInitialValue, theStartTime));
00028         return Path<my_alg_type_OUT>(p);
00029 };
00030 
00031 #endif // MakeNonlinearSolutionPath_h__

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