local_model.dot 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. digraph G {
  2. subgraph "clusterChain" {
  3. label = "Chain"
  4. color=black
  5. subgraph "clusterChain.CoupledGenerator" {
  6. label = "CoupledGenerator"
  7. color=black
  8. "Chain.CoupledGenerator.Generator" [
  9. label = "Generator\nState: 1.0"
  10. color="red"
  11. style=filled
  12. ]
  13. }
  14. subgraph "clusterChain.CoupledProcessor_2" {
  15. label = "CoupledProcessor_2"
  16. color=black
  17. "Chain.CoupledProcessor_2.Processor0" [
  18. label = "Processor0\nState: inf"
  19. color="red"
  20. style=filled
  21. ]
  22. "Chain.CoupledProcessor_2.Processor1" [
  23. label = "Processor1\nState: inf"
  24. color="red"
  25. style=filled
  26. ]
  27. }
  28. subgraph "clusterChain.CoupledProcessor_3" {
  29. label = "CoupledProcessor_3"
  30. color=black
  31. "Chain.CoupledProcessor_3.Processor0" [
  32. label = "Processor0\nState: inf"
  33. color="red"
  34. style=filled
  35. ]
  36. "Chain.CoupledProcessor_3.Processor1" [
  37. label = "Processor1\nState: inf"
  38. color="red"
  39. style=filled
  40. ]
  41. "Chain.CoupledProcessor_3.Processor2" [
  42. label = "Processor2\nState: inf"
  43. color="red"
  44. style=filled
  45. ]
  46. }
  47. }
  48. "Chain.CoupledGenerator.Generator" -> "Chain.CoupledProcessor_2.Processor0" [label="outport -> inport"];
  49. "Chain.CoupledProcessor_2.Processor0" -> "Chain.CoupledProcessor_2.Processor1" [label="outport -> inport"];
  50. "Chain.CoupledProcessor_2.Processor1" -> "Chain.CoupledProcessor_3.Processor0" [label="outport -> inport"];
  51. "Chain.CoupledProcessor_3.Processor0" -> "Chain.CoupledProcessor_3.Processor1" [label="outport -> inport"];
  52. "Chain.CoupledProcessor_3.Processor1" -> "Chain.CoupledProcessor_3.Processor2" [label="outport -> inport"];
  53. }