Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core/3.3/Constraints/EqualityConstraint.cs @ 15584

Last change on this file since 15584 was 15584, checked in by swagner, 6 years ago

#2640: Updated year of copyrights in license headers on stable

File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Common;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Core {
28  [StorableClass]
29  [Item("EqualityConstraint", "A constraint which checks for equality.")]
30  public class EqualityConstraint : Constraint {
31    [StorableConstructor]
32    protected EqualityConstraint(bool deserializing) : base(deserializing) { }
33    protected EqualityConstraint(EqualityConstraint original, Cloner cloner) : base(original, cloner) { }
34    public EqualityConstraint() : base() { }
35    public EqualityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, object constraintData)
36      : base(constrainedValue, constraintOperation, constraintData) {
37    }
38    public EqualityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, object constraintData, bool active)
39      : base(constrainedValue, constraintOperation, constraintData, active) {
40    }
41
42    public override IEnumerable<ConstraintOperation> AllowedConstraintOperations {
43      get { return new ConstraintOperation[2] { ConstraintOperation.Equal, ConstraintOperation.NotEqual }; }
44    }
45
46    public override IDeepCloneable Clone(Cloner cloner) {
47      return new EqualityConstraint(this, cloner);
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.