文章目录
Petri Net
In contrast to state machines, state transitions in Petri nets are asynchronous. The ordering of transitions is partly uncoordinated; it is specified by a partial order.
Therefore, Petri nets can be used to model concurrent distributed systems.
Petri Nets: Graphical and Mathematical modeling tools
- graphical tool
- mathematical tool
The graphical presentation of a Petri net is a bipartite graph.
There are two kinds of nodes
- Places: usually model resources or partial state of the system
Transitions: model state transition and synchronization. - Arcs are directed and always connect nodes of different types
Tokens are resources in the places.
Definition of Petri Net
-
C = ( P , T , I , O ) C = ( P, T, I, O) C=(P,T,I,O)
-
Places
P = p 1 , p 2 , p 3 , … , p n P = { p_1, p_2, p_3, …, p_n} P=p1,p2,p3,…,pn -
Transitions
T = t 1 , t 2 , t 3 , … , t n T = { t_1, t_2, t_3, …, t_n} T=t1,t2,t3,…,tn -
Input
I : T → P r T\rightarrow P^r T→Pr (r = number of places) ⋅ t \cdot t ⋅t -
Output
O : T → P q T \rightarrow P^q T→Pq (q = number of places) KaTeX parse error: Unexpected character: ' ' at position 7: t\cdot ̲ -
marking
µ : assignment of tokens to the places of Petri net µ = µ 1 , µ 2 , µ 3 , … µ n µ = µ_1, µ_2, µ_3, … µ_n µ=µ1,µ2,µ3,…µn
Petri net consist two types of nodes: places and transitions. And arc exists only from a place to a transition or from a transition to a place.
A place may have zero or more tokens.
Fire
A transition t is called enabled in a certain marking, if:
For every arc from a place p to t, there exists a distinct token in the marking
An enabled transition can fire and result in a new marking
Firing of a transition t in a marking is an atomic operation
Firing a transition results in two things:
- Subtracting one token from the marking of any place p for every arc connecting p to t
- Adding one token to the marking of any place p for every arc connecting t to p
Run-1 Safe PN
A run of a Petri net is a finite or infinite sequence of markings and transitions μ 0 → t 0 μ 1 → t 1 ⋯ → t n − 1 μ n → t n ⋯ \mu_0 \xrightarrow {t_0} \mu_1\xrightarrow {t_1}\cdots \xrightarrow{t_{n-1}} \mu_n\xrightarrow{t_n} \cdots μ0t0μ1t1⋯tn−1μntn⋯ such that μ 0 \mu_0 μ0 is the initial marking of the net, t i ∈ e n a b l e d ( μ i ) t_i ∈ enabled(\mu_i) ti∈enabled(μi) for any i (i ≥ 0) , and that μ i = ( μ i − 1 − ⋅ t i − 1 ) ∪ t i − 1 ⋅ \mu_i=(\mu_{i-1}-\cdot t_{i-1})∪t_{i-1} \cdot μi=(μi−1−⋅ti−1)∪ti−1⋅ for any i i i ( i ≥ 1 i ≥1 i≥1).
Properties of Petri Nets
- Sequential Execution
- Synchronization
- Merging
- Fork
- Concurrency
- Conflict
Non-Deterministic Evolution
The evolution of Petri nets is not deterministic.
Any of the activated transactions might fire.
Some Definitions
Source transition: no inputs
Sink transition: no outputs
Self-loop: a pair
(
p
,
t
)
(p,t)
(p,t) s.t.
p
p
p is both an input and an output of
t
t
t
Pure PN: no self-loops
Weighted PN: arcs with weight
Ordinary PN: all arc weights are 1's
Infinite capacity net: places can accommodate an unlimited number of tokens
Finite capacity net: each place p has a maximum capacity
K
(
p
)
K(p)
K(p)
strict transition rule: after firing, each output place can't have more than
K
(
p
)
K(p)
K(p) tokens
Theorem: every pure finite-capacity net can be transformed into an equivalent infinite-capacity net
Weighted Edges
Associating weights to edges:
- Each edge fi has an associated weight W(fi) (defaults to 1)
- A transition t t t is active if each place pi connected through an edge fi to t contains at least W(fi) tokens.
Finite Capacity Petri Net
Each place pi can hold maximally K(pi) tokens.
A transition t is only active if all output places pi of t cannot exceed K(pi) after firing t.
Pure finite capacity Petri Nets can be transformed into equivalent infinite capacity Petri Nets (without capacity restrictions).
Equivalence: Both nets have the same set of all possible firing sequences.
Removing Capacity Constraints
For each place p with K ( p ) > 1 K(p) > 1 K(p)>1, add a complementary place p ′ p' p′ with initial marking M 0 ( p ′ ) = K ( p ) – M 0 ( p ) M_0(p') = K(p) – M_0(p) M0(p′)=K(p)–M0(p).
- For each outgoing edge e = ( p , t ) e = (p, t) e=(p,t), add an edge e ′ e' e′ from t t t to p ′ p' p′ with weight W ( e ) W(e) W(e).
- For each incoming edge e = ( t , p ) e = (t, p) e=(t,p), add an edge e ′ e' e′ from p ′ p' p′ to t t t with weight W ( e ) W(e) W(e).
Resolving Self-Loops
The algorithm to remove capacity constraints works if the Petri net has no self loops (is pure).
No Problem! Rewrite the Petri net without self loops.
Behavioral properties
Properties that depend on the initial marking.
Reachability
M
n
M_n
Mn is reachable from
M
0
M_0
M0 if exists a sequence of firings that transform
M
0
M_0
M0 into
M
n
M_n
Mn
Reachability is decidable, but exponential.
Boundedness
A PN is bounded if the number of tokens in each place doesn't exceed a finite number k for any marking reachable from
M
0
M_0
M0
A PN is safe if it is 1-bounded.
Liveness
A PN is live if, no matter what marking has been reached, it is possible to fire any transition with an appropriate firing sequence
equivalent to deadlock-free
Reversibility
A PN is reversible if, for each marking M reachable from
M
0
M_0
M0,
M
0
M_0
M0 is reachable from
M
M
M
Relaxed condition: a marking
M
′
M'
M′ is a home state if, for each marking M reachable from M0,
M
′
M'
M′ is reachable from
M
M
M
Persistence
A PN is persistent if, for any two enabled transitions, the firing of one of them will not disable the other.
Then, once a transition is enabled, it remains enabled until it's fired.
Fairness
**Bounded-fairness: ** the number of times one transition can fire while the other is not firing is bounded
**Unconditional(global)-fairness: ** every transition appears infinitely often in a firing sequence
Coverability tree
Tree representation of all possible markings
- root = M 0 M_0 M0
- nodes = markings reachable from M 0 M_0 M0
- arcs = transition firings
If net is unbounded, then tree is kept finite by introducing the symbol ω \omega ω
Properties
- A PN is bounded iff ω \omega ω doesn't appear in any node
- A PN is safe iff only 0's and 1's appear in nodes
- A transition is dead iff it doesn't appear in any arc
- If M M M is reachable form M 0 M_0 M0, then exists a node M ′ M' M′ that covers M M M
Reduction Rules
Petri Net with Time
Time Petri nets are classical Petri Nets where to each transition t a time interval [a; b] is associated.
The times a and b are relative to the moment at which t was last enabled.
Assuming that t was enabled at time c, then t may fire only during the interval [c + a; c + b] and must fire at the time c + b at the latest, unless it is disabled before by the firing of another transition.
Firing a transition takes no time.
When a transition becomes enabled it may not fire at once (in general) but during a certain time interval and at the end of the interval there is a force to fire.
Let N be the set of natural numbers. A time Petri net is a six-tuple, N = ( P , T , F , E f t , L f t , μ 0 ) N =(P, T, F, Eft, Lft, \mu_0) N=(P,T,F,Eft,Lft,μ0), where
- P = { p 1 , p 2 , … , p m } P = \{p_1, p_2, …, p_m\} P={p1,p2,…,pm} is a finite set of places;
- T = { t 1 , t 2 , … , t n } T = \{t_1, t_2, …, t_n\} T={t1,t2,…,tn} is a finite set of transitions ( P ∩ T = ∅ ) F ⊂ ( P × T ) ∪ ( T × P ) (P∩T=∅) F⊂(P×T)\cup(T×P) (P∩T=∅)F⊂(P×T)∪(T×P) is the flow relation;
- E f t , L f t : T → N Eft, Lft: T→N Eft,Lft:T→N are functions for the earliest and latest firing times of transitions, satisfying that for any t ∈ T t∈T t∈T, E f t ( t ) ≤ L f t ( t ) ≤ ∞ Eft(t)≤Lft(t) ≤∞ Eft(t)≤Lft(t)≤∞;
- μ 0 ∈ P \mu_0 ∈ P μ0∈P is the initial marking of the net.
A state of a time Petri net N = ( P , T , F , E f t , L f t , μ 0 ) N =(P, T, F, Eft, Lft, \mu_0) N=(P,T,F,Eft,Lft,μ0), is a pair s = ( μ , c ) s=(\mu, c) s=(μ,c), where μ \mu μ is a marking of N, and c : e n a b l e d ( μ ) → T c : enabled(\mu) → T c:enabled(μ)→T is called the clock function.
The initial state of N is s 0 = ( μ 0 , c 0 ) s_0=(\mu_0, c_0) s0=(μ0,c0) where c 0 ( t ) = 0 c_0(t) = 0 c0(t)=0 for any t ∈ e n a b l e d ( μ 0 ) t ∈ enabled(\mu_0) t∈enabled(μ0).
Untimed PNs represent sequences of firings, but these are logical sequences, not temporal ones.
Transitions in which the lower bound is 0 are called zero-time transitions, since they can occur at the same time in which they are enabled, without delay.
A Zeno behavior is one in which time does not advance.
One might argue that zero-time transitions in the real world cannot occur, so we should avoid them entirely.
However, even if they are not physically feasible, from the point of view of modeling they are often useful, for example to model cases in which the difference in time between two transitions is negligible with respect to the main dynamics of the system.
http://cpntools.org/_media/book/covgraph.pdf
Timed Automata
Peterson's Algorithm
Fischer's Protocol
Clock Constraints
Let X be a set of clock variables. Then set C(X) of clock constraints is given by the following grammar: φ ≡ x ≤ k ∣ k ≤ x ∣ x < k ∣ k < x ∣ φ ∧ φ φ≡x≤k|k≤x|x<k|k<x|φ∧φ φ≡x≤k∣k≤x∣x<k∣k<x∣φ∧φ, where x ∈ X x ∈ X x∈X, k ∈ N k ∈ N k∈N.
Timed Automaton
Syntax
A timed automaton is a 4-tuple: A = ( L , X , l 0 , E ) A = (L,X,l0,E) A=(L,X,l0,E).
- L is a finite set of locations
- X is a finite set of clocks
- l 0 ∈ L l_0 ∈ L l0∈L is an initial location
-
E
⊆
L
×
C
(
X
)
×
2
X
×
L
E ⊆L×C(X)×2X ×L
E⊆L×C(X)×2X×Lis a set of edges
edge = (source location, clock constraint, set of clocks to be resetted, target location)
Semantics
Semantics is a state space.
***Reminder: *** guarded command language, extended finite state machines
States given by:
- location (local state of the automaton)
- clock valuation
Transitions:
- waiting – only clock valuation changes
- action – change of location
Clock valuation
A clock valuation is a function
ν
:
X
→
R
+
ν : X → R^+
ν:X→R+
-
ν[Y := 0] is the valuation obtained from ν by resetting clocks from Y :
ν [ Y : = 0 ] ( x ) = { 0 x ∈ Y x o t h e r w i s e ν[Y := 0](x)= \left\{ \begin{array}{rcl} 0 & & {x∈Y}\\ x & & { otherwise} \end{array} \right. ν[Y:=0](x)={0xx∈Yotherwise -
ν + d ν+d ν+d = flow of time ( d d d units):
( ν + d ) ( x ) = ν ( x ) + d (ν + d)(x) = ν(x) + d (ν+d)(x)=ν(x)+d -
ν ⊨ c ν \vDash c ν⊨c means that valuation ν ν ν satisfies the constraint c c c.
Evaluation of a clock constraint (ν |= g):
ν
⊨
x
<
k
ν \vDash x < k
ν⊨x<k iff
ν
(
x
)
<
k
ν(x) < k
ν(x)<k
ν
⊨
x
≤
k
ν \vDash x ≤ k
ν⊨x≤k iff
ν
(
x
)
≤
k
ν(x) ≤ k
ν(x)≤k
ν
⊨
g
1
∧
g
2
ν \vDash g1∧g2
ν⊨g1∧g2 iff
ν
⊨
g
1
ν\vDash g_1
ν⊨g1 and
ν
⊨
g
2
ν\vDash g_2
ν⊨g2
Definition
The semantics of a timed automaton A is a transition system
S
A
=
(
S
,
s
0
,
−
→
)
S_A =(S,s_0,−→)
SA=(S,s0,−→):
S
=
L
×
(
X
→
R
+
)
S = L × (X → R^+)
S=L×(X→R+)
s
0
=
(
l
0
,
ν
0
)
,
ν
0
(
x
)
=
0
s0 =(l_0, ν_0), ν_0(x)=0
s0=(l0,ν0),ν0(x)=0 for all
x
∈
X
x∈X
x∈X
transition relation
→
⊆
S
×
S
→⊆ S × S
→⊆S×S is defined as:
- (delay action) ( l , ν ) → ( l , ν + δ ) (l, ν) → (l, ν + δ) (l,ν)→(l,ν+δ)
- (discrete action) ( l , ν ) − → ( l ′ , ν ′ ) (l,ν) −→ (l′,ν′) (l,ν)−→(l′,ν′) iff there exists ( l , c , Y , l ′ ) ∈ E (l,c,Y,l') ∈ E (l,c,Y,l′)∈E such that ν ∣ = c ν |= c ν∣=c, ν ′ = ν [ Y : = 0 ] ν' = ν[Y := 0] ν′=ν[Y:=0]
the semantics is infinite state (even uncountable)
the semantics is even infinitely branching
Reachability Problem
Theorem:
The reachability problem is PSPACE-complete.
Notes
Note that even decidability of the problem is not straightforward — Remind that the semantics is infinite state
decidability proved by region construction
completeness proved by general reduction from linearly bounded Turing machine
https://www.fi.muni.cz/~xpelanek/IA158/slides/timed-automata.pdf