I am working on a project with directed graphs where the weight of the edges all depend on a variable x. I'm trying to find the minimum value of x such that my graph does not contain any circuit of positive weight.
My question is -and it is probably pretty stupid but I don't see how- : How can I use a modified Bellman-Ford to check for the presence of positive circuits instead of negative circuits ?
Thanks.