gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Fix the usage of min() (#368)
0 1 0
default
1 file changed with 2 insertions and 2 deletions:
↑ Collapse diff ↑
Show white space 6 line context
... ...
@@ -1044,3 +1044,3 @@
1044 1044
      } else {
1045
        ART_COST = std::numeric_limits<Cost>::min();
1045
        ART_COST = 0;
1046 1046
        for (int i = 0; i != _arc_num; ++i) {
... ...
@@ -1459,3 +1459,3 @@
1459 1459
        if (_stype == GEQ) {
1460
          Cost max_pot = std::numeric_limits<Cost>::min();
1460
          Cost max_pot = -std::numeric_limits<Cost>::max();
1461 1461
          for (int i = 0; i != _node_num; ++i) {
0 comments (0 inline)