1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 System;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Problems.ExternalEvaluation {
|
---|
30 | [Item("BoolConverter", "Converts a ValueTypeValue<bool>, ValueTypeArray<bool>, or ValueTypeMatrix<bool> and adds it to the SolutionMessage's BoolVars or BoolArrayVars. A matrix is encoded as array by concatenating all rows and setting length as the length of a row.")]
|
---|
31 | [StorableType("D2FDE528-079E-4F52-9094-AB17757D7001")]
|
---|
32 | public class BoolConverter : Item, IItemToSolutionMessageConverter {
|
---|
33 | private static readonly Type[] itemTypes = new Type[] { typeof(ValueTypeValue<bool>), typeof(ValueTypeArray<bool>), typeof(ValueTypeMatrix<bool>) };
|
---|
34 | [StorableConstructor]
|
---|
35 | protected BoolConverter(bool deserializing) : base(deserializing) { }
|
---|
36 | protected BoolConverter(BoolConverter original, Cloner cloner) : base(original, cloner) { }
|
---|
37 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
38 | return new BoolConverter(this, cloner);
|
---|
39 | }
|
---|
40 | public BoolConverter() : base() { }
|
---|
41 |
|
---|
42 | #region IItemToSolutionMessageConverter Members
|
---|
43 |
|
---|
44 | public Type[] ItemTypes {
|
---|
45 | get { return itemTypes; }
|
---|
46 | }
|
---|
47 |
|
---|
48 | public void AddItemToBuilder(IItem item, string name, SolutionMessage.Builder builder) {
|
---|
49 | ValueTypeValue<bool> value = (item as ValueTypeValue<bool>);
|
---|
50 | if (value != null) {
|
---|
51 | SolutionMessage.Types.BoolVariable.Builder var = SolutionMessage.Types.BoolVariable.CreateBuilder();
|
---|
52 | var.SetName(name).SetData(value.Value);
|
---|
53 | builder.AddBoolVars(var.Build());
|
---|
54 | } else {
|
---|
55 | ValueTypeArray<bool> array = (item as ValueTypeArray<bool>);
|
---|
56 | if (array != null) {
|
---|
57 | SolutionMessage.Types.BoolArrayVariable.Builder var = SolutionMessage.Types.BoolArrayVariable.CreateBuilder();
|
---|
58 | var.SetName(name).AddRangeData(array).SetLength(array.Length);
|
---|
59 | builder.AddBoolArrayVars(var.Build());
|
---|
60 | } else {
|
---|
61 | ValueTypeMatrix<bool> matrix = (item as ValueTypeMatrix<bool>);
|
---|
62 | if (matrix != null) {
|
---|
63 | SolutionMessage.Types.BoolArrayVariable.Builder var = SolutionMessage.Types.BoolArrayVariable.CreateBuilder();
|
---|
64 | var.SetName(name).AddRangeData(matrix.AsEnumerable()).SetLength(matrix.Columns);
|
---|
65 | builder.AddBoolArrayVars(var.Build());
|
---|
66 | } else {
|
---|
67 | throw new ArgumentException(ItemName + ": Item is not of a supported type.", "item");
|
---|
68 | }
|
---|
69 | }
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | #endregion
|
---|
74 | }
|
---|
75 | }
|
---|