Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/09 02:44:23 (15 years ago)
Author:
swagner
Message:

Continued work on Optimizer and on adapting all views to the new MainForm concept (#770)

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  
    8686    <Compile Include="Properties\AssemblyInfo.cs" />
    8787    <Compile Include="ThreadParallelEngine.cs" />
    88     <Compile Include="ThreadParallelEngineEditor.cs">
     88    <Compile Include="ThreadParallelEngineView.cs">
    8989      <SubType>UserControl</SubType>
    9090    </Compile>
    91     <Compile Include="ThreadParallelEngineEditor.Designer.cs">
    92       <DependentUpon>ThreadParallelEngineEditor.cs</DependentUpon>
     91    <Compile Include="ThreadParallelEngineView.Designer.cs">
     92      <DependentUpon>ThreadParallelEngineView.cs</DependentUpon>
    9393    </Compile>
    9494  </ItemGroup>
  • trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngine.cs

    r2526 r2546  
    3232  /// Implementation of an engine being able to run in parallel with threads.
    3333  /// </summary>
     34  [Creatable("Engines")]
     35  [Item("Parallel Engine", "Engine for parallel execution of algorithms using multiple threads.")]
    3436  public class ThreadParallelEngine : EngineBase {
    3537    #region Inner Class Task
  • trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngineView.Designer.cs

    r2545 r2546  
    2121
    2222namespace HeuristicLab.ThreadParallelEngine {
    23   partial class ThreadParallelEngineEditor {
     23  partial class ThreadParallelEngineView {
    2424    /// <summary>
    2525    /// Required designer variable.
  • trunk/sources/HeuristicLab.ThreadParallelEngine/3.3/ThreadParallelEngineView.cs

    r2545 r2546  
    3636  /// </summary>
    3737  [Content(typeof(ThreadParallelEngine), true)]
    38   public partial class ThreadParallelEngineEditor : EngineBaseEditor {
     38  public partial class ThreadParallelEngineView : EngineBaseView {
    3939    /// <summary>
    4040    /// Gets or sets the ThreadParallelEngine to display.
     
    5050    /// Initializes a new instance of <see cref="ThreadParallelEngineEditor"/>.
    5151    /// </summary>
    52     public ThreadParallelEngineEditor() {
     52    public ThreadParallelEngineView() {
    5353      InitializeComponent();
    5454    }
     
    5858    /// </summary>
    5959    /// <param name="threadParallelEngine">The engine to represent visually.</param>
    60     public ThreadParallelEngineEditor(ThreadParallelEngine threadParallelEngine)
     60    public ThreadParallelEngineView(ThreadParallelEngine threadParallelEngine)
    6161      : this() {
    6262      ThreadParallelEngine = threadParallelEngine;
Note: See TracChangeset for help on using the changeset viewer.