Last change
on this file since 17263 was
17263,
checked in by dpiringe, 5 years ago
|
#3026:
- added first prototype for:
- creating templates
- initialize a optimizer out of a template
- first attempts to create the option to extend the template generation and initialisation (with Transformers -> json To IItem, IItem to json) without serializing/deserializing the whole IItem
|
File size:
401 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 |
|
---|
8 | namespace ParameterTest {
|
---|
9 | public class ValueParameterTransformer : ParameterBaseTransformer {
|
---|
10 |
|
---|
11 | public override void SetValue(IParameter parameter, ParameterData data) =>
|
---|
12 | Transformer.SetValue(parameter.ActualValue, data);
|
---|
13 |
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.