Kaydet (Commit) 9caa1101 authored tarafından Jeremy Hylton's avatar Jeremy Hylton

assure a consistent assignment for nodes with multiple labels

üst b866020f
......@@ -4,7 +4,8 @@
require "labels.pl";
%nodes = ();
foreach $label (keys %external_labels) {
# sort so that we get a consistent assignment for nodes with multiple labels
foreach $label (sort keys %external_labels) {
$nodes{$external_labels{$label}} = $label;
}
......
......@@ -4,7 +4,8 @@
require "labels.pl";
%nodes = ();
foreach $label (keys %external_labels) {
# sort so that we get a consistent assignment for nodes with multiple labels
foreach $label (sort keys %external_labels) {
$nodes{$external_labels{$label}} = $label;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment