- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Mappers/IGenotypeToPhenotypeMapper.cs
r12012 r14712 31 31 /// IGenotypeToPhenotypeMapper 32 32 /// </summary> 33 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("6DDC24F7-DFA9-4441-AEE3-6EA6E5270A0E")] 33 34 public interface IGenotypeToPhenotypeMapper : IIntegerVectorOperator { 34 35 SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicDataAnalysisEvaluator.cs
r12012 r14712 34 34 namespace HeuristicLab.Problems.GrammaticalEvolution { 35 35 36 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("2BCE0CAB-F00B-4D22-9713-6D56EE33AA20")] 36 37 public interface IGESymbolicDataAnalysisEvaluator<T> : IEvaluator 37 38 where T : class, IDataAnalysisProblemData { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicDataAnalysisProblem.cs
r12012 r14712 30 30 31 31 namespace HeuristicLab.Problems.GrammaticalEvolution { 32 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("9A7FF471-4BC3-490F-ACCD-655B21CEC761")] 32 33 public interface IGESymbolicDataAnalysisProblem : IDataAnalysisProblem, IHeuristicOptimizationProblem { 33 34 … … 47 48 } 48 49 50 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("D7B61C29-E706-418F-9032-5FAEBD7AB642")] 49 51 public interface IGESymbolicDataAnalysisSingleObjectiveProblem : IGESymbolicDataAnalysisProblem, ISingleObjectiveHeuristicOptimizationProblem { } 50 52 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicDataAnalysisSingleObjectiveEvaluator.cs
r12012 r14712 27 27 28 28 namespace HeuristicLab.Problems.GrammaticalEvolution { 29 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("D7FB3380-F83C-48A5-B5EF-BB916648ACF0")] 29 30 public interface IGESymbolicDataAnalysisSingleObjectiveEvaluator<T> : IGESymbolicDataAnalysisEvaluator<T>, ISingleObjectiveEvaluator 30 31 where T : class,IDataAnalysisProblemData { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicDataAnalysisValidationAnalyzer.cs
r12012 r14712 28 28 29 29 namespace HeuristicLab.Problems.GrammaticalEvolution { 30 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("46984ED7-EE9B-4D61-BA5D-2B97798F2D0F")] 30 31 public interface IGESymbolicDataAnalysisValidationAnalyzer<T, U> : ISymbolicDataAnalysisAnalyzer, ISymbolicDataAnalysisInterpreterOperator 31 32 where T : class,IGESymbolicDataAnalysisEvaluator<U> -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicRegressionEvaluator.cs
r12012 r14712 26 26 27 27 namespace HeuristicLab.Problems.GrammaticalEvolution { 28 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("79D8274A-3DF6-476D-8D69-3C4BBF0AA7DF")] 28 29 public interface IGESymbolicRegressionEvaluator : IGESymbolicDataAnalysisEvaluator<IRegressionProblemData> { 29 30 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.3/Symbolic/IGESymbolicRegressionSingleObjectiveEvaluator.cs
r12012 r14712 28 28 29 29 namespace HeuristicLab.Problems.GrammaticalEvolution { 30 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("C5D1EDEA-409E-484C-AFF1-76E84BC4DA8A")] 30 31 public interface IGESymbolicRegressionSingleObjectiveEvaluator : IGESymbolicRegressionEvaluator, 31 32 IGESymbolicDataAnalysisSingleObjectiveEvaluator<IRegressionProblemData> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/Mappers/IGenotypeToPhenotypeMapper.cs
r12915 r14712 31 31 /// IGenotypeToPhenotypeMapper 32 32 /// </summary> 33 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("9B8482E6-1B6D-4407-B1B9-A92D146B3A6E")] 33 34 public interface IGenotypeToPhenotypeMapper : IIntegerVectorOperator { 34 35 ISymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length, -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicDataAnalysisEvaluator.cs
r12012 r14712 34 34 namespace HeuristicLab.Problems.GrammaticalEvolution { 35 35 36 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("FD283F97-0DAA-444E-8715-5A9CE4A5F65A")] 36 37 public interface IGESymbolicDataAnalysisEvaluator<T> : IEvaluator 37 38 where T : class, IDataAnalysisProblemData { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicDataAnalysisProblem.cs
r12012 r14712 30 30 31 31 namespace HeuristicLab.Problems.GrammaticalEvolution { 32 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("045D54E4-19ED-4C06-8AA3-AB67B9816B7A")] 32 33 public interface IGESymbolicDataAnalysisProblem : IDataAnalysisProblem, IHeuristicOptimizationProblem { 33 34 … … 47 48 } 48 49 50 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("B1446DCA-33B7-4135-B90C-5440470519C0")] 49 51 public interface IGESymbolicDataAnalysisSingleObjectiveProblem : IGESymbolicDataAnalysisProblem, ISingleObjectiveHeuristicOptimizationProblem { } 50 52 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicDataAnalysisSingleObjectiveEvaluator.cs
r12012 r14712 27 27 28 28 namespace HeuristicLab.Problems.GrammaticalEvolution { 29 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("DAA1DE84-7B97-4A56-98F8-F575D08A1A83")] 29 30 public interface IGESymbolicDataAnalysisSingleObjectiveEvaluator<T> : IGESymbolicDataAnalysisEvaluator<T>, ISingleObjectiveEvaluator 30 31 where T : class,IDataAnalysisProblemData { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicDataAnalysisValidationAnalyzer.cs
r12012 r14712 28 28 29 29 namespace HeuristicLab.Problems.GrammaticalEvolution { 30 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("39D80A89-B915-4EDB-B2F4-370458897985")] 30 31 public interface IGESymbolicDataAnalysisValidationAnalyzer<T, U> : ISymbolicDataAnalysisAnalyzer, ISymbolicDataAnalysisInterpreterOperator 31 32 where T : class,IGESymbolicDataAnalysisEvaluator<U> -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicRegressionEvaluator.cs
r12012 r14712 26 26 27 27 namespace HeuristicLab.Problems.GrammaticalEvolution { 28 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("F5745515-56CD-4EBC-835F-6254D83A6827")] 28 29 public interface IGESymbolicRegressionEvaluator : IGESymbolicDataAnalysisEvaluator<IRegressionProblemData> { 29 30 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/IGESymbolicRegressionSingleObjectiveEvaluator.cs
r12012 r14712 28 28 29 29 namespace HeuristicLab.Problems.GrammaticalEvolution { 30 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("78CC1874-315A-4B85-BB8B-7AF6D1A02744")] 30 31 public interface IGESymbolicRegressionSingleObjectiveEvaluator : IGESymbolicRegressionEvaluator, 31 32 IGESymbolicDataAnalysisSingleObjectiveEvaluator<IRegressionProblemData> {
Note: See TracChangeset
for help on using the changeset viewer.