#region License Information
/* HeuristicLab
* Copyright (C) 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 System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HEAL.Attic;
namespace HeuristicLab.Problems.DataAnalysis {
[Item("ModifiableDataset", "Represents a dataset containing data that should be analyzed, which can be modified by adding or replacing variables and values.")]
[StorableType("4B9DA9DD-10C4-4609-8F87-B35ECD7A7487")]
public sealed class ModifiableDataset : Dataset, IStringConvertibleMatrix {
[StorableConstructor]
private ModifiableDataset(StorableConstructorFlag _) : base(_) { }
private ModifiableDataset(ModifiableDataset original, Cloner cloner) : base(original, cloner) {
variableNames = new List(original.variableNames);
variableValues = CloneValues(original.variableValues);
}
public override IDeepCloneable Clone(Cloner cloner) { return new ModifiableDataset(this, cloner); }
public ModifiableDataset() { }
public ModifiableDataset(IEnumerable variableNames, IEnumerable variableValues, bool cloneValues = false) :
base(variableNames, variableValues, cloneValues) { }
public Dataset ToDataset() {
return new Dataset(variableNames, variableNames.Select(v => variableValues[v]));
}
public IEnumerable