Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Constraints/ComparisonConstraint.cs @ 4153

Last change on this file since 4153 was 4153, checked in by mkommend, 14 years ago

chained storable ctors for constraints (ticket #1129)

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25
26namespace HeuristicLab.Core {
27  [StorableClass]
28  [Item("ComparisonConstraint", "A constraint which checks for specified compare operation.")]
29  public class ComparisonConstraint : Constraint {
30    [StorableConstructor]
31    protected ComparisonConstraint(bool deserializing) : base(deserializing) { }
32
33    public ComparisonConstraint() : base() { }
34    public ComparisonConstraint(IItem constrainedValue, ConstraintOperation comparisonOperation, object comparisonValue)
35      : base(constrainedValue, comparisonOperation, comparisonValue) {
36    }
37    public ComparisonConstraint(IItem constrainedValue, ConstraintOperation comparisonOperation, object comparisonValue, bool active)
38      : base(constrainedValue, comparisonOperation, comparisonOperation, active) {
39    }
40
41    public override IEnumerable<ConstraintOperation> AllowedConstraintOperations {
42      get { return new ConstraintOperation[6] { ConstraintOperation.Less, ConstraintOperation.LessOrEqual, ConstraintOperation.Equal, ConstraintOperation.GreaterOrEqual, ConstraintOperation.Greater, ConstraintOperation.NotEqual }; }
43    }
44
45    protected override bool Check(object constrainedMember) {
46      if (constrainedMember == null)
47        return false;
48
49      IComparable comparableMember = constrainedMember as IComparable;
50      if (comparableMember == null)
51        throw new InvalidOperationException("Constrained member must be of type IComparable to be used with ComparisonConstraint.");
52
53      int compareResult = comparableMember.CompareTo(this.ConstraintData);
54      bool result = false;
55      if (this.ConstraintOperation == ConstraintOperation.Less)
56        result = compareResult < 0;
57      else if (this.ConstraintOperation == ConstraintOperation.LessOrEqual)
58        result = compareResult <= 0;
59      else if (this.ConstraintOperation == ConstraintOperation.Equal)
60        result = compareResult == 0;
61      else if (this.ConstraintOperation == ConstraintOperation.GreaterOrEqual)
62        result = compareResult >= 0;
63      else if (this.ConstraintOperation == ConstraintOperation.Greater)
64        result = compareResult > 0;
65      else if (this.ConstraintOperation == ConstraintOperation.NotEqual)
66        result = compareResult != 0;
67      else
68        throw new InvalidOperationException("Constraint operation " + this.ConstraintOperation + " is not defined for ComparisonConstraint.");
69
70      return result;
71    }
72
73    protected override bool Check(object constrainedMember, out string errorMessage) {
74      bool result = Check(constrainedMember);
75      errorMessage = string.Empty;
76      if (!result)
77        errorMessage = constrainedMember.ToString() + " must be " + ConstraintOperation.ToString() + " than " + ConstraintData.ToString() + ".";
78      return result;
79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.