- Timestamp:
- 10/15/15 16:39:12 (9 years ago)
- Location:
- branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/BattleRunnerDialog.Designer.cs
r13011 r13013 19 19 */ 20 20 #endregion 21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 22 22 partial class BattleRunnerDialog { 23 23 /// <summary> -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/BattleRunnerDialog.cs
r13011 r13013 23 23 using System.Windows.Forms; 24 24 using HeuristicLab.Common; 25 using HeuristicLab.Problems.GeneticProgramming.Robo Code;25 using HeuristicLab.Problems.GeneticProgramming.Robocode; 26 26 27 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {27 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 28 28 public partial class BattleRunnerDialog : Form { 29 29 public int NrOfRounds { -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.Designer.cs
r13011 r13013 19 19 */ 20 20 #endregion 21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 22 22 partial class CodeNodeView { 23 23 /// <summary> -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/CodeNodeView.cs
r13011 r13013 23 23 using HeuristicLab.Core.Views; 24 24 using HeuristicLab.MainForm; 25 using HeuristicLab.Problems.GeneticProgramming.Robo Code;25 using HeuristicLab.Problems.GeneticProgramming.Robocode; 26 26 27 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {27 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 28 28 [View("CodeNode View")] 29 29 [Content(typeof(CodeNode), IsDefaultView = true)] -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/EnemyCollectionView.Designer.cs
r13011 r13013 21 21 22 22 23 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {23 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 24 24 partial class EnemyCollectionView { 25 25 /// <summary> -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/EnemyCollectionView.cs
r13011 r13013 20 20 #endregion 21 21 22 using System.Windows.Forms; 22 using HeuristicLab.Core.Views; 23 using HeuristicLab.Data; 23 24 using HeuristicLab.MainForm; 24 using HeuristicLab.Problems.GeneticProgramming.Robo Code;25 using HeuristicLab.Problems.GeneticProgramming.Robocode; 25 26 26 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {27 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 27 28 [View("EnemyCollection View")] 28 29 [Content(typeof(EnemyCollection), true)] 29 public partial class EnemyCollectionView : C ore.Views.CheckedItemListView<HeuristicLab.Data.StringValue> {30 public partial class EnemyCollectionView : CheckedItemListView<StringValue> { 30 31 public new EnemyCollection Content { 31 32 get { return (EnemyCollection)base.Content; } -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/Plugin.cs.frame
r13011 r13013 27 27 using HeuristicLab.PluginInfrastructure; 28 28 29 namespace HeuristicLab.Problems.GeneticProgramming.Robo Code.Views29 namespace HeuristicLab.Problems.GeneticProgramming.Robocode.Views 30 30 { 31 31 [Plugin("HeuristicLab.Problems.Robocode.Views", "The Robocode problem for genetic programming.", "3.3.9.$WCREV$")] -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.Designer.cs
r13011 r13013 19 19 */ 20 20 #endregion 21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {21 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 22 22 partial class SolutionCodeView { 23 23 /// <summary> -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.cs
r13011 r13013 25 25 using HeuristicLab.Core.Views; 26 26 using HeuristicLab.MainForm; 27 using HeuristicLab.Problems.GeneticProgramming.Robo Code;27 using HeuristicLab.Problems.GeneticProgramming.Robocode; 28 28 29 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {29 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 30 30 [View("Robocode Tank Code View")] 31 31 [Content(typeof(Solution), IsDefaultView = true)] … … 45 45 protected override void OnContentChanged() { 46 46 base.OnContentChanged(); 47 if (Content == null) { 48 programCode.Text = string.Empty; 49 } else { 50 programCode.Text = Interpreter.InterpretProgramTree(Content.Tree.Root, programName); 51 } 47 programCode.Text = Content == null ? string.Empty : Interpreter.InterpretProgramTree(Content.Tree.Root, programName); 52 48 } 53 49 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionProgramView.Designer.cs
r13011 r13013 22 22 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views; 23 23 24 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {24 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 25 25 partial class SolutionProgramView { 26 26 private void InitializeComponent() { -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionProgramView.cs
r13011 r13013 22 22 using HeuristicLab.Core.Views; 23 23 using HeuristicLab.MainForm; 24 using HeuristicLab.Problems.GeneticProgramming.Robo Code;24 using HeuristicLab.Problems.GeneticProgramming.Robocode; 25 25 26 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robo Code {26 namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode { 27 27 [View("Robocode Tank Program Tree View")] 28 28 [Content(typeof(Solution), IsDefaultView = false)] … … 39 39 protected override void OnContentChanged() { 40 40 base.OnContentChanged(); 41 if (Content == null) { 42 graphTreeView.Content = null; 43 } else { 44 graphTreeView.Content = Content.Tree; 45 } 41 graphTreeView.Content = Content == null ? null : Content.Tree; 46 42 } 47 43 }
Note: See TracChangeset
for help on using the changeset viewer.