[Vegan-commits] r2687 - pkg/permute/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Nov 9 03:05:21 CET 2013


Author: gsimpson
Date: 2013-11-09 03:05:17 +0100 (Sat, 09 Nov 2013)
New Revision: 2687

Modified:
   pkg/permute/R/print.how.R
Log:
need to be update following the change to getComplete to not return the minperm component

Modified: pkg/permute/R/print.how.R
===================================================================
--- pkg/permute/R/print.how.R	2013-11-09 02:04:20 UTC (rev 2686)
+++ pkg/permute/R/print.how.R	2013-11-09 02:05:17 UTC (rev 2687)
@@ -81,10 +81,9 @@
                              getNperm(x)), prefix = pfix))
     writeLines(strwrap(paste("Max. number of permutations allowed:",
                              getMaxperm(x)), prefix = pfix))
-    complete <- getComplete(x)
     txt <- paste("Evaluate all permutations?:",
-                 if(complete$complete) "Yes." else "No.",
-                 "  Activation limit:", complete$minperm)
+                 if(getComplete(x)) "Yes." else "No.",
+                 "  Activation limit:", getMinperm(x))
     writeLines(strwrap(txt, prefix = pfix))
 
 }



More information about the Vegan-commits mailing list