I have a directed graph. Each edge has an intrinsic "weight" w_ij, which is fixed. Each node has a value v_i that can be configured, except for "root nodes" (no incoming edges) and "leaf nodes" (nooutgoing edges) whose values are fixed.
the "adjusted by node" edge value of each edge is given by:
s_ij = w_ij + v_j - v_i that is, we adjust the the value of an edge by the difference of values of its adjacent nodes. Of course, changing the values of nodes will affect the values of s_ij.
I am interested in the value of min{s_ij}, and want to find the optimal assignment of values to nodes, so that this "bottleneck" value is maximized.
Any ideas of how to do that?
Note: Cycles and "fixed paths" from a root to a leaf provide upper bounds for the minimum value (e.g. in a cycle, the sum of node differences is always 0, so the best you could get is the average of the edges' intrinsic weights). But because cycles and "fixed paths" may overlap, it is not clear whether the minimal upper bound is attainable. It is likely that the solution will involve finding such paths/cycles first.