ode-initval.ss
;;; PLT Scheme Science Collection
;;; ode-initval.ss
;;; Copyright (c) 2004-2007 M. Douglas Williams
;;;
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Lesser General Public
;;; License as published by the Free Software Foundation; either
;;; version 2.1 of the License, or (at your option) any later version.
;;;
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;;; Lesser General Public License for more details.
;;;
;;; You should have received a copy of the GNU Lesser General Public
;;; License along with this library; if not, write to the Free
;;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
;;; 02111-1307 USA.
;;;
;;; -------------------------------------------------------------------
;;;
;;; This module provides all of the random distributions for the PLT
;;; Science Collection as a single module.
;;;
;;; Version  Date      Description
;;; 2.0.0    11/19/07  Added header.  (Doug Williams)

(module ode-initval mzscheme
  
  (provide
   (all-defined))
  
  (require (lib "include.ss"))
  
  (include "ode-initval/system.ss")
  (include "ode-initval/step.ss")
  (include "ode-initval/rk2.ss")
  (include "ode-initval/rk4.ss")
  (include "ode-initval/rkf45.ss")
  (include "ode-initval/control.ss")
  (include "ode-initval/standard-control.ss")
  (include "ode-initval/evolve.ss")
  
)