Changeset 2520 for trunk/sources/HeuristicLab.ThreadParallelEngine
- Timestamp:
- 11/23/09 11:08:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.ThreadParallelEngine/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/HeuristicLab.ThreadParallelEngine-3.3.csproj
r1872 r2520 98 98 </ItemGroup> 99 99 <ItemGroup> 100 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 101 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 102 <Name>HeuristicLab.Core.Views-3.3</Name> 103 </ProjectReference> 100 104 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 101 105 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 102 106 <Name>HeuristicLab.Core-3.3</Name> 107 </ProjectReference> 108 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 109 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 110 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 111 </ProjectReference> 112 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 113 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 114 <Name>HeuristicLab.MainForm-3.2</Name> 103 115 </ProjectReference> 104 116 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/HeuristicLabThreadParallelEnginePlugin.cs
r1872 r2520 32 32 [PluginFile(Filename = "HeuristicLab.ThreadParallelEngine-3.3.dll", Filetype = PluginFileType.Assembly)] 33 33 [Dependency(Dependency = "HeuristicLab.Core-3.3")] 34 [Dependency(Dependency = "HeuristicLab.Core.Views-3.3")] 35 [Dependency(Dependency = "HeuristicLab.MainForm-3.2")] 36 [Dependency(Dependency = "HeuristicLab.MainForm.WindowsForms-3.2")] 34 37 public class HeuristicLabThreadParallelEnginePlugin : PluginBase { 35 38 } -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngine.cs
r1872 r2520 32 32 /// Implementation of an engine being able to run in parallel with threads. 33 33 /// </summary> 34 public class ThreadParallelEngine : EngineBase , IEditable{34 public class ThreadParallelEngine : EngineBase { 35 35 #region Inner Class Task 36 36 private class TaskList { … … 77 77 clone.myWorkers = Workers; 78 78 return clone; 79 }80 81 /// <summary>82 /// Creates a new instance of <see cref="ThreadParallelEngineEditor"/> to display the current83 /// instance.84 /// </summary>85 /// <returns>The created instance as <see cref="ThreadParallelEngineEditor"/>.</returns>86 public override IView CreateView() {87 return new ThreadParallelEngineEditor(this);88 }89 /// <summary>90 /// Creates a new instance of <see cref="ThreadParallelEngineEditor"/>.91 /// </summary>92 /// <returns>The created instance as <see cref="ThreadParallelEngineEditor"/>.</returns>93 public virtual IEditor CreateEditor() {94 return new ThreadParallelEngineEditor(this);95 79 } 96 80 -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngineEditor.cs
r1530 r2520 28 28 using System.Windows.Forms; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.Core.Views; 31 using HeuristicLab.MainForm; 30 32 31 33 namespace HeuristicLab.ThreadParallelEngine { … … 33 35 /// Visual representation of a <see cref="ThreadParallelEngine"/>. 34 36 /// </summary> 37 [Content(typeof(ThreadParallelEngine), true)] 35 38 public partial class ThreadParallelEngineEditor : EngineBaseEditor { 36 39 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.