digraph "colgenschema" {
graph [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
color = "black"
]
node [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
shape = "box"
color = "black"
style = "filled"
]
edge [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
color = "black"
]
"start" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Start"
shape = "point"
color = "black"
style = "filled"
]
"tz" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Tourenzusammenstellung"
shape = "box"
color = "black"
style = "filled"
]
"rg" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Routenerzeugung"
shape = "box"
color = "black"
style = "filled"
]
"opt" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Terminierung?"
shape = "diamond"
color = "black"
style = "filled"
]
"ende" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Ende"
shape = "point"
color = "black"
style = "filled"
]
"start" -> "tz" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Anfangslösung"
color = "black"
]
"tz" -> "rg" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Strukturinformation"
color = "black"
]
"rg" -> "opt" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "Routen"
color = "black"
]
"opt" -> "ende" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "ja"
color = "black"
]
"opt" -> "tz" [
fontsize = "14"
fontname = "Times-Roman"
fontcolor = "black"
label = "nein"
color = "black"
]
}