Last change
on this file since 17717 was
17479,
checked in by kyang, 5 years ago
|
#3057
- upload the latest version of ALPS with SMS-EMOA
- upload the related dynamic test problems (dynamic, single-objective symbolic regression), written by David Daninel.
|
File size:
1.6 KB
|
Line | |
---|
1 | using HEAL.Attic;
|
---|
2 | using HeuristicLab.Analysis;
|
---|
3 | using HeuristicLab.Common;
|
---|
4 | using HeuristicLab.Core;
|
---|
5 | using HeuristicLab.Data;
|
---|
6 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
7 | using HeuristicLab.Optimization;
|
---|
8 | using HeuristicLab.Problems.DataAnalysis;
|
---|
9 | using HeuristicLab.Problems.DataAnalysis.Symbolic;
|
---|
10 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
|
---|
11 | using System;
|
---|
12 | using System.Collections.Generic;
|
---|
13 | using System.Linq;
|
---|
14 | using System.Text;
|
---|
15 | using System.Threading.Tasks;
|
---|
16 |
|
---|
17 | namespace HeuristicLab.Algorithms.OESRALPS.Analyzers.Regression
|
---|
18 | {
|
---|
19 | [Item("SymbolicRregressionSingleObjectiveLayerQualityAnalyzer", "An operator that analyzes the validation and training best symbolic regression solution for single objective symbolic regression problems considering each age layer.")]
|
---|
20 | [StorableType("75E292AA-95B2-4FA4-8544-CF2025A65822")]
|
---|
21 | public sealed class SymbolicRregressionSingleObjectiveLayerQualityAnalyzer
|
---|
22 | : LayerQualityAnalyzer
|
---|
23 | {
|
---|
24 | [StorableConstructor]
|
---|
25 | private SymbolicRregressionSingleObjectiveLayerQualityAnalyzer(StorableConstructorFlag _) : base(_) { }
|
---|
26 | private SymbolicRregressionSingleObjectiveLayerQualityAnalyzer(SymbolicRregressionSingleObjectiveLayerQualityAnalyzer original, Cloner cloner)
|
---|
27 | : base(original, cloner)
|
---|
28 | {
|
---|
29 | }
|
---|
30 |
|
---|
31 | public SymbolicRregressionSingleObjectiveLayerQualityAnalyzer() : base()
|
---|
32 | {
|
---|
33 | }
|
---|
34 |
|
---|
35 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
36 | {
|
---|
37 | return new SymbolicRregressionSingleObjectiveLayerQualityAnalyzer(this, cloner);
|
---|
38 | }
|
---|
39 | }
|
---|
40 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.