[13691] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2016 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 |
|
---|
| 22 | using HeuristicLab.Common;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
[14927] | 24 | using HeuristicLab.Persistence;
|
---|
[13691] | 25 | using System;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Clients.OKB.RunCreation {
|
---|
| 28 | [Item("OKB Solution", "")]
|
---|
[14927] | 29 | [StorableType("1b13feb8-63b1-455b-b023-766dec511865")]
|
---|
[13691] | 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 | }
|
---|
[14927] | 44 |
|
---|
[13691] | 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]
|
---|
[15018] | 57 | protected OKBSolution(StorableConstructorFlag deserializing) : base(deserializing) { }
|
---|
[13691] | 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);
|
---|
[13693] | 75 | public abstract void DownloadData();
|
---|
[13691] | 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 | }
|
---|