Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationChannel.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 28 [Item("EvaluationChannel", "Abstract base class for channels to be used in an external evaluation problem.")] 29 [Storable Class]29 [StorableType("2BE4FE9D-D5FE-45C3-9F85-3BF7200F0913")] 30 30 public abstract class EvaluationChannel : NamedItem, IEvaluationChannel { 31 31 public override bool CanChangeName { get { return false; } } … … 33 33 34 34 [StorableConstructor] 35 protected EvaluationChannel( bool deserializing) : base(deserializing) { }35 protected EvaluationChannel(StorableConstructorFlag _) : base(_) { } 36 36 protected EvaluationChannel(EvaluationChannel original, Cloner cloner) : base(original, cloner) { } 37 37 protected EvaluationChannel() -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationProcessChannel.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.ExternalEvaluation { 31 31 [Item("EvaluationProcessChannel", "A channel that launches an external application in a new process and communicates with that process via stdin and stdout.")] 32 [Storable Class]32 [StorableType("ECC07782-60E0-483C-8632-476697A058D2")] 33 33 public class EvaluationProcessChannel : EvaluationChannel { 34 34 … … 64 64 #region Construction & Cloning 65 65 [StorableConstructor] 66 protected EvaluationProcessChannel( bool deserializing) : base(deserializing) { }66 protected EvaluationProcessChannel(StorableConstructorFlag _) : base(_) { } 67 67 protected EvaluationProcessChannel(EvaluationProcessChannel original, Cloner cloner) 68 68 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationServiceClient.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Problems.ExternalEvaluation { 32 32 [Item("EvaluationServiceClient", "An RPC client that evaluates a solution.")] 33 [Storable Class]33 [StorableType("97F11C34-F32B-4AD2-92FB-F4A12311C962")] 34 34 public class EvaluationServiceClient : ParameterizedNamedItem, IEvaluationServiceClient { 35 35 … … 53 53 #region Construction & Cloning 54 54 [StorableConstructor] 55 protected EvaluationServiceClient( bool deserializing) : base(deserializing) { }55 protected EvaluationServiceClient(StorableConstructorFlag _) : base(_) { } 56 56 protected EvaluationServiceClient(EvaluationServiceClient original, Cloner cloner) 57 57 : base(original, cloner) { … … 150 150 OnNameChanged(); 151 151 } 152 153 [StorableType("9f1ab6e1-fe6e-4624-afbd-9bfdfdb75d44")] 152 154 #endregion 153 155 -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationStreamChannel.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.ExternalEvaluation { 30 30 [Item("EvaluationStreamChannel", "A channel that communicates via an input and an output stream.")] 31 [Storable Class]31 [StorableType("15DD5556-3C31-4D18-BE18-D438B45591D8")] 32 32 public class EvaluationStreamChannel : EvaluationChannel { 33 33 … … 36 36 37 37 [StorableConstructor] 38 protected EvaluationStreamChannel( bool deserializing) : base(deserializing) { }38 protected EvaluationStreamChannel(StorableConstructorFlag _) : base(_) { } 39 39 protected EvaluationStreamChannel(EvaluationStreamChannel original, Cloner cloner) : base(original, cloner) { } 40 40 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationTCPChannel.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.ExternalEvaluation { 31 31 [Item("EvaluationTCPChannel", "A channel that creates a TCP connection over a network.")] 32 [Storable Class]32 [StorableType("FECC0F5B-B22A-4117-888D-5B8B84332D24")] 33 33 public class EvaluationTCPChannel : EvaluationChannel { 34 34 … … 63 63 #region Construction & Cloning 64 64 [StorableConstructor] 65 protected EvaluationTCPChannel( bool deserializing) : base(deserializing) { }65 protected EvaluationTCPChannel(StorableConstructorFlag _) : base(_) { } 66 66 protected EvaluationTCPChannel(EvaluationTCPChannel original, Cloner cloner) 67 67 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.