Start dynamics.
This commit is contained in:
parent
413f1798c4
commit
3691c42e67
3 changed files with 21 additions and 0 deletions
2
dynamics.rkt
Normal file
2
dynamics.rkt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#lang typed/racket
|
||||||
|
|
|
@ -26,5 +26,6 @@ dds currently includes the following modules:
|
||||||
|
|
||||||
@include-section["utils.scrbl"]
|
@include-section["utils.scrbl"]
|
||||||
@include-section["functions.scrbl"]
|
@include-section["functions.scrbl"]
|
||||||
|
@include-section["dynamics.scrbl"]
|
||||||
@include-section["networks.scrbl"]
|
@include-section["networks.scrbl"]
|
||||||
@include-section["rs.scrbl"]
|
@include-section["rs.scrbl"]
|
||||||
|
|
18
scribblings/dynamics.scrbl
Normal file
18
scribblings/dynamics.scrbl
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#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.
|
||||||
|
|
Loading…
Reference in a new issue