
===========
TABLE SETUP
===========

graph_m_multi_supply_demand.dc_roads table object successfully created.
Creating records from the ../../data/dc_roads.csv file.
30733 records inserted into graph_m_multi_supply_demand.dc_roads table.

graph_m_multi_supply_demand.demands table object successfully created.
6 records inserted into graph_m_multi_supply_demand.demands table.

graph_m_multi_supply_demand.supplies table object successfully created.
5 records inserted into graph_m_multi_supply_demand.supplies table.

===========
GRAPH SETUP
===========

Creating graph_m_multi_supply_demand.dc_roads_graph
graph_m_multi_supply_demand.dc_roads_graph creation success!
Number of nodes: 156309
Number of edges: 177204

=========================================
MULTIPLE SUPPLY DEMAND SOLVER EXAMPLE # 1
=========================================

Matching demands to supply with priority via graph_m_multi_supply_demand.dc_roads_graph.

Cost for demand to be met by each supplier:
+------------+-------------+------------------------+----------+
|   Truck ID | Store IDs   | Store Drops            |     Cost |
|------------+-------------+------------------------+----------|
|         25 | (46)        | (16.000)               | 0.409532 |
|         24 | (46,11)     | (9.000,11.000)         | 0.412311 |
|         21 | (13,11)     | (40.000,10.000)        | 0.741923 |
|         23 | (45,12)     | (28.000,2.000)         | 1.0872   |
|         22 | (12,44,11)  | (13.000,23.000,14.000) | 1.28554  |
+------------+-------------+------------------------+----------+
See graph_m_multi_supply_demand.dc_roads_graph_solved table for route details.

=========================================
MULTIPLE SUPPLY DEMAND SOLVER EXAMPLE # 2
=========================================

Matching demands to supply with priority & max trip cost via graph_m_multi_supply_demand.dc_roads_graph.

Cost for demand to be met by each supplier:
+------------+---------------+-----------------------------+----------+
|   Truck ID | Store IDs     | Store Drops                 |     Cost |
|------------+---------------+-----------------------------+----------|
|         25 | (11)          | (16.000)                    | 0.237547 |
|         24 | (46)          | (20.000)                    | 0.409532 |
|         22 | (13,11)       | (40.000,10.000)             | 0.741923 |
|         23 | (11,44)       | (7.000,23.000)              | 1.07941  |
|         21 | (46,12,45,11) | (5.000,15.000,28.000,2.000) | 1.43993  |
+------------+---------------+-----------------------------+----------+
See graph_m_multi_supply_demand.dc_roads_graph_solved_w_max_trip table for route details.

