1 10 package examples.grid.fitnessDistributed; 11 12 import org.apache.commons.cli.*; 13 import org.homedns.dade.jcgrid.cmd.*; 14 import org.homedns.dade.jcgrid.worker.*; 15 import org.jgap.distr.grid.*; 16 17 28 public class ServerAndWorker { 29 30 private final static String CVS_REVISION = "$Revision: 1.3 $"; 31 32 43 public static void main(String [] args) 44 throws Exception { 45 new JGAPServer(args); 48 Options options = new Options(); 51 GridNodeWorkerConfig config = new GridNodeWorkerConfig(); 52 CommandLine cmd = MainCmd.parseCommonOptions(options, config, args); 53 new JGAPWorkers(config); 56 } 57 } 58 | Popular Tags |