Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/14 05:15:09 (10 years ago)
Author:
swagner
Message:

#2205: Restructured solution and projects and switched all projects to .NET 4.5

Location:
branches/OptimizationNetworks/HeuristicLab.Networks
Files:
1 added
7 deleted
1 edited
26 copied
1 moved

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/AlgorithmNode.cs

    r11576 r11577  
    2424using HeuristicLab.Core.Networks;
    2525using HeuristicLab.Operators;
     26using HeuristicLab.Optimization;
    2627using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2728using System;
     
    3031using System.Threading;
    3132
    32 namespace HeuristicLab.Optimization.Networks {
     33namespace HeuristicLab.Networks {
    3334  [Item("AlgorithmNode", "A node of an optimization network which contains a HeuristicLab algorithm.")]
    3435  [StorableClass]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/ConfigurationPort.cs

    r11576 r11577  
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2626
    27 namespace HeuristicLab.Optimization.Networks {
     27namespace HeuristicLab.Networks {
    2828  [Item("ConfigurationPort", "A port of an optimization network node which triggers configuration changes.")]
    2929  [StorableClass]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/ExecutionPort.cs

    r11576 r11577  
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2626
    27 namespace HeuristicLab.Optimization.Networks {
     27namespace HeuristicLab.Networks {
    2828  [Item("ExecutionPort", "A port of an optimization network node which triggers execution.")]
    2929  [StorableClass]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/HeuristicLab.Networks-3.3.csproj

    r11576 r11577  
    88    <OutputType>Library</OutputType>
    99    <AppDesignerFolder>Properties</AppDesignerFolder>
    10     <RootNamespace>HeuristicLab.Optimization.Networks</RootNamespace>
    11     <AssemblyName>HeuristicLab.Optimization.Networks-3.3</AssemblyName>
     10    <RootNamespace>HeuristicLab.Networks</RootNamespace>
     11    <AssemblyName>HeuristicLab.Networks-3.3</AssemblyName>
    1212    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    1313    <FileAlignment>512</FileAlignment>
     
    9090  </ItemGroup>
    9191  <ItemGroup>
    92     <Compile Include="Core.Networks\IConnectablePort.cs" />
    93     <Compile Include="Core.Networks\IProgrammableNetwork.cs" />
    94     <Compile Include="Core.Networks\ProgrammableNetwork.cs" />
    95     <EmbeddedResource Include="Core.Networks\ProgrammableNetworkTemplate.cs" />
    96     <Compile Include="Core\IProgrammableItem.cs" />
    97     <Compile Include="Core.Networks\IProgrammableNode.cs" />
    98     <Compile Include="Core.Networks\IProgrammableNetworkItem.cs" />
    99     <Compile Include="Core.Networks\IUserDefinedMessagePort.cs" />
    100     <Compile Include="Core.Networks\IMessagePort.cs" />
    101     <Compile Include="Core.Networks\IUserDefinedNetwork.cs" />
    102     <Compile Include="Core.Networks\IUserDefinedNode.cs" />
    103     <Compile Include="Core.Networks\MessagePort.cs" />
    104     <EmbeddedResource Include="Core.Networks\ProgrammableNetworkItemTemplate.cs" />
    105     <Compile Include="Core.Networks\ProgrammableNetworkItem.cs" />
    106     <EmbeddedResource Include="Core.Networks\ProgrammableNodeTemplate.cs" />
    107     <Compile Include="Core.Networks\UserDefinedNetwork.cs" />
    108     <Compile Include="Core.Networks\IMessage.cs" />
    109     <Compile Include="Core.Networks\IMessageValue.cs" />
    110     <Compile Include="Core.Networks\INetwork.cs" />
    111     <Compile Include="Core.Networks\INetworkItem.cs" />
    112     <Compile Include="Core.Networks\INode.cs" />
    113     <Compile Include="Core.Networks\IParameterizedPort.cs" />
    114     <Compile Include="Core.Networks\IPort.cs" />
    115     <Compile Include="Core.Networks\IPortParameter.cs" />
    116     <Compile Include="Core.Networks\Message.cs" />
    117     <Compile Include="Core.Networks\MessageCollection.cs" />
    118     <Compile Include="Core.Networks\MessageValue.cs" />
    119     <Compile Include="Core.Networks\MessageValueCollection.cs" />
    120     <Compile Include="Core.Networks\Network.cs" />
    121     <Compile Include="Core.Networks\NetworkItem.cs" />
    122     <Compile Include="Core.Networks\Node.cs" />
    123     <Compile Include="Core.Networks\NodeCollection.cs" />
    124     <Compile Include="Core.Networks\ParameterizedPort.cs" />
    125     <Compile Include="Core.Networks\Port.cs" />
    126     <Compile Include="Core.Networks\PortCollection.cs" />
    127     <Compile Include="Core.Networks\PortParameter.cs" />
    128     <Compile Include="Core.Networks\PortParameterCollection.cs" />
    129     <Compile Include="Core.Networks\PortParameterType.cs" />
    130     <Compile Include="Core.Networks\UserDefinedMessagePort.cs" />
    131     <Compile Include="Core.Networks\ProgrammableNode.cs" />
    132     <Compile Include="Core.Networks\UserDefinedNode.cs" />
    133     <Compile Include="Operators\HookOperator.cs" />
    134     <Compile Include="Operators\IHookOperator.cs" />
    135     <EmbeddedResource Include="Optimization.Networks.KSPTSP\KSPTSPConnectorCode.cs" />
    136     <Compile Include="Optimization.Networks.KSPTSP\KSPTSPConnector.cs" />
    137     <EmbeddedResource Include="Optimization.Networks.KSPTSP\KSPTSPNetworkCode.cs" />
    138     <Compile Include="Optimization.Networks.KSPTSP\KSPTSPNetwork.cs" />
    139     <Compile Include="Optimization.Networks\AlgorithmNode.cs" />
    140     <Compile Include="Optimization.Networks\ConfigurationPort.cs" />
    141     <Compile Include="Optimization.Networks\ExecutionPort.cs" />
    142     <Compile Include="Optimization.Networks\IAlgorithmNode.cs" />
    143     <Compile Include="Optimization.Networks\IConfigurationPort.cs" />
    144     <Compile Include="Optimization.Networks\IExecutionPort.cs" />
     92    <Compile Include="AlgorithmNode.cs" />
     93    <Compile Include="ConfigurationPort.cs" />
     94    <Compile Include="ExecutionPort.cs" />
     95    <Compile Include="IAlgorithmNode.cs" />
     96    <Compile Include="IConfigurationPort.cs" />
     97    <Compile Include="IExecutionPort.cs" />
     98    <Compile Include="IUserDefinedMessagePort.cs" />
     99    <Compile Include="KSPTSPConnector.cs" />
     100    <EmbeddedResource Include="KSPTSPConnectorCode.cs" />
     101    <Compile Include="KSPTSPNetwork.cs" />
     102    <EmbeddedResource Include="KSPTSPNetworkCode.cs" />
    145103    <Compile Include="Plugin.cs" />
     104    <Compile Include="Programmable\IProgrammableNetwork.cs" />
     105    <Compile Include="Programmable\IProgrammableNetworkItem.cs" />
     106    <Compile Include="Programmable\IProgrammableNode.cs" />
     107    <Compile Include="Programmable\IUserDefinedNetwork.cs" />
     108    <Compile Include="Programmable\IUserDefinedNode.cs" />
     109    <Compile Include="Programmable\ProgrammableNetwork.cs" />
     110    <EmbeddedResource Include="Programmable\ProgrammableNetworkCode.cs" />
     111    <Compile Include="Programmable\ProgrammableNetworkItem.cs" />
     112    <EmbeddedResource Include="Programmable\ProgrammableNetworkItemCode.cs" />
     113    <Compile Include="Programmable\ProgrammableNode.cs" />
     114    <EmbeddedResource Include="Programmable\ProgrammableNodeCode.cs" />
     115    <Compile Include="Programmable\UserDefinedNetwork.cs" />
     116    <Compile Include="Programmable\UserDefinedNode.cs" />
    146117    <Compile Include="Properties\AssemblyInfo.cs" />
     118    <Compile Include="UserDefinedMessagePort.cs" />
    147119  </ItemGroup>
    148120  <ItemGroup>
    149     <None Include="ClassDiagram.cd" />
    150121    <None Include="HeuristicLab.snk" />
    151122    <None Include="Plugin.cs.frame" />
     
    203174      <Private>False</Private>
    204175    </ProjectReference>
     176    <ProjectReference Include="..\..\HeuristicLab.Scripting\3.3\HeuristicLab.Scripting-3.3.csproj">
     177      <Project>{21977cc3-1757-4b3b-87bd-ff817aaa900f}</Project>
     178      <Name>HeuristicLab.Scripting-3.3</Name>
     179    </ProjectReference>
    205180  </ItemGroup>
    206181  <ItemGroup />
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/IAlgorithmNode.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Core.Networks;
     23using HeuristicLab.Optimization;
    2324using System;
    2425
    25 namespace HeuristicLab.Optimization.Networks {
     26namespace HeuristicLab.Networks {
    2627  public interface IAlgorithmNode : INode {
    2728    new PortCollection Ports { get; }
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/IConfigurationPort.cs

    r11576 r11577  
    2222using HeuristicLab.Core.Networks;
    2323
    24 namespace HeuristicLab.Optimization.Networks {
     24namespace HeuristicLab.Networks {
    2525  public interface IConfigurationPort : IMessagePort { }
    2626}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/IExecutionPort.cs

    r11576 r11577  
    2222using HeuristicLab.Core.Networks;
    2323
    24 namespace HeuristicLab.Optimization.Networks {
     24namespace HeuristicLab.Networks {
    2525  public interface IExecutionPort : IMessagePort { }
    2626}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/IUserDefinedMessagePort.cs

    r11576 r11577  
    2020#endregion
    2121
     22using HeuristicLab.Core.Networks;
    2223
    23 namespace HeuristicLab.Core.Networks {
     24namespace HeuristicLab.Networks {
    2425  public interface IUserDefinedMessagePort : IMessagePort {
    2526    new PortParameterCollection Parameters { get; }
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPConnector.cs

    r11576 r11577  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Core.Networks;
     24using HeuristicLab.Networks.Programmable;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using System.Drawing;
    2627
    27 namespace HeuristicLab.Optimization.Networks.KSPTSP {
     28namespace HeuristicLab.Networks {
    2829  [Item("KSPTSPConnector", "A node of an optimization network which connects a KSP and a TSP.")]
    2930  [StorableClass]
    3031  public class KSPTSPConnector : ProgrammableNode {
     32    public static new Image StaticItemImage {
     33      get { return HeuristicLab.Common.Resources.VSImageLibrary.RadialChart; }
     34    }
     35
    3136    protected override string CodeTemplate {
    32       get { return ReadCodeTemplate("HeuristicLab.Optimization.Networks.Optimization.Networks.KSPTSP.KSPTSPConnectorCode.cs"); }
     37      get { return ReadCodeTemplate("HeuristicLab.Networks.KSPTSPConnectorCode.cs"); }
    3338    }
    3439
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPConnectorCode.cs

    r11576 r11577  
    2525using HeuristicLab.Data;
    2626using HeuristicLab.Encodings.BinaryVectorEncoding;
     27using HeuristicLab.Networks.Programmable;
    2728using HeuristicLab.Problems.TravelingSalesman;
    2829using System.Drawing;
     
    3031using System.Threading;
    3132
    32 namespace HeuristicLab.Optimization.Networks.KSPTSP {
     33namespace HeuristicLab.Networks {
    3334  [Item("KSPTSPConnector", "A node of an optimization network which connects a KSP and a TSP.")]
    3435  public class CompiledKSPTSPConnector : ProgrammableNode.CompiledProgrammableNode {
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPNetwork.cs

    r11576 r11577  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Core.Networks;
     24using HeuristicLab.Networks.Programmable;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2626using System.Drawing;
    2727
    28 namespace HeuristicLab.Optimization.Networks.KSPTSP {
     28namespace HeuristicLab.Networks {
    2929  [Item("KSPTSPNetwork", "An optimization network which connects a KSP and a TSP.")]
    3030  [Creatable("Optimization Networks")]
     
    3636
    3737    protected override string CodeTemplate {
    38       get { return ReadCodeTemplate("HeuristicLab.Optimization.Networks.Optimization.Networks.KSPTSP.KSPTSPNetworkCode.cs"); }
     38      get { return ReadCodeTemplate("HeuristicLab.Networks.KSPTSPNetworkCode.cs"); }
    3939    }
    4040
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPNetworkCode.cs

    r11576 r11577  
    2626using HeuristicLab.Data;
    2727using HeuristicLab.Encodings.BinaryVectorEncoding;
     28using HeuristicLab.Networks.Programmable;
    2829using HeuristicLab.Operators;
    2930using HeuristicLab.Parameters;
     
    3435using System.Linq;
    3536
    36 namespace HeuristicLab.Optimization.Networks.KSPTSP {
     37namespace HeuristicLab.Networks {
    3738  [Item("KSPTSPNetwork", "An optimization network which connects a KSP and a TSP.")]
    3839  public class CompiledKSPTSPNetwork : ProgrammableNetwork.CompiledProgrammableNetwork {
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Plugin.cs.frame

    r11565 r11577  
    2222using HeuristicLab.PluginInfrastructure;
    2323
    24 namespace HeuristicLab.Optimization.Networks {
     24namespace HeuristicLab.Networks {
    2525  /// <summary>
    26   /// Plugin class for HeuristicLab.Optimization.Networks plugin.
     26  /// Plugin class for HeuristicLab.Networks plugin.
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Optimization.Networks", "3.3.11.$WCREV$")]
    29   [PluginFile("HeuristicLab.Optimization.Networks-3.3.dll", PluginFileType.Assembly)]
     28  [Plugin("HeuristicLab.Networks", "3.3.11.$WCREV$")]
     29  [PluginFile("HeuristicLab.Networks-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3131  [PluginDependency("HeuristicLab.Common", "3.3")]
     
    3737  [PluginDependency("HeuristicLab.Parameters", "3.3")]
    3838  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    39   public class HeuristicLabOptimizationNetworksPlugin : PluginBase {
     39  [PluginDependency("HeuristicLab.Scripting", "3.3")]
     40  public class HeuristicLabNetworksPlugin : PluginBase {
    4041  }
    4142}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/IProgrammableNetwork.cs

    r11576 r11577  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Networks {
     22using HeuristicLab.Core.Networks;
     23
     24namespace HeuristicLab.Networks.Programmable {
    2325  public interface IProgrammableNetwork : IProgrammableNode, INetwork { }
    2426}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/IProgrammableNetworkItem.cs

    r11576 r11577  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Networks {
     22using HeuristicLab.Core.Networks;
     23using HeuristicLab.Scripting;
     24
     25namespace HeuristicLab.Networks.Programmable {
    2326  public interface IProgrammableNetworkItem : INetworkItem, IProgrammableItem { }
    2427}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/IProgrammableNode.cs

    r11576 r11577  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Networks {
     22using HeuristicLab.Core.Networks;
     23
     24namespace HeuristicLab.Networks.Programmable {
    2325  public interface IProgrammableNode : IProgrammableNetworkItem, INode { }
    2426}
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/IUserDefinedNetwork.cs

    r11576 r11577  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Networks {
     22using HeuristicLab.Core.Networks;
     23
     24namespace HeuristicLab.Networks.Programmable {
    2325  public interface IUserDefinedNetwork : IProgrammableNetwork {
    2426    new PortCollection Ports { get; }
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/IUserDefinedNode.cs

    r11576 r11577  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Networks {
     22using HeuristicLab.Core.Networks;
     23
     24namespace HeuristicLab.Networks.Programmable {
    2325  public interface IUserDefinedNode : IProgrammableNode {
    2426    new PortCollection Ports { get; }
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNetwork.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426using System.Collections.Generic;
    2527using System.Linq;
    2628
    27 namespace HeuristicLab.Core.Networks {
     29namespace HeuristicLab.Networks.Programmable {
    2830  [Item("ProgrammableNetwork", "Abstract base class for programmable networks.")]
    2931  [StorableClass]
     
    4547
    4648    protected override string CodeTemplate {
    47       get { return ReadCodeTemplate("HeuristicLab.Optimization.Networks.Core.Networks.ProgrammableNetworkTemplate.cs"); }
     49      get { return ReadCodeTemplate("HeuristicLab.Networks.Programmable.ProgrammableNetworkCode.cs"); }
    4850    }
    4951
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNetworkCode.cs

    r11576 r11577  
    11using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using HeuristicLab.Core.Networks;
    24using System;
    35using System.Threading;
    46
    5 namespace HeuristicLab.Core.Networks {
     7namespace HeuristicLab.Networks.Programmable {
    68  [Item("MyProgrammableNetwork", "A programmable network.")]
    79  public class MyProgrammableNetwork : ProgrammableNetwork.CompiledProgrammableNetwork {
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNetworkItem.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426using Microsoft.CSharp;
     
    3234using System.Text;
    3335
    34 namespace HeuristicLab.Core.Networks {
     36namespace HeuristicLab.Networks.Programmable {
    3537  [Item("ProgrammableNetworkItem", "Abstract base class for programmable items of a network.")]
    3638  [StorableClass]
     
    98100
    99101    protected virtual string CodeTemplate {
    100       get { return ReadCodeTemplate("HeuristicLab.Optimization.Networks.Core.Networks.ProgrammableNetworkItemTemplate.cs"); }
     102      get { return ReadCodeTemplate("HeuristicLab.Networks.Programmable.ProgrammableNetworkItemCode.cs"); }
    101103    }
    102104    [Storable]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNetworkItemCode.cs

    r11576 r11577  
    11using HeuristicLab.Common;
    2 using System;
     2using HeuristicLab.Core;
    33
    4 namespace HeuristicLab.Core.Networks {
     4namespace HeuristicLab.Networks.Programmable {
    55  [Item("MyProgrammableNetworkItem", "A programmable item of a network.")]
    66  public class MyProgrammableNetworkItem : ProgrammableNetworkItem.CompiledProgrammableNetworkItem {
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNode.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426using System.Collections.Generic;
     
    2628using System.Threading;
    2729
    28 namespace HeuristicLab.Core.Networks {
     30namespace HeuristicLab.Networks.Programmable {
    2931  [Item("ProgrammableNode", "Abstract base class for programmable nodes of a network.")]
    3032  [StorableClass]
     
    5456
    5557    protected override string CodeTemplate {
    56       get { return ReadCodeTemplate("HeuristicLab.Optimization.Networks.Core.Networks.ProgrammableNodeTemplate.cs"); }
     58      get { return ReadCodeTemplate("HeuristicLab.Networks.Programmable.ProgrammableNodeCode.cs"); }
    5759    }
    5860
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNodeCode.cs

    r11576 r11577  
    11using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using HeuristicLab.Core.Networks;
    24using System;
    35using System.Threading;
    46
    5 namespace HeuristicLab.Core.Networks {
     7namespace HeuristicLab.Networks.Programmable {
    68  [Item("MyProgrammableNode", "A programmable node of a network.")]
    79  public class MyProgrammableNode : ProgrammableNode.CompiledProgrammableNode {
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/UserDefinedNetwork.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426
    25 namespace HeuristicLab.Core.Networks {
     27namespace HeuristicLab.Networks.Programmable {
    2628  [Item("User-Defined Network", "A network which can be defined by the user.")]
    2729  [Creatable("Optimization Networks")]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/UserDefinedNode.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426
    25 namespace HeuristicLab.Core.Networks {
     27namespace HeuristicLab.Networks.Programmable {
    2628  [Item("User-Defined Node", "A node of a network which can be defined by the user.")]
    2729  [StorableClass]
  • branches/OptimizationNetworks/HeuristicLab.Networks/3.3/UserDefinedMessagePort.cs

    r11576 r11577  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Core.Networks;
    2325using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426
    25 namespace HeuristicLab.Core.Networks {
     27namespace HeuristicLab.Networks {
    2628  [Item("User-Defined Message Port", "A message port of a network which can be defined by the user.")]
    2729  [StorableClass]
Note: See TracChangeset for help on using the changeset viewer.