# HG changeset patch # User jbe # Date 1400755139 -7200 # Node ID a1031e47760b9d356efa8e1d150809364aa2725c # Parent 3031c1973748068e5e347773802f60a7e658626f Bugfix in tie-breaking: Type for worst possible link strength must be "link_strength", not "INT8" diff -r 3031c1973748 -r a1031e47760b core.sql --- a/core.sql Thu May 22 05:29:28 2014 +0200 +++ b/core.sql Thu May 22 12:38:59 2014 +0200 @@ -4102,7 +4102,7 @@ IF "i" != "j" THEN "matrix_t"["i"]["j"] := CASE WHEN "matrix_f"["i"]["j"] - THEN (-1::INT8) << 63 -- worst possible value + THEN ((-1::INT8) << 63, 0)::"link_strength" -- worst possible value ELSE "matrix_d"["i"]["j"] END; END IF; EXIT WHEN "j" = "dimension_v";