Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBSolution.cs @ 17181

Last change on this file since 17181 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HEAL.Attic;
25using System;
26
27namespace HeuristicLab.Clients.OKB.RunCreation {
28  [Item("OKB Solution", "")]
29  [StorableType("5B06773F-20A4-41C3-AEE1-62084E2F5E71")]
30  public abstract class OKBSolution : Item {
31    [Storable]
32    private long problemId;
33    public long ProblemId {
34      get { return problemId; }
35      protected set { problemId = value; }
36    }
37
38    [Storable]
39    private long solutionId;
40    public long SolutionId {
41      get { return solutionId; }
42      protected set { solutionId = value; }
43    }
44   
45    [Storable]
46    private IItem solution;
47    public IItem Solution {
48      get { return solution; }
49      set {
50        if (solution == value) return;
51        solution = value;
52        OnSolutionChanged();
53      }
54    }
55
56    [StorableConstructor]
57    protected OKBSolution(StorableConstructorFlag _) : base(_) { }
58    protected OKBSolution(OKBSolution original, Cloner cloner)
59      : base(original, cloner) {
60      problemId = original.problemId;
61      solutionId = original.solutionId;
62      solution = cloner.Clone(original.solution);
63    }
64    protected OKBSolution(long problemId) {
65      this.problemId = problemId;
66      solutionId = -1;
67      solution = null;
68    }
69    protected OKBSolution(Solution sol) {
70      problemId = sol.ProblemId;
71      solutionId = sol.Id;
72    }
73
74    public abstract void Download(long solutionId);
75    public abstract void DownloadData();
76
77    public abstract void Upload();
78
79    public static OKBSolution Convert(Solution solution) {
80      if (solution is SingleObjectiveSolution) return new SingleObjectiveOKBSolution(solution);
81      throw new ArgumentException("Unknown solution type", "solution");
82    }
83
84    public event EventHandler SolutionChanged;
85    private void OnSolutionChanged() {
86      var handler = SolutionChanged;
87      if (handler != null) handler(this, EventArgs.Empty);
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.