Changeset 48
- Timestamp:
- 12/10/09 00:21:45 (15 years ago)
- Location:
- java/ecj
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
java/ecj/cecj/utils/Pair.java
r44 r48 17 17 @Override 18 18 public boolean equals(Object obj) { 19 if (!(obj instanceof Pair )) {19 if (!(obj instanceof Pair<?>)) { 20 20 return false; 21 21 } -
java/ecj/framsticks/FramsticksUtils.java
r44 r48 31 31 private static final String P_EXPERIMENT_DEFINITION = "expdef"; 32 32 private static final String P_EXECUTABLE_COMMAND = "executable-cmd"; 33 private static final String P_DEBUG = "debug"; 33 34 34 35 private String directoryPath; … … 38 39 private String experimentDefinition; 39 40 private String executableCommand; 41 private boolean debug; 40 42 41 43 private static FramsticksUtils instance; … … 76 78 state.output.fatal("No executable command specified", def.push(P_EXECUTABLE_COMMAND)); 77 79 } 80 81 debug = state.parameters.getBoolean(null, def.push(P_DEBUG), false); 78 82 } 79 83 … … 93 97 } 94 98 99 if (debug) { 100 System.out.println("Executing command : " + command); 101 System.out.println("Result : " + result); 102 } 103 95 104 return result; 96 105 } -
java/ecj/framsticks/framsticks.params
r44 r48 32 32 pop.subpop.0 = ec.Subpopulation 33 33 34 pop.subpop.0.size = 2034 pop.subpop.0.size = 15 35 35 pop.subpop.0.duplicate-retries = 0 36 36 pop.subpop.0.species = framsticks.FramsticksSpecies … … 53 53 breed.elite.0 = 2 54 54 55 framsticks.debug = true 55 56 framsticks.directory-path = C:/Framsticks/ 56 57 framsticks.scripts-output = C:/Framsticks/scripts_output/genosEval.txt
Note: See TracChangeset
for help on using the changeset viewer.