A fully working version of the scheduling language with added examples
This commit is contained in:
parent
ec42f74960
commit
ebfd85a666
126 changed files with 7235 additions and 981 deletions
12
examples/petrinet/petrinet_renderer.j2
Normal file
12
examples/petrinet/petrinet_renderer.j2
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
digraph G {
|
||||
rankdir=LR;
|
||||
center=true;
|
||||
margin=1;
|
||||
nodesep=1;
|
||||
subgraph places {
|
||||
node [fontname=Arial,fontsize=10,shape=circle,fixedsize=true,label="", height=.35,width=.35];
|
||||
{% for place in places %}
|
||||
{{ place[0] }} [label="{{ place[1] }}_{{ place[2] }}"]
|
||||
{% endfor %}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue