- Timestamp:
- 05/17/11 10:59:54 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HeuristicLab.HiveEngine-3.4.csproj
r6111 r6212 102 102 </PropertyGroup> 103 103 <ItemGroup> 104 <Reference Include="HeuristicLab.Clients.Common-3.3">105 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Clients.Common-3.3.dll</HintPath>106 </Reference>107 104 <Reference Include="HeuristicLab.Collections-3.3"> 108 105 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath> 109 106 </Reference> 110 <Reference Include="HeuristicLab.Common-3.3"> 111 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath> 112 </Reference> 113 <Reference Include="HeuristicLab.Common.Resources-3.3"> 114 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath> 107 <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 108 <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath> 115 109 </Reference> 116 110 <Reference Include="HeuristicLab.Core-3.3"> 117 111 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath> 118 </Reference>119 <Reference Include="HeuristicLab.Core.Views-3.3">120 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath>121 </Reference>122 <Reference Include="HeuristicLab.MainForm-3.3">123 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm-3.3.dll</HintPath>124 </Reference>125 <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3">126 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>127 </Reference>128 <Reference Include="HeuristicLab.Optimization.Views-3.3">129 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization.Views-3.3.dll</HintPath>130 112 </Reference> 131 113 <Reference Include="HeuristicLab.Persistence-3.3"> … … 152 134 <Compile Include="HeuristicLabHiveEnginePlugin.cs" /> 153 135 <Compile Include="Exceptions\ScopeMergeException.cs" /> 154 <Compile Include="Views\HiveEngineView.cs">155 <SubType>UserControl</SubType>156 </Compile>157 <Compile Include="Views\HiveEngineView.Designer.cs">158 <DependentUpon>HiveEngineView.cs</DependentUpon>159 </Compile>160 136 <None Include="HeuristicLabHiveEnginePlugin.cs.frame" /> 161 137 <Compile Include="HiveEngine.cs" /> … … 168 144 <ItemGroup /> 169 145 <ItemGroup> 170 <ProjectReference Include="..\..\HeuristicLab.Clients.Hive.Views\3.4\HeuristicLab.Clients.Hive.Views-3.4.csproj">171 <Project>{E1D6C801-892A-406A-B606-F158E36DD3C3}</Project>172 <Name>HeuristicLab.Clients.Hive.Views-3.4</Name>173 </ProjectReference>174 146 <ProjectReference Include="..\..\HeuristicLab.Clients.Hive\3.4\HeuristicLab.Clients.Hive-3.4.csproj"> 175 147 <Project>{B5EF1E5A-9F3D-40B9-B4B0-30AADF2E2CEB}</Project> … … 180 152 <Name>HeuristicLab.Hive-3.4</Name> 181 153 </ProjectReference> 182 </ItemGroup>183 <ItemGroup>184 <EmbeddedResource Include="Views\HiveEngineView.resx">185 <DependentUpon>HiveEngineView.cs</DependentUpon>186 </EmbeddedResource>187 154 </ItemGroup> 188 155 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HeuristicLabHiveEnginePlugin.cs.frame
r6033 r6212 25 25 [Plugin("HeuristicLab.HiveEngine", "3.4.0.$WCREV$")] 26 26 [PluginFile("HeuristicLab.HiveEngine-3.4.dll", PluginFileType.Assembly)] 27 [PluginDependency("HeuristicLab.Clients.Common", "3.3")]28 27 [PluginDependency("HeuristicLab.Clients.Hive", "3.4")] 29 [PluginDependency("HeuristicLab.Clients.Hive.Views", "3.4")]30 28 [PluginDependency("HeuristicLab.Collections", "3.3")] 31 29 [PluginDependency("HeuristicLab.Common", "3.3")] 32 [PluginDependency("HeuristicLab.Common.Resources", "3.3")]33 30 [PluginDependency("HeuristicLab.Core", "3.3")] 34 [PluginDependency("HeuristicLab.Core.Views", "3.3")]35 31 [PluginDependency("HeuristicLab.Hive", "3.4")] 36 [PluginDependency("HeuristicLab.MainForm", "3.3")]37 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]38 [PluginDependency("HeuristicLab.Optimization.Views", "3.3")]39 32 [PluginDependency("HeuristicLab.Persistence", "3.3")] 40 33 [PluginDependency("HeuristicLab.Random", "3.3")] -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HiveEngine.cs
r6200 r6212 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2011 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.Linq;
Note: See TracChangeset
for help on using the changeset viewer.