-
Notifications
You must be signed in to change notification settings - Fork 1
Sales
James Bremner edited this page May 12, 2023
·
2 revisions
The option finds a reasonable tour through a graph that visits every node. The order of visiting nodes will be displayed, with a graphical representation.
The first line specifies the calculation required. It must contain
format sales
Column | Description |
---|---|
1 | 'c' for city |
2 | x location |
3 | y location |
4 | name |
The cities will all be connected by links with cost equivalent to the Pythagorean distance between them.
Column | Description |
---|---|
1 | l for link |
2 | src node name |
3 | dst node name |
4 | cost |
Links will be added between nodes where missing with cost set to a large number. This allows a tour to be found if a critical link is missing, but otherwise only links present in the input will be used.
format sales c 1 5 a c 3 7 b c 5 5 c c 5 1 d c 2 1 e c 3 3 f route b -> a -> e -> f -> c -> d ->