Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IEvaluationChannel.cs
r14185 r14929 22 22 using Google.ProtocolBuffers; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("cddf3a9b-22e5-4dd2-9222-f407e5236a74")] 26 28 public interface IEvaluationChannel : INamedItem { 27 29 /// <summary> -
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IEvaluationServiceClient.cs
r14185 r14929 23 23 using Google.ProtocolBuffers; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("9d0a180b-522c-49c8-8609-773529e3d389")] 27 29 public interface IEvaluationServiceClient : IItem { 28 30 /// <summary> -
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IExternalEvaluationProblem.cs
r14185 r14929 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("0a8c647f-7461-428c-b57c-02535489d9a4")] 27 29 public interface IExternalEvaluationProblem : IProblem { 28 30 -
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IItemToSolutionMessageConverter.cs
r14185 r14929 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("8896cbe9-d81c-474a-8e7e-a7c58fd11538")] 26 28 public interface IItemToSolutionMessageConverter : IItem { 27 29 Type[] ItemTypes { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IMultiObjectiveOptimizationSupport.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("26ccd02e-5678-4d1d-949a-cfb11f99b158")] 26 28 public interface IMultiObjectiveOptimizationSupport { 27 29 void Analyze(Individual[] individuals, double[][] qualities, ResultCollection results, IRandom random); -
branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/ISingleObjectiveOptimizationSupport.cs
r14185 r14929 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("57607cbe-c456-43bb-b9c9-a1ae1e4f8cb1")] 27 29 public interface ISingleObjectiveOptimizationSupport { 28 30 void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random);
Note: See TracChangeset
for help on using the changeset viewer.