Example #1
0
 protected override void buildOutputs()
 {
     outputs = new Scrivener.OutputPackage(new List <string> {
         "Module Name", "Current Generation", "Planned Generations", "Active Garden", "Parent Fitness", "Active Unit", "Unit Fitness", "Runtime"
     }, rootDirector.bart);
     outputs.updateInfo("Module Name", moduleName);
     outputs.updateInfo("Planned Generations", totalGenerations);
     outputs.updateInfo("Current Generation", 1);
 }
Example #2
0
 protected override void buildOutputs()
 {
     outputs = new Scrivener.OutputPackage(new List <string> {
         "Module Name", "Active State", "Active Network", "Runtime"
     }, rootDirector.bart);
     outputs.updateInfo("Module Name", moduleName);
     outputs.updateInfo("Active State", activeUnit.activeState.name);
     outputs.updateInfo("Active Network", activeUnit.activeState.network.name);
 }
 protected override void buildOutputs()
 {
     outputs = new Scrivener.OutputPackage(new List <string> {
         "Module Name", "Current Trial", "Planned Trials", "Active Unit", "Successes", "Runtime"
     }, rootDirector.bart);
     outputs.updateInfo("Module Name", moduleName);
     outputs.updateInfo("Planned Trials", totalTrials);
     outputs.updateInfo("Current Trial", currentTrial);
     outputs.updateInfo("Active Unit", activeUnit.unitName);
     outputs.updateInfo("Successes", contenders[activeUnit].successfulTrials);
 }