Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Optimization;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
9 | /// <summary>
|
---|
10 | /// An interface which represents an operator for creating permutations.
|
---|
11 | /// </summary>
|
---|
12 | public interface IParameterSetCreator : ISolutionCreator {
|
---|
13 | ParameterConfigurationList ParametersToOptimize { get; set; }
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.