dds: A Home-made Toolkit for Discrete Dynamical Systems in Racket
Go to file
Sergiu Ivanov 180810a2aa utils: 0-1 -> 01
Shorter and easier to type.
2020-06-06 08:23:55 +02:00
example example: Illustrate tabulate*/boolean. 2020-05-31 23:42:16 +02:00
LICENSE Add the GNU GPL licence file. 2020-03-03 14:47:15 +01:00
README.org Use a headline instead of #+TITLE: 2020-03-03 17:50:26 +01:00
functions.rkt functions: Add tbf. 2020-06-03 22:51:06 +02:00
generic.rkt generic: Use collect-by-key/sets to collect the labels for state graphs. 2020-03-02 18:18:23 +01:00
info.rkt Add info.rkt. 2020-05-16 19:00:04 +02:00
networks.rkt utils: 0-1 -> 01 2020-06-06 08:23:55 +02:00
rs.rkt rs/test: Use test-case and define instead of let. 2020-05-27 23:48:22 +02:00
utils.rkt utils: 0-1 -> 01 2020-06-06 08:23:55 +02:00

README.org

dds: A Home-made Toolkit for Discrete Dynamical Systems in Racket

This is a toolkit for playing with various discrete dynamical systems in Racket. A discrete dynamical system is a system which evolves from a discrete state to some other discrete states (many or one). The systems are discrete in the sense that we can identify successive states with no other states in between. Equivalently, the phase state of the system is discrete (and is often called the state graph). These constraints imply the possibility of associating discrete, possibly branching timelines to any evolution of the system.

DISCLAIMER: I develop this toolkit as a support for my research on discrete dynamical systems. The primary objective for this framework is to fit my approach to these systems. Essentially, this framework should fit to the "shape of my mind", which is not necessarily the same as yours.

Currently, the toolkit includes the following files:

  • generic.rkt: The generic interface for a discrete dynamical system, with functions for constructing state graphs.
  • utils.rkt: Misc utility functions.
  • networks.rkt: Implements network-based models, which generalise Boolean networks, threshold Boolean automata networks, multivalued networks, etc.
  • rs.rkt: Implements reaction systems, a variant of set rewriting.

The toolkit is designed with Emacs Org-mode interoperability in mind. The file example/example.org explains the features available for interaction with Org-mode.