Changeset 16565 for trunk/HeuristicLab.ParallelEngine
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.ParallelEngine/3.3/HeuristicLab.ParallelEngine-3.3.csproj
r11623 r16565 11 11 <RootNamespace>HeuristicLab.ParallelEngine</RootNamespace> 12 12 <AssemblyName>HeuristicLab.ParallelEngine-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 15 <TargetFrameworkProfile> … … 110 110 </PropertyGroup> 111 111 <ItemGroup> 112 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 113 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 114 </Reference> 115 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 116 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre01\lib\netstandard2.0\HEAL.Attic.dll</HintPath> 117 </Reference> 112 118 <Reference Include="System" /> 113 119 <Reference Include="System.Core" /> 120 <Reference Include="System.Drawing" /> 121 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 122 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 123 </Reference> 114 124 <Reference Include="System.Xml.Linq" /> 115 125 <Reference Include="System.Data.DataSetExtensions" /> … … 124 134 <ItemGroup> 125 135 <None Include="HeuristicLab.snk" /> 136 <None Include="packages.config" /> 126 137 <None Include="Plugin.cs.frame" /> 127 138 <None Include="Properties\AssemblyInfo.cs.frame" /> -
trunk/HeuristicLab.ParallelEngine/3.3/ParallelEngine.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.ParallelEngine { … … 33 33 /// This engine is suitable for parallel processing on shared memory systems which provide multiple cores. 34 34 /// </summary> 35 [Storable Class]35 [StorableType("3B3366ED-22C5-4E4F-B307-E08FACCF0E20")] 36 36 [Item("Parallel Engine", "Engine for parallel execution of algorithms using multiple threads (suitable for shared memory systems with multiple cores).")] 37 37 public class ParallelEngine : Engine { … … 52 52 53 53 [StorableConstructor] 54 protected ParallelEngine( bool deserializing) : base(deserializing) { }54 protected ParallelEngine(StorableConstructorFlag _) : base(_) { } 55 55 protected ParallelEngine(ParallelEngine original, Cloner cloner) 56 56 : base(original, cloner) { -
trunk/HeuristicLab.ParallelEngine/3.3/Plugin.cs.frame
r15589 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
trunk/HeuristicLab.ParallelEngine/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.