]> granicus.if.org Git - graphviz/commit
dijkstra: remove use of raw 'INT_MAX'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 19 Dec 2021 19:17:59 +0000 (11:17 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 19 Dec 2021 23:14:36 +0000 (15:14 -0800)
commitfd175d3ed799854f4805188fcc9c0f06930d9b72
tree285a3ca0464593fb559962daef0bfbc0c3f4371b
parent49c827be3d6bea1df0e456baa14d4c6d98adc2a6
dijkstra: remove use of raw 'INT_MAX'

This code was relying on this value being the same as `DIST_MAX`. `DIST_MAX` is
currently set to `INT_MAX`, but using `INT_MAX` directly here implied it was
safe to change the definition of `DIST_MAX` without updating this location,
which was not true.
lib/neatogen/dijkstra.c