Skip to content

Commit

Permalink
fix final node references (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellussiegburg committed Jan 9, 2025
1 parent 00fb701 commit cf0ab05
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Modelling/ActivityDiagram/MatchPetri.hs
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ matchPetriTask path task = do
den Petrinetzknoten 1 und 2 zugeordnet,
die Petrinetzknoten 5 und 7 entsprechen Verzweigungsknoten,
die Petrinetzknoten 13, 14 und 15 sind Hilfsstellen oder -transitionen,
der Petrinetzknoten 16 entspricht einem Aktivitätsendeknoten
und kein Petrinetzknoten entspricht einem Flussendeknoten.
der Petrinetzknoten 16 entspricht einem Aktivitätsende
und kein Petrinetzknoten entspricht einem Flussende.
|]
pure ()
finalNodesAdvice True
Expand Down Expand Up @@ -624,8 +624,8 @@ defaultMatchPetriInstance = MatchPetriInstance
, name = "A" } }
, 1 ) ] } )
,
( AuxiliaryPetriNode
{ label = 4 }
( FinalPetriNode
{ label = 4, sourceNode = AdActivityFinalNode {label = 15} }
, SimpleTransition
{ flowOut = M.empty } )
,
Expand Down Expand Up @@ -690,8 +690,8 @@ defaultMatchPetriInstance = MatchPetriInstance
{ initial = 0
, flowOut = M.fromList
[
( AuxiliaryPetriNode
{ label = 4 }
( FinalPetriNode
{ label = 4, sourceNode = AdActivityFinalNode {label = 15} }
, 1 ) ] } )
,
( NormalPetriNode
Expand Down

0 comments on commit cf0ab05

Please sign in to comment.