[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Constraints {
|
---|
[1176] | 29 | /// <summary>
|
---|
| 30 | /// Constraint that allows only integer values.
|
---|
| 31 | /// </summary>
|
---|
[2] | 32 | public class IsIntegerConstraint : ConstraintBase{
|
---|
[1176] | 33 | /// <inheritdoc select="summary"/>
|
---|
[2] | 34 | public override string Description {
|
---|
| 35 | get { return "Allows only integer values."; }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
[1176] | 38 | /// <summary>
|
---|
| 39 | /// Checks whether the given element fulfills the current constraint.
|
---|
| 40 | /// </summary>
|
---|
| 41 | /// <param name="item">The item to check.</param>
|
---|
| 42 | /// <returns><c>true</c> if the constraint could be fulfilled, <c>false</c> otherwise.</returns>
|
---|
[2] | 43 | public override bool Check(IItem item) {
|
---|
| 44 | // ConstrainedIntData is always integer => just return true
|
---|
| 45 | if(item is ConstrainedIntData)
|
---|
| 46 | return true;
|
---|
| 47 |
|
---|
| 48 | // if we have an item of ConstrainedDoubleData then we check if it is integer or not
|
---|
| 49 | if(item is ConstrainedDoubleData) {
|
---|
| 50 | ConstrainedDoubleData d = (ConstrainedDoubleData)item;
|
---|
| 51 | if(d.Data == Math.Truncate(d.Data)) {
|
---|
| 52 | return true;
|
---|
| 53 | } else {
|
---|
| 54 | return false;
|
---|
| 55 | }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | // assume that all other data types are never integer
|
---|
| 59 | return false;
|
---|
| 60 | }
|
---|
| 61 | }
|
---|
| 62 | }
|
---|