Free cookie consent management tool by TermsFeed Policy Generator

Changeset 643


Ignore:
Timestamp:
10/11/08 19:08:33 (16 years ago)
Author:
gkronber
Message:

created a branch for #177 restructuring of GP plugins

Location:
branches/GpPluginsRefactoringBranch
Files:
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/GpPluginsRefactoringBranch/HeuristicLab.CEDMA.Server/ServerForm.cs

    r556 r643  
    4646    private Database database;
    4747    private Store store;
    48     private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3";
     48    //private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3";
     49    private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/debugging.db3";
    4950    private static readonly string connectionString = "Data Source=\"" + dbFile + "\";Pooling=False";
    5051    private static readonly string rdfFile = AppDomain.CurrentDomain.BaseDirectory + "rdf_store.db3";
     
    8687      InitDatabase();
    8788      InitRdfStore();
    88       InitRunScheduler();
     89      //InitRunScheduler();
    8990
    9091      host = new ServiceHost(database, new Uri(addressTextBox.Text));
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Communication.Data/HeuristicLab.Communication.Data.csproj

    r584 r643  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{14E1C3E3-2496-436A-AE00-09F7B81DB15B}</ProjectGuid>
     
    5050    <WarningLevel>4</WarningLevel>
    5151  </PropertyGroup>
     52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     53    <DebugSymbols>true</DebugSymbols>
     54    <OutputPath>bin\x86\Debug\</OutputPath>
     55    <DefineConstants>DEBUG;TRACE</DefineConstants>
     56    <DebugType>full</DebugType>
     57    <PlatformTarget>x86</PlatformTarget>
     58    <ErrorReport>prompt</ErrorReport>
     59  </PropertyGroup>
     60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     61    <OutputPath>bin\x86\Release\</OutputPath>
     62    <DefineConstants>TRACE</DefineConstants>
     63    <Optimize>true</Optimize>
     64    <DebugType>pdbonly</DebugType>
     65    <PlatformTarget>x86</PlatformTarget>
     66    <ErrorReport>prompt</ErrorReport>
     67  </PropertyGroup>
    5268  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    5369  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Communication.Operators/HeuristicLab.Communication.Operators.csproj

    r584 r643  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}</ProjectGuid>
     
    3434    <ErrorReport>prompt</ErrorReport>
    3535    <WarningLevel>4</WarningLevel>
     36  </PropertyGroup>
     37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     38    <DebugSymbols>true</DebugSymbols>
     39    <OutputPath>bin\x86\Debug\</OutputPath>
     40    <DefineConstants>DEBUG;TRACE</DefineConstants>
     41    <DebugType>full</DebugType>
     42    <PlatformTarget>x86</PlatformTarget>
     43    <ErrorReport>prompt</ErrorReport>
     44  </PropertyGroup>
     45  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     46    <OutputPath>bin\x86\Release\</OutputPath>
     47    <DefineConstants>TRACE</DefineConstants>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3652  </PropertyGroup>
    3753  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Core/OperatorLibraryEditor.cs

    r2 r643  
    162162    }
    163163
    164 
    165164    #region TreeView Events
    166165    private void operatorsTreeView_AfterSelect(object sender, TreeViewEventArgs e) {
     
    238237    #endregion
    239238
    240 
    241239    #region Mouse Events
    242240    private void operatorsTreeView_MouseDown(object sender, MouseEventArgs e) {
     
    249247    }
    250248    #endregion
    251 
    252249
    253250    #region Context Menu Events
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Core/ScopeView.Designer.cs

    r2 r643  
    3232    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3333    protected override void Dispose(bool disposing) {
    34       if (scopesTreeView.Nodes.Count > 0) {
    35         RemoveTreeNode(scopesTreeView.Nodes[0]);
    36         scopesTreeView.Nodes.Clear();
    37       }
    38       if (disposing && (components != null)) {
     34      //if(scopesTreeView.Nodes.Count > 0) {
     35      //  RemoveTreeNode(scopesTreeView.Nodes[0]);
     36      //  scopesTreeView.Nodes.Clear();
     37      //}
     38      if(disposing && (components != null)) {
    3939        components.Dispose();
    4040      }
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Core/VariablesScopeView.cs

    r2 r643  
    7373        variablesListView.Items.Clear();
    7474        foreach (IVariable variable in Scope.Variables) {
    75           ListViewItem item = new ListViewItem();
    76           item.Text = variable.Name;
    77           item.Tag = variable;
    78           variablesListView.Items.Add(item);
    79           variable.NameChanged += new EventHandler(Variable_NameChanged);
     75          if (!variable.Name.StartsWith("##")) {
     76            ListViewItem item = new ListViewItem();
     77            item.Text = variable.Name;
     78            item.Tag = variable;
     79            variablesListView.Items.Add(item);
     80            variable.NameChanged += new EventHandler(Variable_NameChanged);
     81          }
    8082        }
    8183      }
     
    157159        Invoke(new OnVariableEventDelegate(Scope_VariableAdded), sender, e);
    158160      else {
    159         ListViewItem item = new ListViewItem();
    160         item.Text = e.Variable.Name;
    161         item.Tag = e.Variable;
    162         variablesListView.Items.Add(item);
    163         e.Variable.NameChanged += new EventHandler(Variable_NameChanged);
     161        if (!e.Variable.Name.StartsWith("##")) {
     162          ListViewItem item = new ListViewItem();
     163          item.Text = e.Variable.Name;
     164          item.Tag = e.Variable;
     165          variablesListView.Items.Add(item);
     166          e.Variable.NameChanged += new EventHandler(Variable_NameChanged);
     167        }
    164168      }
    165169    }
     
    168172        Invoke(new OnVariableEventDelegate(Scope_VariableRemoved), sender, e);
    169173      else {
    170         ListViewItem itemToDelete = null;
    171         foreach (ListViewItem item in variablesListView.Items) {
    172           if (item.Tag == e.Variable)
    173             itemToDelete = item;
    174         }
    175         e.Variable.NameChanged -= new EventHandler(Variable_NameChanged);
    176         variablesListView.Items.Remove(itemToDelete);
     174        if (!e.Variable.Name.StartsWith("##")) {
     175          ListViewItem itemToDelete = null;
     176          foreach (ListViewItem item in variablesListView.Items) {
     177            if (item.Tag == e.Variable)
     178              itemToDelete = item;
     179          }
     180          e.Variable.NameChanged -= new EventHandler(Variable_NameChanged);
     181          variablesListView.Items.Remove(itemToDelete);
     182        }
    177183      }
    178184    }
  • branches/GpPluginsRefactoringBranch/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj

    r637 r643  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{32DAA44F-944A-465F-A5C9-1C491EE4976D}</ProjectGuid>
     
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Visualization.Test/HeuristicLab.Visualization.Test.csproj

    r636 r643  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{23117533-8A91-474E-BBF6-C39485D0810A}</ProjectGuid>
     
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.Visualization.Test-3.2.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.Visualization.Test-3.2.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    7895    <EmbeddedResource Include="MainForm.resx">
    7996      <DependentUpon>MainForm.cs</DependentUpon>
     97      <SubType>Designer</SubType>
    8098    </EmbeddedResource>
    8199  </ItemGroup>
  • branches/GpPluginsRefactoringBranch/HeuristicLab.Visualization/HeuristicLab.Visualization.csproj

    r635 r643  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}</ProjectGuid>
     
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.Visualization-3.2.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.Visualization-3.2.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.