Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stochastic Simulation Algorithm in Haskell

A simple Haskell implementation of the famous Gillespie algorithm. Models are specified using a format similar to the SHAVE format:

parameters
  ka = 0.2
  kb = 0.4

species
  A : int
  B : int

reactions
  A -> 2 B @ ka * A;
  2 B -> A @ kb * B;

init
  A = 10
  B = 0

About

Stochastic Simulation Algorithm (SSA) [Gillespie]

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages