[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Ali Cehreli changed: What|Removed |Added CC||acehr...@yahoo.com --- Comment #1 from A

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Steven Schveighoffer changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Ali Cehreli changed: What|Removed |Added URL||http://www.mail-archive.com

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 bearophile_h...@eml.cc changed: What|Removed |Added CC||bearophile_h...@eml.cc --- Com

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 --- Comment #5 from bearophile_h...@eml.cc 2010-07-02 09:48:24 PDT --- This is a modified program, after a suggestion by Andrei: import std.stdio: writeln; void main() { int[] array; int* old_ptr; foreach (i; 0 .. 100_000_000) {

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 --- Comment #6 from Steven Schveighoffer 2010-07-02 10:30:19 PDT --- OK, here's the deal: When the current block can be extended into the next page, it is. This does not take into account any scaling factors. That is, if you ask for one mor

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Fawzi Mohamed changed: What|Removed |Added CC||fa...@gmx.ch --- Comment #7 from Fawzi

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Steven Schveighoffer changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 --- Comment #9 from Ali Cehreli 2010-07-14 14:00:49 PDT --- Thanks! Looks pretty smooth now... :) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 --- Comment #10 from bearophile_h...@eml.cc 2010-07-14 14:55:42 PDT --- After this change how is the output of the program in Comment 5? Is it unchanged? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 --- Comment #11 from Steven Schveighoffer 2010-07-15 07:22:10 PDT --- The output from comment 5 looks like this: 3 1.75 1.875 1.9375 1.96875 1.98438 1.99219 1.99609 1.99023 1.50001 1.47222 1.45 1.43015 1.41 1.40007 1.38002 1.37002 and then my

Re: [Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-02 Thread Andrei Alexandrescu
d-bugm...@puremagic.com wrote: http://d.puremagic.com/issues/show_bug.cgi?id=4412 bearophile_h...@eml.cc changed: What|Removed |Added CC|