R Based Genetic Algorithm Summary Function
Summarizes the genetic algorithm results.
## S3 method for class 'rbga' summary(object, echo=FALSE, ...)
object | 
 a rbga object.  | 
echo | 
 if true, the summary will be printed to STDOUT as well as returned.  | 
... | 
 other options (ignored)  | 
evaluate <- function(string=c()) {
    returnVal = 1 / sum(string);
    returnVal
}
rbga.results = rbga.bin(size=10, mutationChance=0.01, zeroToOneRatio=0.5,
    evalFunc=evaluate)
summary(rbga.results)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.