simulation-with-graphics.rkt
#lang racket/base
;;; Simulation Collection
;;; simulation-with-graphics.rkt
;;; Copyright (c) 2005-2011 M. Douglas Williams
;;;
;;; This file is part of the Simulation Collection.
;;;
;;; The Simulation Collection 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 3 of the License,
;;; or (at your option) any later version.
;;;
;;; The Simulation Collection 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 the Simulation Collection.  If not, see
;;; <http://www.gnu.org/licenses/>.
;;;
;;; -----------------------------------------------------------------------------
;;;
;;; Version  Date      Description
;;; 3.0.0    06/24/08  Updated for V4.0. (MDW)
;;; 3.0.1    11/27/08  Moves history-graphics.ss to private. (MDW)
;;; 4.0.0    08/16/10  Converted to Racket. (MDW)

(require "simulation.rkt"
         "private/random-distribution.rkt"
         "private/variable-graphics.rkt"
         "private/history-graphics.rkt")

(provide
 (all-from-out "simulation.rkt")
 (all-from-out "private/random-distribution.rkt")
 (all-from-out "private/variable-graphics.rkt")
 (all-from-out "private/history-graphics.rkt"))