Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/ICheckedValueConfigurationCollection.cs @ 8661

Last change on this file since 8661 was 5277, checked in by cneumuel, 13 years ago

#1215

  • implemented crossover and manipulator operators for int and double values
File size: 347 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.Problems.MetaOptimization {
8  public interface ICheckedValueConfigurationList : ICheckedItemList<IValueConfiguration> {
9    int MinItemCount { get; }
10    IItemSet<IItem> ValidValues { get; }
11  }
12}
Note: See TracBrowser for help on using the repository browser.