Overview
Cheapest paths between two nodes are those that minimize the sum of weights/costs of the traversed edges. Unlike shortest paths (which minimize the number of hops), cheapest paths use a weighted algorithm (Dijkstra's search) to find the path with the lowest cumulative cost. A cheapest path may therefore involve more edges than the shortest path.
When a cheapest path selector is used, the path mode defaults to TRAIL (no repeated edges).