Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. digraph G {
  2. "FurnitureSystem" -> " Rawmaterialstorage"
  3. "FurnitureSystem" -> "StartStorage"
  4. "FurnitureSystem" -> "StartStorageTransport"
  5. "FurnitureSystem" -> "CuttingComposite"
  6. "FurnitureSystem" -> "ProductQA"
  7. "FurnitureSystem" ->"CuttingCompositeTransport"
  8. "StartStorageTransport" -> "StartWoodTrans"
  9. "StartStorageTransport" -> "StartMetalTrans"
  10. "CuttingComposite" -> "ComponentPreparationSystem1"
  11. "ComponentPreparationSystem1" -> "PreparationStartStorage"
  12. "ComponentPreparationSystem1" -> "StartTransport"
  13. "ComponentPreparationSystem1" -> "Cutting"
  14. "ComponentPreparationSystem1" -> "CutTransport"
  15. "ComponentPreparationSystem1" -> "Drilling"
  16. "ComponentPreparationSystem1" -> "PreparedEndStorage"
  17. "FurnitureSystem" -> "ProductStorage"
  18. "StartStorageTransport" -> "CuttingComposite" [label="Work Piece Type Wood"]
  19. "CuttingComposite" -> "PreparationStartStorage" [label="Work Piece Type Wood"]
  20. "StartStorageTransport" -> "CuttingComposite" [label="Work Piece Type Metal"]
  21. "CuttingComposite" -> "PreparationStartStorage" [label="Work Piece Type Metal"]
  22. "PreparationStartStorage" -> "StartTransport" [label="Work Piece Type Wood"]
  23. "StartTransport" -> "Cutting" [label="Work Piece Type Wood"]
  24. "Cutting" -> "CutTransport" [label="Work Piece Type CutWood"]
  25. "PreparationStartStorage" -> "StartTransport" [label="Work Piece Type Metal"]
  26. "StartTransport" -> "Cutting" [label="Work Piece Type Metal"]
  27. "Cutting" -> "CutTransport" [label="Work Piece Type CutMetal"]
  28. "CutTransport" -> "Drilling" [label="Work Piece Type CutWood"]
  29. "CutTransport" -> "Drilling" [label="Work Piece Type CutMetal"]
  30. "Drilling" -> "EndTransport" [label="Work Piece Type WoodProduct"]
  31. "Drilling" -> "EndTransport" [label="Work Piece Type MetalProduct"]
  32. "EndTransport" -> "PreparedEndStorage" [label="Work Piece Type WoodProduct"]
  33. "EndTransport" -> "PreparedEndStorage" [label="Work Piece Type MetalProduct"]
  34. "PreparedEndStorage" -> "ProductQA" [label="Work Piece Type WoodProduct"]
  35. "PreparedEndStorage" -> "ProductQA" [label="Work Piece Type MetalProduct"]
  36. "ProductQA" -> "CuttingCompositeTransport" [label="Work Piece Type WoodProduct"]
  37. "ProductQA" -> "CuttingCompositeTransport" [label="Work Piece Type MetalProduct"]
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement