1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Data;
|
---|
6 | using HeuristicLab.Services.Optimization.ControllerService.Model;
|
---|
7 | using HeuristicLab.Optimization;
|
---|
8 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
9 | using HeuristicLab.Core;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.Services.Optimization.ControllerService {
|
---|
12 | public interface IScenarioMapper {
|
---|
13 | void MapScenario(OptimizationScenario scenario, IAlgorithm algorithm);
|
---|
14 | }
|
---|
15 |
|
---|
16 | public static class HLMapper {
|
---|
17 | public static DoubleValue ConvertToDoubleValue(Parameter parameter) {
|
---|
18 | var dv = parameter.Value as DecimalValue;
|
---|
19 | return new DoubleValue(dv.Value);
|
---|
20 | }
|
---|
21 |
|
---|
22 | public static Permutation ConvertToPermutation(Parameter parameter) {
|
---|
23 | double[] input = (parameter.Value as DecimalVector).Value;
|
---|
24 | int[] arr = new int[input.Length];
|
---|
25 | for (int i = 0; i < input.Length; i++) {
|
---|
26 | arr[i] = Convert.ToInt32(input[i]);
|
---|
27 | }
|
---|
28 | var valueObj = new HeuristicLab.Encodings.PermutationEncoding.Permutation(Encodings.PermutationEncoding.PermutationTypes.RelativeUndirected, arr);
|
---|
29 | return valueObj;
|
---|
30 | }
|
---|
31 |
|
---|
32 | public static DoubleMatrix ConvertToDoubleMatrix(Parameter parameter) {
|
---|
33 | var matrix = parameter.Value as DecimalMatrix;
|
---|
34 | // TODO: Check for empty matrices
|
---|
35 | double[,] data = new double[matrix.Value.Length, matrix.Value[0].Length];
|
---|
36 | for (int i=0; i < matrix.Value.Length; i++) {
|
---|
37 | for (int j=0; j < matrix.Value[i].Length; j++) {
|
---|
38 | data[i,j] = matrix.Value[i][j];
|
---|
39 | }
|
---|
40 | }
|
---|
41 | return new DoubleMatrix(data);
|
---|
42 | }
|
---|
43 |
|
---|
44 | public static HeuristicLab.Data.BoolValue ConvertToBoolValue(Parameter parameter) {
|
---|
45 | return new HeuristicLab.Data.BoolValue((parameter.Value as HeuristicLab.Services.Optimization.ControllerService.Model.BoolValue).Value);
|
---|
46 | }
|
---|
47 |
|
---|
48 | public static IntValue ConvertToIntValue(Parameter parameter) {
|
---|
49 | return new IntValue((int)(parameter.Value as DecimalValue).Value);
|
---|
50 | }
|
---|
51 |
|
---|
52 | public static PercentValue ConvertToPercentValue(Parameter parameter) {
|
---|
53 | return new PercentValue((parameter.Value as DecimalValue).Value / 100);
|
---|
54 | }
|
---|
55 |
|
---|
56 | public static string GetStringValue(Parameter parameter) {
|
---|
57 | return (parameter.Value as HeuristicLab.Services.Optimization.ControllerService.Model.TypeValue).Value;
|
---|
58 | }
|
---|
59 |
|
---|
60 | public static T FindInItemSet<T>(Core.IItemSet<T> items, Parameter what) where T : class,Core.INamedItem {
|
---|
61 | return items.FirstOrDefault((entry) => { return entry.Name == (what.Value as HeuristicLab.Services.Optimization.ControllerService.Model.TypeValue).Value; });
|
---|
62 | }
|
---|
63 |
|
---|
64 | public static T FindOperator<T>(IProblem problem, Parameter what) where T : IOperator {
|
---|
65 | return problem.Operators.OfType<T>().FirstOrDefault((item) => { return item.ItemName == (what.Value as HeuristicLab.Services.Optimization.ControllerService.Model.TypeValue).Value; });
|
---|
66 | }
|
---|
67 | }
|
---|
68 | }
|
---|