3 Module behavior/petri-net
(require behavior/petri-net) | package: behavior |
This module provides the ability to model, and execute, Petri nets. From Wikipedia):
A Petri net consists of places, transitions, and arcs. Arcs run from a place to a transition or vice versa, never between places or between transitions. The places from which an arc runs to a transition are called the input places of the transition; the places to which arcs run from a transition are called the output places of the transition.
According to the same definition "...the execution of Petri nets is nondeterministic: when multiple transitions are enabled at the same time, they will fire in any order". To achieve this, at each step in the execution a single random enabled transition is chosen to fire.
> (define net (make-petri-net 'first-net (set 'a 'b) (set 't) (set (make-arc 'a 't 1) (make-arc 't 'b 1))))
> (define reporter (λ (ev) (displayln (format "~a ~a ~a" (net-history-event-place-or-transition ev) (net-history-event-kind ev) (net-history-event-tokens ev))))) > (define exec (make-net-execution net (hash 'a 1) reporter)) > (execute-net exec)
a emits (g12089)
t firing ()
b consumes (g12089)
#<net-execution>
The model follows the usual mathematical model for an elementary net, as described below, with the relevant validations.
A net is a triple N=(P,T,F) where P and T are disjoint finite sets of places and transitions, respectively.
F\subset(P \times T) \cup (T \times P) is a set of arcs (or flow relations).
An arc may not connect a place to a place, or a transition to a transition.
An elementary net is a net of the form EN=(N,C) where N is a net and C is a configuration.
A configuration, C, is such that C \subseteq P.
A Petri net PN=(N,M,W) extends the elementary net with M markings and W weights, or multiplicities.
Each arc also has a multiplicity value that indicates the number of tokens required from a source place, or the number of tokens provided to a target place.
The structure petri-net and the function make-petri-net correspond to the pair NM=(N,W) or network model.
The structure net-execution corresponds to the pair (NM,M_i) where M_i is the current set of markings across the network described by NM.
The function make-net-execution creates the pair (NM,M_0) where an initial; marking M_0 is associated with the network model.
Initial, but incomplete, support is also provided for Colored Petri nets.
3.1 Types and Predicates
struct
(struct petri-net (name colored? place-set transition-set arc-set))
name : symbol? colored? : boolean? place-set : (set/c symbol?) transition-set : (set/c symbol?) arc-set : (listof arc?)
struct
source : symbol? target : symbol? multiplicity : exact-nonnegative-integer?
struct
(struct net-execution (model place-tokens))
model : petri-net? place-tokens : (hash/c symbol (listof symbol?))
struct
(struct net-history-event history-event ( current-execution kind place-or-transition tokens)) current-execution : net-execution? kind : symbol? place-or-transition : symbol? tokens : list?
3.2 Construction
procedure
(make-petri-net name place-set transition-set arc-set [ #:inhibitors? inhibitors?]) → petri-net? name : symbol? place-set : (set/c symbol?) transition-set : (set/c symbol?) arc-set : (set/c arc?) inhibitors? : boolean? = #f
procedure
source : symbol? target : symbol? multiplicity : exact-nonnegative-integer?
3.3 Execution
procedure
(make-net-execution model configuration [ reporter]) → net-execution? model : petri-net?
configuration :
(hash/c symbol? (or/c exact-nonnegative-integer? (listof symbol?))) reporter : (-> net-history-event? void?) = #f
procedure
(execute-net exec) → net-execution?
exec : net-execution?
procedure
(execute-net-step exec) → net-execution?
exec : net-execution?
procedure
(net-execution-complete? exec) → boolean?
exec : net-execution?
procedure
count : exact-positive-integer?