Changeset 11713 for branches/OptimizationNetworks/HeuristicLab.Networks/3.3
- Timestamp:
- 12/22/14 02:42:19 (10 years ago)
- Location:
- branches/OptimizationNetworks/HeuristicLab.Networks/3.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/AlgorithmNode.cs
r11682 r11713 32 32 33 33 namespace HeuristicLab.Networks { 34 [Item("AlgorithmNode", "A node of a n optimizationnetwork which contains a HeuristicLab algorithm.")]34 [Item("AlgorithmNode", "A node of a network which contains a HeuristicLab algorithm.")] 35 35 [StorableClass] 36 36 public class AlgorithmNode : Node, IAlgorithmNode { -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/ConfigurationPort.cs
r11577 r11713 26 26 27 27 namespace HeuristicLab.Networks { 28 [Item("ConfigurationPort", "A port of a n optimizationnetwork node which triggers configuration changes.")]28 [Item("ConfigurationPort", "A port of a network node which triggers configuration changes.")] 29 29 [StorableClass] 30 30 public class ConfigurationPort : MessagePort, IConfigurationPort { -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/ExecutionPort.cs
r11577 r11713 26 26 27 27 namespace HeuristicLab.Networks { 28 [Item("ExecutionPort", "A port of a n optimizationnetwork node which triggers execution.")]28 [Item("ExecutionPort", "A port of a network node which triggers execution.")] 29 29 [StorableClass] 30 30 public class ExecutionPort : MessagePort, IExecutionPort { -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPNetwork.cs
r11712 r11713 26 26 27 27 namespace HeuristicLab.Networks { 28 [Item("KSPTSPNetwork", "An optimization network which con nects a KSP and a TSP.")]28 [Item("KSPTSPNetwork", "An optimization network which contains a KSP and a TSP.")] 29 29 [Creatable("Optimization Networks")] 30 30 [StorableClass] -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/KSPTSPNetworkCode.cs
r11712 r11713 35 35 36 36 namespace HeuristicLab.Networks { 37 [Item("KSPTSPNetwork", "An optimization network which con nects a KSP and a TSP.")]37 [Item("KSPTSPNetwork", "An optimization network which contains a KSP and a TSP.")] 38 38 public class CompiledKSPTSPNetwork : ProgrammableNetwork.CompiledProgrammableNetwork { 39 39 protected CompiledKSPTSPNetwork(CompiledKSPTSPNetwork original, Cloner cloner) : base(original, cloner) { } -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/UserDefinedNetwork.cs
r11712 r11713 27 27 28 28 namespace HeuristicLab.Networks.Programmable { 29 [Item("User-Defined Network", "A network which can be defined by the user.")]29 [Item("User-Defined Network", "A network which can be defined and programmed by the user.")] 30 30 [Creatable("Optimization Networks")] 31 31 [StorableClass] -
branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/UserDefinedNode.cs
r11712 r11713 27 27 28 28 namespace HeuristicLab.Networks.Programmable { 29 [Item("User-Defined Node", "A node of a network which can be defined by the user.")]29 [Item("User-Defined Node", "A node of a network which can be defined and programmed by the user.")] 30 30 [StorableClass] 31 31 public sealed class UserDefinedNode : ProgrammableNode, IUserDefinedNode {
Note: See TracChangeset
for help on using the changeset viewer.