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("IntegerConverter", "Converts a ValueTypeValue<int>, ValueTypeArray<int>, or ValueTypeMatrix<int> and adds it to the SolutionMessage's IntegerVars or IntegerArrayVars. A matrix is encoded as array by concatenating all rows and setting length as the length of a row.")]
|
---|
31 | [StorableType("CC1127E7-0F10-4C31-924D-74091BC5E8B6")]
|
---|
32 | public class IntegerConverter : Item, IItemToSolutionMessageConverter {
|
---|
33 | private static readonly Type[] itemTypes = new Type[] { typeof(ValueTypeValue<int>), typeof(ValueTypeArray<int>), typeof(ValueTypeMatrix<int>) };
|
---|
34 |
|
---|
35 | [StorableConstructor]
|
---|
36 | protected IntegerConverter(bool deserializing) : base(deserializing) { }
|
---|
37 | protected IntegerConverter(IntegerConverter original, Cloner cloner) : base(original, cloner) { }
|
---|
38 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
39 | return new IntegerConverter(this, cloner);
|
---|
40 | }
|
---|
41 | public IntegerConverter() : base() { }
|
---|
42 |
|
---|
43 | #region IItemToSolutionMessageConverter Members
|
---|
44 |
|
---|
45 | public Type[] ItemTypes {
|
---|
46 | get { return itemTypes; }
|
---|
47 | }
|
---|
48 |
|
---|
49 | public void AddItemToBuilder(IItem item, string name, SolutionMessage.Builder builder) {
|
---|
50 | ValueTypeValue<int> value = (item as ValueTypeValue<int>);
|
---|
51 | if (value != null) {
|
---|
52 | SolutionMessage.Types.IntegerVariable.Builder var = SolutionMessage.Types.IntegerVariable.CreateBuilder();
|
---|
53 | var.SetName(name).SetData(value.Value);
|
---|
54 | builder.AddIntegerVars(var.Build());
|
---|
55 | } else {
|
---|
56 | ValueTypeArray<int> array = (item as ValueTypeArray<int>);
|
---|
57 | if (array != null) {
|
---|
58 | SolutionMessage.Types.IntegerArrayVariable.Builder var = SolutionMessage.Types.IntegerArrayVariable.CreateBuilder();
|
---|
59 | var.SetName(name).AddRangeData(array).SetLength(array.Length);
|
---|
60 | builder.AddIntegerArrayVars(var.Build());
|
---|
61 | } else {
|
---|
62 | ValueTypeMatrix<int> matrix = (item as ValueTypeMatrix<int>);
|
---|
63 | if (matrix != null) {
|
---|
64 | SolutionMessage.Types.IntegerArrayVariable.Builder var = SolutionMessage.Types.IntegerArrayVariable.CreateBuilder();
|
---|
65 | var.SetName(name).AddRangeData(matrix.AsEnumerable()).SetLength(matrix.Columns);
|
---|
66 | builder.AddIntegerArrayVars(var.Build());
|
---|
67 | } else {
|
---|
68 | throw new ArgumentException(ItemName + ": Item is not of a supported type.", "item");
|
---|
69 | }
|
---|
70 | }
|
---|
71 | }
|
---|
72 | }
|
---|
73 |
|
---|
74 | #endregion
|
---|
75 | }
|
---|
76 | }
|
---|