Last change
on this file since 5207 was
5110,
checked in by cneumuel, 14 years ago
|
#1215
- optional parameter values now can be null
- problem type can now be set specifically
- values are constrained to the encoding of the Problem
- moved repetitions parameter to MetaOptimizationProblem
|
File size:
359 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
8 | public interface ICheckedValueConfigurationCollection : ICheckedItemCollection<IValueConfiguration> {
|
---|
9 | int MinItemCount { get; }
|
---|
10 | IItemSet<IItem> ValidValues { get; }
|
---|
11 | }
|
---|
12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.