Changeset 2546 for trunk/sources/HeuristicLab.ThreadParallelEngine
- Timestamp:
- 12/07/09 02:44:23 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.ThreadParallelEngine/3.3
- Files:
-
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/HeuristicLab.ThreadParallelEngine-3.3.csproj
r2520 r2546 86 86 <Compile Include="Properties\AssemblyInfo.cs" /> 87 87 <Compile Include="ThreadParallelEngine.cs" /> 88 <Compile Include="ThreadParallelEngine Editor.cs">88 <Compile Include="ThreadParallelEngineView.cs"> 89 89 <SubType>UserControl</SubType> 90 90 </Compile> 91 <Compile Include="ThreadParallelEngine Editor.Designer.cs">92 <DependentUpon>ThreadParallelEngine Editor.cs</DependentUpon>91 <Compile Include="ThreadParallelEngineView.Designer.cs"> 92 <DependentUpon>ThreadParallelEngineView.cs</DependentUpon> 93 93 </Compile> 94 94 </ItemGroup> -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngine.cs
r2526 r2546 32 32 /// Implementation of an engine being able to run in parallel with threads. 33 33 /// </summary> 34 [Creatable("Engines")] 35 [Item("Parallel Engine", "Engine for parallel execution of algorithms using multiple threads.")] 34 36 public class ThreadParallelEngine : EngineBase { 35 37 #region Inner Class Task -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngineView.Designer.cs
r2545 r2546 21 21 22 22 namespace HeuristicLab.ThreadParallelEngine { 23 partial class ThreadParallelEngine Editor{23 partial class ThreadParallelEngineView { 24 24 /// <summary> 25 25 /// Required designer variable. -
trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngineView.cs
r2545 r2546 36 36 /// </summary> 37 37 [Content(typeof(ThreadParallelEngine), true)] 38 public partial class ThreadParallelEngine Editor : EngineBaseEditor{38 public partial class ThreadParallelEngineView : EngineBaseView { 39 39 /// <summary> 40 40 /// Gets or sets the ThreadParallelEngine to display. … … 50 50 /// Initializes a new instance of <see cref="ThreadParallelEngineEditor"/>. 51 51 /// </summary> 52 public ThreadParallelEngine Editor() {52 public ThreadParallelEngineView() { 53 53 InitializeComponent(); 54 54 } … … 58 58 /// </summary> 59 59 /// <param name="threadParallelEngine">The engine to represent visually.</param> 60 public ThreadParallelEngine Editor(ThreadParallelEngine threadParallelEngine)60 public ThreadParallelEngineView(ThreadParallelEngine threadParallelEngine) 61 61 : this() { 62 62 ThreadParallelEngine = threadParallelEngine;
Note: See TracChangeset
for help on using the changeset viewer.