#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Analysis {
///
/// Represents an allele of a solution which is used for allele analysis.
///
[Item("Allele", "Represents an allele of a solution which is used for allele analysis.")]
[StorableClass]
public class Allele : Item {
private string id;
public string Id {
get { return id; }
}
private double impact;
public double Impact {
get { return impact; }
}
#region Storable Properties
[Storable(Name = "Id")]
private string StorableId {
get { return id; }
set { id = value; }
}
[Storable(Name = "Impact")]
private double StorableImpact {
get { return impact; }
set { impact = value; }
}
#endregion
#region Storing & Cloning
[StorableConstructor]
protected Allele(bool deserializing) : base(deserializing) { }
protected Allele(Allele original, Cloner cloner)
: base(original, cloner) {
this.id = original.id;
this.impact = original.impact;
}
public override IDeepCloneable Clone(Cloner cloner) {
return new Allele(this, cloner);
}
#endregion
public Allele()
: base() {
this.id = string.Empty;
this.impact = 0;
}
public Allele(string id)
: base() {
this.id = id;
this.impact = 0;
}
public Allele(string id, double impact)
: base() {
this.id = id;
this.impact = impact;
}
public override string ToString() {
return id + " (" + impact + ")";
}
}
}