Start dynamics.

This commit is contained in:
Sergiu Ivanov 2022-07-06 00:00:17 +02:00
parent 413f1798c4
commit 3691c42e67
3 changed files with 21 additions and 0 deletions

2
dynamics.rkt Normal file
View File

@ -0,0 +1,2 @@
#lang typed/racket

View File

@ -26,5 +26,6 @@ dds currently includes the following modules:
@include-section["utils.scrbl"]
@include-section["functions.scrbl"]
@include-section["dynamics.scrbl"]
@include-section["networks.scrbl"]
@include-section["rs.scrbl"]

View 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.