{
  "directed": true,
  "multigraph": true,
  "nodes": [
    {
      "id": "source",
      "label": "source"
    },
    {
      "id": "router",
      "label": "router"
    },
    {
      "id": "cache",
      "label": "cache"
    },
    {
      "id": "sink",
      "label": "sink"
    }
  ],
  "edges": [
    {
      "id": "e0",
      "source": "source",
      "target": "router",
      "weight": 0.6
    },
    {
      "id": "e1",
      "source": "source",
      "target": "router",
      "weight": 1.4
    },
    {
      "id": "e2",
      "source": "source",
      "target": "cache",
      "weight": 0.5
    },
    {
      "id": "e3",
      "source": "router",
      "target": "cache",
      "weight": 0.8
    },
    {
      "id": "e4",
      "source": "router",
      "target": "sink",
      "weight": 1.2
    },
    {
      "id": "e5",
      "source": "cache",
      "target": "sink",
      "weight": 0.9
    }
  ],
  "expected": {
    "components": 1,
    "cycle": false,
    "topologicalOrder": [
      "source",
      "router",
      "cache",
      "sink"
    ],
    "weightSum": 5.4
  }
}
