Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Constraints/IsIntegerConstraint.cs @ 1176

Last change on this file since 1176 was 1176, checked in by vdorfer, 15 years ago

Created API documentation for HeuristicLab.BitVector and HeuristicLab.Constraints namespace and changed a comment in HeuristicLab.IntVector namespace(#331)

File size: 2.1 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Text;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27
28namespace HeuristicLab.Constraints {
29  /// <summary>
30  /// Constraint that allows only integer values.
31  /// </summary>
32  public class IsIntegerConstraint : ConstraintBase{
33    /// <inheritdoc select="summary"/>
34    public override string Description {
35      get { return "Allows only integer values."; }
36    }
37
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>
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}
Note: See TracBrowser for help on using the repository browser.