Changeset 16641 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces
- Timestamp:
- 02/28/19 17:45:50 (6 years ago)
- Location:
- branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces/ISymbolicRegressionEvaluator.cs
r16628 r16641 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { 25 [StorableType(" C84D7272-28F6-4EE6-8090-7D6A8CFB756D")]25 [StorableType("a8ef5d93-c9e3-46f6-8fd6-323dee5a406b")] 26 26 public interface ISymbolicRegressionEvaluator : ISymbolicDataAnalysisEvaluator<IRegressionProblemData> { 27 27 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces/ISymbolicRegressionModel.cs
r16628 r16641 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 22 22 23 23 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { 24 [StorableType(" B04551AA-5AE5-4FE9-BC41-47E5CBC5CF24")]24 [StorableType("a411e2b5-f926-41a6-b55b-1aef862db2fb")] 25 25 public interface ISymbolicRegressionModel : IRegressionModel, ISymbolicDataAnalysisModel { 26 26 void Scale(IRegressionProblemData problemData); -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces/ISymbolicRegressionMultiObjectiveEvaluator.cs
r16628 r16641 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 22 22 23 23 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { 24 [StorableType(" B9FC33F7-3603-44FF-BDB9-4E5EFD319D49")]24 [StorableType("75e2b69d-b610-4694-aad9-601b9c242f89")] 25 25 public interface ISymbolicRegressionMultiObjectiveEvaluator : ISymbolicRegressionEvaluator, ISymbolicDataAnalysisMultiObjectiveEvaluator<IRegressionProblemData> { 26 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces/ISymbolicRegressionSingleObjectiveEvaluator.cs
r16628 r16641 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 22 22 23 23 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { 24 [StorableType(" 2FA199D4-FEF5-4D2E-BE41-2902AA2ACBF1")]24 [StorableType("5dd2601a-b884-48c0-85bc-bc1f437187a3")] 25 25 public interface ISymbolicRegressionSingleObjectiveEvaluator : ISymbolicRegressionEvaluator, ISymbolicDataAnalysisSingleObjectiveEvaluator<IRegressionProblemData> { 26 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/Interfaces/ISymbolicRegressionSolution.cs
r16628 r16641 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 5 * 5 6 * This file is part of HeuristicLab. … … 21 22 22 23 23 using HeuristicLab.Problems.DataAnalysis.Symbolic;24 24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { 27 [StorableType(" DBB387C7-A1C8-4E06-A4DA-31D063943E40")]27 [StorableType("dff1a450-e958-454f-bf8e-6b763fdcaff3")] 28 28 public interface ISymbolicRegressionSolution : IRegressionSolution, ISymbolicDataAnalysisSolution { 29 29 new ISymbolicRegressionModel Model { get; }
Note: See TracChangeset
for help on using the changeset viewer.