May 13, 2009 General » Re: std.partition is fucked | |||
|---|---|---|---|
| |||
...what I ended up doing to get swap inlined was to pass it two array... | |||
May 13, 2009 General » Re: std.partition is fucked | |||
|---|---|---|---|
| |||
...it's not too much trouble. If swap is not inlined that would be serious... | |||
May 13, 2009 General » Re: std.partition is fucked | |||
|---|---|---|---|
| |||
...little faster but not that much. std.swap can't be inlined because it uses... | |||
May 13, 2009 General » Re: std.partition is fucked | |||
|---|---|---|---|
| |||
...return result;
}
// found the right bound, swap & make progress
swap(r.front, r.back);
r... | |||
May 13, 2009 General » std.partition is fucked | |||
|---|---|---|---|
| |||
...return r;
}
// found the right bound, swap & make progress
swap(r.front, r1.back);
r... | |||
May 12, 2009 Issues » [Issue 2966] New: std.algorithm.sort Slower than Selection Sort | |||
|---|---|---|---|
| |||
...if(data[j] < data[minI]) {
minI = j;
}
}
swap(data[i], data[minI]);
}
}
And the timings... | |||
May 06, 2009 c++.stlsoft » STLSoft 1.9.80 released | |||
|---|---|---|---|
| |||
...buffer to ensure allocators are involved in swap() operations * correction to struct in_addr string... | |||
May 03, 2009 Issues » [Issue 2928] Swap order of paramaters for std.range's "take" | |||
|---|---|---|---|
| |||
http://d.puremagic.com/issues/show_bug.cgi?id=2928 ------- Comment #3 from andrei@metalanguage... | |||
May 03, 2009 Issues » [Issue 2928] Swap order of paramaters for std.range's "take" | |||
|---|---|---|---|
| |||
http://d.puremagic.com/issues/show_bug.cgi?id=2928 ------- Comment #2 from jarrett.billingsley... | |||
May 03, 2009 Issues » [Issue 2928] Swap order of paramaters for std.range's "take" | |||
|---|---|---|---|
| |||
http://d.puremagic.com/issues/show_bug.cgi?id=2928 ------- Comment #1 from andrei@metalanguage... | |||
Copyright © 1999-2021 by the D Language Foundation