Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Data;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
9 | public interface INumericRange : IItem {
|
---|
10 | IntValue LowerBound { get; set; }
|
---|
11 | IntValue UpperBound { get; set; }
|
---|
12 | IntValue StepSize { get; set; }
|
---|
13 |
|
---|
14 | event EventHandler LowerBoundChanged;
|
---|
15 | event EventHandler UpperBoundChanged;
|
---|
16 | event EventHandler StepSizeChanged;
|
---|
17 |
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.