Changeset 3797
- Timestamp:
- 05/12/10 16:40:16 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 6 deleted
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationTypeView.Designer.cs
r3436 r3797 20 20 #endregion 21 21 22 namespace HeuristicLab. Data.Views {23 partial class ComparisonView {22 namespace HeuristicLab.Encodings.PermutationEncoding.Views { 23 partial class PermutationTypeView { 24 24 /// <summary> 25 25 /// Required designer variable. -
trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationTypeView.cs
r3764 r3797 26 26 using HeuristicLab.MainForm; 27 27 28 namespace HeuristicLab. Data.Views {28 namespace HeuristicLab.Encodings.PermutationEncoding.Views { 29 29 [View("PermutationType View")] 30 30 [Content(typeof(PermutationType), true)] 31 public partial class ComparisonView : ItemView {31 public partial class PermutationTypeView : ItemView { 32 32 public new PermutationType Content { 33 33 get { return (PermutationType)base.Content; } … … 43 43 } 44 44 45 public ComparisonView() {45 public PermutationTypeView() { 46 46 InitializeComponent(); 47 47 valueComboBox.DataSource = Enum.GetValues(typeof(PermutationTypes)); 48 48 } 49 public ComparisonView(PermutationType content)49 public PermutationTypeView(PermutationType content) 50 50 : this() { 51 51 Content = content; -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.3.csproj
r3437 r3797 90 90 <Compile Include="HeuristicLabEncodingsSymbolicExpressionTreeEncodingViewsPlugin.cs" /> 91 91 <Compile Include="Properties\AssemblyInfo.cs" /> 92 <Compile Include="Properties\Resources.Designer.cs">93 <AutoGen>True</AutoGen>94 <DesignTime>True</DesignTime>95 <DependentUpon>Resources.resx</DependentUpon>96 </Compile>97 92 <Compile Include="SymbolicExpressionTreeChart.cs"> 98 93 <SubType>UserControl</SubType> … … 144 139 <None Include="Properties\AssemblyInfo.frame" /> 145 140 </ItemGroup> 146 <ItemGroup>147 <EmbeddedResource Include="GraphicalSymbolicExpressionTreeView.resx">148 <DependentUpon>GraphicalSymbolicExpressionTreeView.cs</DependentUpon>149 </EmbeddedResource>150 <EmbeddedResource Include="Properties\Resources.resx">151 <Generator>ResXFileCodeGenerator</Generator>152 <LastGenOutput>Resources.Designer.cs</LastGenOutput>153 </EmbeddedResource>154 <EmbeddedResource Include="SymbolicExpressionTreeChart.resx">155 <DependentUpon>SymbolicExpressionTreeChart.cs</DependentUpon>156 </EmbeddedResource>157 </ItemGroup>158 141 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 159 142 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
trunk/sources/HeuristicLab.MainForm/3.3/HeuristicLabMainFormPlugin.cs.frame
r3437 r3797 25 25 using HeuristicLab.PluginInfrastructure; 26 26 27 namespace HeuristicLab.M odeling.Database{27 namespace HeuristicLab.MainForm { 28 28 [Plugin("HeuristicLab.MainForm", "3.3.0.$WCREV$")] 29 29 [PluginFile("HeuristicLab.MainForm-3.3.dll", PluginFileType.Assembly)] -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/HeuristicLabOperatorsViewsGraphVisualizationPlugin.cs.frame
r3742 r3797 25 25 using HeuristicLab.PluginInfrastructure; 26 26 27 namespace HeuristicLab.Operators {27 namespace HeuristicLab.Operators.Views.GraphVisualization { 28 28 /// <summary> 29 29 /// Plugin class for HeuristicLab.Operators.Views plugin. -
trunk/sources/HeuristicLab.Operators.Views/3.3/HeuristicLabOperatorsViewsPlugin.cs.frame
r3437 r3797 22 22 using HeuristicLab.PluginInfrastructure; 23 23 24 namespace HeuristicLab.Operators {24 namespace HeuristicLab.Operators.Views { 25 25 /// <summary> 26 26 /// Plugin class for HeuristicLab.Operators.Views plugin. -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintCollectionView.Designer.cs
r3742 r3797 20 20 #endregion 21 21 22 namespace HeuristicLab. Core.Views {22 namespace HeuristicLab.Optimization.Views { 23 23 partial class RunCollectionConstraintCollectionView { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintCollectionView.cs
r3764 r3797 21 21 22 22 using System; 23 using System.Drawing; 23 24 using System.Windows.Forms; 24 25 using HeuristicLab.Collections; 26 using HeuristicLab.Core; 27 using HeuristicLab.Core.Views; 25 28 using HeuristicLab.MainForm; 26 29 using HeuristicLab.Optimization; 27 using System.Drawing;28 30 using HeuristicLab.PluginInfrastructure; 29 31 30 namespace HeuristicLab. Core.Views {32 namespace HeuristicLab.Optimization.Views { 31 33 [View("ConstraintCollection View")] 32 34 [Content(typeof(RunCollectionConstraintCollection), true)] -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.Designer.cs
r3764 r3797 68 68 this.runPage = new System.Windows.Forms.TabPage(); 69 69 this.constraintPage = new System.Windows.Forms.TabPage(); 70 this.runCollectionConstraintCollectionView = new HeuristicLab.Core.Views.RunCollectionConstraintCollectionView();70 this.runCollectionConstraintCollectionView = new RunCollectionConstraintCollectionView(); 71 71 this.clearButton = new System.Windows.Forms.Button(); 72 72 this.splitContainer.Panel1.SuspendLayout(); … … 301 301 protected TabPage runPage; 302 302 protected TabPage constraintPage; 303 protected HeuristicLab.Core.Views.RunCollectionConstraintCollectionView runCollectionConstraintCollectionView;303 protected RunCollectionConstraintCollectionView runCollectionConstraintCollectionView; 304 304 protected Button clearButton; 305 305 } -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IRealVectorDecoder.cs
r3742 r3797 27 27 using HeuristicLab.Data; 28 28 29 namespace HeuristicLab.Optimization .Interfaces{29 namespace HeuristicLab.Optimization { 30 30 public interface IRealVectorDecoder { 31 31 IParameter RealVectorParameter { get; } -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r3776 r3797 133 133 </Compile> 134 134 <Compile Include="Properties\AssemblyInfo.cs" /> 135 <Compile Include="Properties\Resources.Designer.cs">136 <AutoGen>True</AutoGen>137 <DesignTime>True</DesignTime>138 <DependentUpon>Resources.resx</DependentUpon>139 </Compile>140 135 <Compile Include="ToolBarItems\SaveToolBarItem.cs" /> 141 136 <Compile Include="ToolBarItems\OpenToolBarItem.cs" /> … … 192 187 <ItemGroup> 193 188 <EmbeddedResource Include="Documents\GA_TSP.hl" /> 194 <EmbeddedResource Include="Properties\Resources.resx">195 <Generator>ResXFileCodeGenerator</Generator>196 <LastGenOutput>Resources.Designer.cs</LastGenOutput>197 </EmbeddedResource>198 189 </ItemGroup> 199 190 <ItemGroup> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/SimplifiedSymbolicExpressionModelView.cs
r3566 r3797 29 29 using System.Windows.Forms; 30 30 using HeuristicLab.Common; 31 using HeuristicLab.Modeling;32 31 using HeuristicLab.MainForm; 33 32 using HeuristicLab.Problems.DataAnalysis; -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/SymbolicExpressionModelView.cs
r3566 r3797 29 29 using System.Windows.Forms; 30 30 using HeuristicLab.Common; 31 using HeuristicLab.Modeling;32 31 using HeuristicLab.MainForm; 33 32 using HeuristicLab.Problems.DataAnalysis; -
trunk/sources/HeuristicLab.Problems.Knapsack/3.3/Analyzers/BestKnapsackSolutionAnalyzer.cs
r3787 r3797 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 33 34 namespace HeuristicLab.Problems.Knapsack .Analyzers{34 namespace HeuristicLab.Problems.Knapsack { 35 35 /// <summary> 36 36 /// An operator for analyzing the best solution for a knapsack problem. -
trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackProblem.cs
r3789 r3797 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 33 using HeuristicLab.PluginInfrastructure; 34 using HeuristicLab.Problems.Knapsack.Analyzers;35 34 36 35 namespace HeuristicLab.Problems.Knapsack { -
trunk/sources/HeuristicLab.Problems.OneMax/3.3/Analyzers/BestOneMaxSolutionAnalyzer.cs
r3787 r3797 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 33 34 namespace HeuristicLab.Problems.OneMax .Analyzers{34 namespace HeuristicLab.Problems.OneMax { 35 35 /// <summary> 36 36 /// An operator for analyzing the best solution for a OneMax problem. -
trunk/sources/HeuristicLab.Problems.OneMax/3.3/OnemaxProblem.cs
r3789 r3797 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 33 using HeuristicLab.PluginInfrastructure; 34 using HeuristicLab.Problems.OneMax.Analyzers;35 34 36 35 namespace HeuristicLab.Problems.OneMax { -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Analyzers/BestSingleObjectiveTestFunctionSolutionAnalyzer.cs
r3787 r3797 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 33 34 namespace HeuristicLab.Problems.TestFunctions .Analyzers{34 namespace HeuristicLab.Problems.TestFunctions { 35 35 /// <summary> 36 36 /// An operator for analyzing the best solution for a SingleObjectiveTestFunction problem. -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IRealVectorPSODecoder.cs
r3742 r3797 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Core; 28 using HeuristicLab.Optimization.Interfaces;29 28 30 29 namespace HeuristicLab.Problems.TestFunctions { -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
r3789 r3797 33 33 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 34 34 using HeuristicLab.PluginInfrastructure; 35 using HeuristicLab.Operators;36 using HeuristicLab.Problems.TestFunctions.Analyzers;37 35 38 36 namespace HeuristicLab.Problems.TestFunctions {
Note: See TracChangeset
for help on using the changeset viewer.