Lines Matching defs:dist
146 Matrix dist = shortest_path(topology_weights, component_latencies,
154 shortest_path_to_node(i, j, topology_weights, dist);
262 Matrix dist = weights;
263 extend_shortest_path(dist, latencies, inter_switches);
264 return dist;
270 const Matrix &dist)
272 return weights[src][next] + dist[next][final] == dist[src][final];
277 const Matrix &weights, const Matrix &dist)
295 weights, dist)) {