Requests: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:ARIS:Requests]] | [[Category:ARIS:Requests]] | ||
<graphviz border='frame' format='png'> | |||
digraph FunctionalitiesDiagram { | |||
node [shape=rectangle style=rounded fontsize="7pt"] | |||
edge [fontsize="7pt"] | |||
//----- Main graph | |||
// Nodes | |||
Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2] | |||
Registered [label="Registered"] | |||
Processing [label="Processing"] | |||
WithResults [label="WithResults"] | |||
Validated [label="Validated"] | |||
Cancelled [label="Cancelled"] | |||
End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2] | |||
// Edges | |||
Begin -> Registered [constraint=false] | |||
Registered -> Processing [label="Has some sample" constraint=false] | |||
Processing -> WithResults [label="Has some results" constraint=false] | |||
WithResults -> Validated [label="All tests validated" constraint=false] | |||
Validated -> End [constraint=false] | |||
Registered -> Cancelled [label="Cancel"] | |||
Processing -> Cancelled [label="Cancel"] | |||
WithResults -> Cancelled [label="Cancel"] | |||
Cancelled -> End [constraint=false] | |||
} | |||
</graphviz> | |||
<div style="float:right; margin: 0px 0px 0px 0px"> | <div style="float:right; margin: 0px 0px 0px 0px"> | ||
<graphviz border='frame' format='png'> | <graphviz border='frame' format='png'> |
Revision as of 12:00, 12 March 2023


UNDER CONSTRUCTION