Changeset 4998
- Timestamp:
- 11/30/10 13:50:06 (14 years ago)
- Location:
- branches/HeuristicLab.DebugEngine
- Files:
-
- 6 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DebugEngine/DebugEngineView.Designer.cs
r4909 r4998 111 111 // 112 112 this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 113 this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));113 this.refreshButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh; 114 114 this.refreshButton.Location = new System.Drawing.Point(3, 511); 115 115 this.refreshButton.Name = "refreshButton"; … … 135 135 // 136 136 this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 137 this.stepButton.Image = ((System.Drawing.Image)(resources.GetObject("stepButton.Image")));137 this.stepButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveNext; 138 138 this.stepButton.Location = new System.Drawing.Point(33, 511); 139 139 this.stepButton.Name = "stepButton"; -
branches/HeuristicLab.DebugEngine/ExecutionStack.cs
r4993 r4998 1 using System.Collections.Generic; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System.Collections.Generic; 2 23 using System.Linq; 3 24 using HeuristicLab.Collections; -
branches/HeuristicLab.DebugEngine/ExecutionStackView.Designer.cs
r4909 r4998 1 namespace HeuristicLab.DebugEngine { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DebugEngine { 2 23 partial class ExecutionStackView { 3 24 /// <summary> -
branches/HeuristicLab.DebugEngine/ExecutionStackView.cs
r4909 r4998 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Drawing; -
branches/HeuristicLab.DebugEngine/HeuristicLab.DebugEngine.csproj
r4993 r4998 151 151 </Compile> 152 152 <Compile Include="Properties\AssemblyInfo.cs" /> 153 <Compile Include="Properties\Resources.Designer.cs">154 <AutoGen>True</AutoGen>155 <DesignTime>True</DesignTime>156 <DependentUpon>Resources.resx</DependentUpon>157 </Compile>158 153 <Compile Include="Utils.cs" /> 159 </ItemGroup>160 <ItemGroup>161 <EmbeddedResource Include="DebugEngineView.resx">162 <DependentUpon>DebugEngineView.cs</DependentUpon>163 </EmbeddedResource>164 <EmbeddedResource Include="ExecutionStackView.resx">165 <DependentUpon>ExecutionStackView.cs</DependentUpon>166 </EmbeddedResource>167 <EmbeddedResource Include="OperationContentView.resx">168 <DependentUpon>OperationContentView.cs</DependentUpon>169 </EmbeddedResource>170 <EmbeddedResource Include="OperatorTraceView.resx">171 <DependentUpon>OperatorTraceView.cs</DependentUpon>172 <SubType>Designer</SubType>173 </EmbeddedResource>174 <EmbeddedResource Include="Properties\Resources.resx">175 <Generator>ResXFileCodeGenerator</Generator>176 <LastGenOutput>Resources.Designer.cs</LastGenOutput>177 </EmbeddedResource>178 154 </ItemGroup> 179 155 <ItemGroup> -
branches/HeuristicLab.DebugEngine/HeuristicLabDebugEnginePlugin.cs.frame
r4743 r4998 31 31 [PluginDependency("HeuristicLab.Core", "3.3")] 32 32 [PluginDependency("HeuristicLab.Core.Views", "3.3")] 33 [PluginDependency("HeuristicLab.Data", "3.3")] 33 [PluginDependency("HeuristicLab.MainForm", "3.3")] 34 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 34 35 [PluginDependency("HeuristicLab.Operators", "3.3")] 35 [PluginDependency("HeuristicLab.Parameters", "3.3")]36 36 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 37 public class HeuristicLabAnalysisFitnessLandscapePlugin : PluginBase { } -
branches/HeuristicLab.DebugEngine/OperationChangedEventArgs.cs
r4871 r4998 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 5 23 using HeuristicLab.Core; 6 24 -
branches/HeuristicLab.DebugEngine/OperationContent.cs
r4996 r4998 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 5 22 using HeuristicLab.Common; 6 23 using HeuristicLab.Core; -
branches/HeuristicLab.DebugEngine/OperationContentView.Designer.cs
r4993 r4998 1 namespace HeuristicLab.DebugEngine { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DebugEngine { 2 23 partial class OperationContentView { 3 24 /// <summary> -
branches/HeuristicLab.DebugEngine/OperationContentView.cs
r4993 r4998 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Drawing; 3 24 using System.Text; -
branches/HeuristicLab.DebugEngine/OperatorTrace.cs
r4996 r4998 1 using System.Collections.Generic; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System.Collections.Generic; 2 23 using System.Linq; 3 24 using HeuristicLab.Collections; … … 20 41 21 42 public OperatorTrace() { 22 43 parents = new Dictionary<IAtomicOperation, IAtomicOperation>(); 23 44 } 24 45 25 public OperatorTrace(int capacity) : base(capacity) { 26 parents = new Dictionary<IAtomicOperation, IAtomicOperation>(); 46 public OperatorTrace(int capacity) 47 : base(capacity) { 48 parents = new Dictionary<IAtomicOperation, IAtomicOperation>(); 27 49 } 28 50 29 public OperatorTrace(IEnumerable<IOperator> collection): base(collection) { 30 parents = new Dictionary<IAtomicOperation, IAtomicOperation>(); 51 public OperatorTrace(IEnumerable<IOperator> collection) 52 : base(collection) { 53 parents = new Dictionary<IAtomicOperation, IAtomicOperation>(); 31 54 } 32 55 -
branches/HeuristicLab.DebugEngine/OperatorTraceView.Designer.cs
r4909 r4998 1 namespace HeuristicLab.DebugEngine { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DebugEngine { 2 23 partial class OperatorTraceView { 3 24 /// <summary> -
branches/HeuristicLab.DebugEngine/OperatorTraceView.cs
r4993 r4998 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Windows.Forms; 3 24 using HeuristicLab.Collections; -
branches/HeuristicLab.DebugEngine/Utils.cs
r4996 r4998 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Text; 3 24 using System.Text.RegularExpressions; 25 using HeuristicLab.Core; 4 26 using HeuristicLab.Persistence.Auxiliary; 5 using HeuristicLab.Core;6 27 7 28 namespace HeuristicLab.DebugEngine {
Note: See TracChangeset
for help on using the changeset viewer.