18 lines
472 B
Racket
18 lines
472 B
Racket
#lang scribble/manual
|
|
|
|
@(require scribble/example racket/sandbox
|
|
(for-label typed/racket/base))
|
|
|
|
@(define-syntax-rule (deftypeform . args)
|
|
(defform #:kind "type" . args))
|
|
|
|
@(define-syntax-rule (deftype . args)
|
|
(defidform #:kind "polymorphic type" . args))
|
|
|
|
@title[#:tag "dynamics"]{dds/dynamics: Dynamics of DDS}
|
|
|
|
@defmodule[dds/dynamics]
|
|
|
|
This module provides a number of general definitions for building and analyzing
|
|
the dynamics of discrete dynamical systems.
|
|
|