Switch order of merge_sort arguments in some benchmarks
This commit is contained in:
parent
f34c4f4b04
commit
4f9f1c5f9a
@ -34,7 +34,7 @@ fn pct(xx: uint, yy: uint) -> float {
|
||||
|
||||
// sort by key, then by value
|
||||
fn sortKV<TT: Copy Ord, UU: Copy Ord>(orig: ~[(TT,UU)]) -> ~[(TT,UU)] {
|
||||
return sort::merge_sort(le_by_val, sort::merge_sort(le_by_key, orig));
|
||||
return sort::merge_sort(sort::merge_sort(orig, le_by_key), le_by_val);
|
||||
}
|
||||
|
||||
let mut pairs = ~[];
|
||||
|
@ -31,7 +31,7 @@ fn pct(xx: uint, yy: uint) -> float {
|
||||
|
||||
// sort by key, then by value
|
||||
fn sortKV<TT: Copy Ord, UU: Copy Ord>(orig: ~[(TT,UU)]) -> ~[(TT,UU)] {
|
||||
return sort::merge_sort(le_by_val, sort::merge_sort(le_by_key, orig));
|
||||
return sort::merge_sort(sort::merge_sort(orig, le_by_key), le_by_val);
|
||||
}
|
||||
|
||||
let mut pairs = ~[];
|
||||
|
Loading…
Reference in New Issue
Block a user