- Timestamp:
- 01/02/19 09:22:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationServiceClient.cs
r16462 r16476 150 150 OnNameChanged(); 151 151 } 152 153 [StorableType("9f1ab6e1-fe6e-4624-afbd-9bfdfdb75d44")] 152 154 #endregion 153 155 -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/EvaluationCache.cs
r16462 r16476 46 46 #region Types 47 47 private sealed class CacheEntry { 48 49 48 public readonly string Key; 50 51 49 private QualityMessage message; 52 50 private byte[] rawMessage; -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IEvaluationChannel.cs
r16453 r16476 22 22 using Google.ProtocolBuffers; 23 23 using HeuristicLab.Core; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("8e62ba0d-03f5-4243-8411-3bd5f14c42be")] 26 28 public interface IEvaluationChannel : INamedItem { 27 29 /// <summary> -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IEvaluationServiceClient.cs
r16453 r16476 23 23 using Google.ProtocolBuffers; 24 24 using HeuristicLab.Core; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("8203ac65-e551-486e-8386-e297ae575279")] 27 29 public interface IEvaluationServiceClient : IItem { 28 30 /// <summary> -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IExternalEvaluationProblem.cs
r16453 r16476 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("04901da1-d785-4124-a989-2a9c6bd1a81c")] 27 29 public interface IExternalEvaluationProblem : IProblem { 28 30 -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IItemToSolutionMessageConverter.cs
r16453 r16476 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("581f5e17-68dc-42a0-8bc0-e0ac8992ed7b")] 26 28 public interface IItemToSolutionMessageConverter : IItem { 27 29 Type[] ItemTypes { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IMultiObjectiveOptimizationSupport.cs
r16453 r16476 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 [StorableType("f924ef9c-d824-40d2-89b2-6dd1220df98b")] 26 28 public interface IMultiObjectiveOptimizationSupport { 27 29 void Analyze(Individual[] individuals, double[][] qualities, ResultCollection results, IRandom random); -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/ISingleObjectiveOptimizationSupport.cs
r16453 r16476 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 [StorableType("09d522e0-c10f-474c-b7c0-7d7f98e63f44")] 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.