Changeset 10044 for branches/Robocode.TrunkInt
- Timestamp:
- 10/16/13 16:25:35 (11 years ago)
- Location:
- branches/Robocode.TrunkInt
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/Plugin.cs.frame
r10011 r10044 29 29 namespace HeuristicLab.Problems.Robocode.Views 30 30 { 31 [Plugin("HeuristicLab.Problems.Robocode.Views", "The Robocode problem for genetic programming.", "3.3. 8.$WCREV$")]31 [Plugin("HeuristicLab.Problems.Robocode.Views", "The Robocode problem for genetic programming.", "3.3.9.$WCREV$")] 32 32 [PluginFile("HeuristicLab.Problems.Robocode.Views-3.3.dll", PluginFileType.Assembly)] 33 33 [PluginDependency("HeuristicLab.Data", "3.3")] -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/Properties/AssemblyInfo.cs.frame
r9779 r10044 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3. 8.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.9.$WCREV$")] 58 58 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/BattleRunner.java
r9967 r10044 30 30 public static List<Double> score = new ArrayList<Double>(); 31 31 32 // This program requires at least 1 argument: the name of the robot. 32 // This program requires 5 arguments: 33 // The first argument is the name of the robot. 33 34 // The second argument is the path to the robocode installation. If not give, c:\robocode is assumed. 34 // The third argument is optional. If it is true, robocode isshown, otherwise it is hidden.35 // The third argument: true if Robocode should be shown, otherwise it is hidden. 35 36 // The fourth argument is the number of rounds. 37 // The remaining arguments are the names of the opponents. At least 1 must be provided. 36 38 public static void main(String[] args) { 37 39 if (args.length < 5) -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Plugin.cs.frame
r9790 r10044 29 29 namespace HeuristicLab.Problems.Robocode 30 30 { 31 [Plugin("HeuristicLab.Problems.Robocode", "The Robocode problem for genetic programming.", "3.3. 8.$WCREV$")]31 [Plugin("HeuristicLab.Problems.Robocode", "The Robocode problem for genetic programming.", "3.3.9.$WCREV$")] 32 32 [PluginFile("HeuristicLab.Problems.Robocode-3.3.dll", PluginFileType.Assembly)] 33 33 [PluginDependency("HeuristicLab.Data", "3.3")] -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Properties/AssemblyInfo.cs.frame
r9781 r10044 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3. 8.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.9.$WCREV$")] 58 58 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Numerical Expressions/Number.cs
r10011 r10044 21 21 22 22 using System.Collections.Generic; 23 using System.Globalization; 23 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; … … 52 53 53 54 public override string Interpret(ISymbolicExpressionTreeNode node, IEnumerable<ISymbolicExpressionTreeNode> children) { 54 return ((NumberTreeNode)node).Value.ToString( );55 return ((NumberTreeNode)node).Value.ToString(CultureInfo.InvariantCulture); 55 56 } 56 57 } -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Numerical Expressions/ShotPower.cs
r10011 r10044 21 21 22 22 using System.Collections.Generic; 23 using System.Globalization; 23 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; … … 52 53 53 54 public override string Interpret(ISymbolicExpressionTreeNode node, IEnumerable<ISymbolicExpressionTreeNode> children) { 54 return ((ShotPowerTreeNode)node).Value.ToString( );55 return ((ShotPowerTreeNode)node).Value.ToString(CultureInfo.InvariantCulture); 55 56 } 56 57 }
Note: See TracChangeset
for help on using the changeset viewer.