Hi,
I just installed the latest release (2.6.1) on Leopard (Mac Pro - Quad-Core
Intel Xeon, 16Gb).
Calling :

allsubsets <- function (n)
+   {
+     if (n > 0)
+       rbind(cbind(TRUE, Recall(n - 1)), cbind(FALSE, Recall(n -1)))
+   }
> a<-allsubsets(30)

I get the following error:

Error: cannot allocate vector of size 1.5 Gb

R(576,0xa04f8f60) malloc: *** mmap(size=1610616832) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
R(576,0xa04f8f60) malloc: *** mmap(size=1610616832) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug

Any ideas? Thank you.

Hans

        [[alternative HTML version deleted]]

_______________________________________________
R-SIG-Mac mailing list
[email protected]
https://stat.ethz.ch/mailman/listinfo/r-sig-mac

Reply via email to