Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Constraints/EqualityConstraint.cs @ 3605

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

corrected ctors of core constraints (ticket #996)

File size: 3.1 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 System.Linq;
25using System.Text;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Common;
28
29namespace HeuristicLab.Core {
30  [StorableClass]
31  [Item("EqualityConstraint", "A constraint which checks for equality.")]
32  public class EqualityConstraint : Constraint {
33    public EqualityConstraint()
34      : base() {
35    }
36    [StorableConstructor]
37    protected EqualityConstraint(bool deserializing) {
38    }
39    public EqualityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, object constraintData)
40      : base(constrainedValue, constraintOperation, constraintData) {
41    }
42    public EqualityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, object constraintData, bool active)
43      : base(constrainedValue, constraintOperation, constraintData, active) {
44    }
45
46    public override IEnumerable<ConstraintOperation> AllowedConstraintOperations {
47      get { return new ConstraintOperation[2] { ConstraintOperation.Equal, ConstraintOperation.NotEqual }; }
48    }
49
50    protected override bool Check(object constrainedMember) {
51      if (constrainedMember == null)
52        return false;
53
54      IComparable comparableMember = constrainedMember as IComparable;
55      bool compareValue;
56      if (comparableMember != null && this.ConstraintData != null)
57        compareValue = comparableMember.CompareTo(this.ConstraintData) == 0;
58      else
59        compareValue = constrainedMember.Equals(this.ConstraintData);
60
61      bool result;
62      if (ConstraintOperation == ConstraintOperation.Equal)
63        result = compareValue;
64      else if (ConstraintOperation == ConstraintOperation.NotEqual)
65        result = !compareValue;
66      else
67        throw new InvalidOperationException("Constraint operation " + this.ConstraintOperation + " is not defined for TypeConstraint.");
68
69      return result;
70    }
71
72    protected override bool Check(object constrainedMember, out string errorMessage) {
73      bool result = Check(constrainedMember);
74      errorMessage = string.Empty;
75      if (!result)
76        errorMessage = constrainedMember.ToString() + " must be " + ConstraintOperation.ToString() + " to " + ConstraintData.ToString() + ".";
77      return result;
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.