caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Possible bug in DynArray module from ExtLib
@ 2007-03-31 18:15 Dário Abdulrehman
  2007-03-31 20:34 ` Florian Weimer
  0 siblings, 1 reply; 5+ messages in thread
From: Dário Abdulrehman @ 2007-03-31 18:15 UTC (permalink / raw)
  To: caml-list

[-- Attachment #1: Type: text/plain, Size: 544 bytes --]

The first of the following functions causes a "Fatal error: exception
Out_of_memory", while the second works fine.
This error seems to occur when creating large arrays with more than 2
million and something entries.
Anyone noticed this error?

Thanks.

  let test_dynarray1 () =
    let a = DynArray.create () in
    for i = 1 to 2817131 do
      DynArray.add a i
    done

  let test_dynarray2 () =
    let a = DynArray.make 2817131 in
    for i = 1 to 2817131 do
      DynArray.add a i
    done


-- 
Dário Abdulrehman

[-- Attachment #2: Type: text/html, Size: 760 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-04-04  1:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-31 18:15 [Caml-list] Possible bug in DynArray module from ExtLib Dário Abdulrehman
2007-03-31 20:34 ` Florian Weimer
2007-03-31 20:37   ` Dário Abdulrehman
2007-04-03 22:40   ` ls-ocaml-developer-2006
2007-04-04  1:35     ` skaller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).