Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/09 15:17:08 (15 years ago)
Author:
swagner
Message:

Removed plugin HeuristicLab.Constraints (#804)

Location:
trunk/sources/HeuristicLab.Operators/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/CombinedOperatorView.Designer.cs

    r2520 r2524  
    5252      this.variablesTabPage = new System.Windows.Forms.TabPage();
    5353      this.operatorBaseVariablesView = new HeuristicLab.Core.Views.OperatorBaseVariablesView();
    54       this.constraintsTabPage = new System.Windows.Forms.TabPage();
    55       this.constrainedItemBaseView = new HeuristicLab.Core.Views.ConstrainedItemBaseView();
    5654      this.descriptionTabPage = new System.Windows.Forms.TabPage();
    5755      this.descriptionTextBox = new System.Windows.Forms.TextBox();
     
    6260      this.variableInfosTabPage.SuspendLayout();
    6361      this.variablesTabPage.SuspendLayout();
    64       this.constraintsTabPage.SuspendLayout();
    6562      this.descriptionTabPage.SuspendLayout();
    6663      this.SuspendLayout();
     
    7168      this.tabControl.Controls.Add(this.variableInfosTabPage);
    7269      this.tabControl.Controls.Add(this.variablesTabPage);
    73       this.tabControl.Controls.Add(this.constraintsTabPage);
    7470      this.tabControl.Controls.Add(this.descriptionTabPage);
    7571      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     
    148144      this.operatorBaseVariablesView.TabIndex = 0;
    149145      //
    150       // constraintsTabPage
    151       //
    152       this.constraintsTabPage.Controls.Add(this.constrainedItemBaseView);
    153       this.constraintsTabPage.Location = new System.Drawing.Point(4, 22);
    154       this.constraintsTabPage.Name = "constraintsTabPage";
    155       this.constraintsTabPage.Padding = new System.Windows.Forms.Padding(3);
    156       this.constraintsTabPage.Size = new System.Drawing.Size(389, 309);
    157       this.constraintsTabPage.TabIndex = 3;
    158       this.constraintsTabPage.Text = "Constraints";
    159       this.constraintsTabPage.UseVisualStyleBackColor = true;
    160       //
    161       // constrainedItemBaseView
    162       //
    163       this.constrainedItemBaseView.Caption = "Constrained Item";
    164       this.constrainedItemBaseView.ConstrainedItem = null;
    165       this.constrainedItemBaseView.Dock = System.Windows.Forms.DockStyle.Fill;
    166       this.constrainedItemBaseView.Location = new System.Drawing.Point(3, 3);
    167       this.constrainedItemBaseView.Name = "constrainedItemBaseView";
    168       this.constrainedItemBaseView.Size = new System.Drawing.Size(383, 303);
    169       this.constrainedItemBaseView.TabIndex = 0;
    170       //
    171146      // descriptionTabPage
    172147      //
     
    226201      this.variableInfosTabPage.ResumeLayout(false);
    227202      this.variablesTabPage.ResumeLayout(false);
    228       this.constraintsTabPage.ResumeLayout(false);
    229203      this.descriptionTabPage.ResumeLayout(false);
    230204      this.descriptionTabPage.PerformLayout();
     
    239213    private System.Windows.Forms.TabPage variableInfosTabPage;
    240214    private System.Windows.Forms.TabPage variablesTabPage;
    241     private System.Windows.Forms.TabPage constraintsTabPage;
    242215    private System.Windows.Forms.TabPage descriptionTabPage;
    243216    private System.Windows.Forms.TextBox descriptionTextBox;
     
    245218    private HeuristicLab.Core.Views.OperatorBaseVariableInfosView operatorBaseVariableInfosView;
    246219    private HeuristicLab.Core.Views.OperatorBaseVariablesView operatorBaseVariablesView;
    247     private HeuristicLab.Core.Views.ConstrainedItemBaseView constrainedItemBaseView;
    248220    private System.Windows.Forms.Button removeVariableInfoButton;
    249221    private System.Windows.Forms.Button addVariableInfoButton;
  • trunk/sources/HeuristicLab.Operators/3.3/CombinedOperatorView.cs

    r2520 r2524  
    5555      operatorBaseVariableInfosView.Operator = null;
    5656      operatorBaseVariablesView.Operator = null;
    57       constrainedItemBaseView.ConstrainedItem = null;
    5857      CombinedOperator.DescriptionChanged -= new EventHandler(CombinedOperator_DescriptionChanged);
    5958      base.RemoveItemEvents();
     
    6968      operatorBaseVariableInfosView.Operator = CombinedOperator;
    7069      operatorBaseVariablesView.Operator = CombinedOperator;
    71       constrainedItemBaseView.ConstrainedItem = CombinedOperator;
    7270      CombinedOperator.DescriptionChanged += new EventHandler(CombinedOperator_DescriptionChanged);
    7371    }
  • trunk/sources/HeuristicLab.Operators/3.3/HeuristicLab.Operators-3.3.csproj

    r2520 r2524  
    139139  </ItemGroup>
    140140  <ItemGroup>
    141     <ProjectReference Include="..\..\HeuristicLab.Constraints\3.3\HeuristicLab.Constraints-3.3.csproj">
    142       <Project>{19C1E42A-4B48-4EFD-B697-899016F1C198}</Project>
    143       <Name>HeuristicLab.Constraints-3.3</Name>
    144     </ProjectReference>
    145141    <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj">
    146142      <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project>
  • trunk/sources/HeuristicLab.Operators/3.3/HeuristicLabOperatorsPlugin.cs

    r2520 r2524  
    3131  [ClassInfo(Name = "HeuristicLab.Operators-3.3")]
    3232  [PluginFile(Filename = "HeuristicLab.Operators-3.3.dll", Filetype = PluginFileType.Assembly)]
    33   [Dependency(Dependency = "HeuristicLab.Constraints-3.3")]
    3433  [Dependency(Dependency = "HeuristicLab.Core-3.3")]
    3534  [Dependency(Dependency = "HeuristicLab.Core.Views-3.3")]
Note: See TracChangeset for help on using the changeset viewer.