Free cookie consent management tool by TermsFeed Policy Generator

source: branches/LearningClassifierSystems/HeuristicLab.Core/3.3/Constraints/TypeCompatibilityConstraint.cs @ 9467

Last change on this file since 9467 was 9467, checked in by sforsten, 11 years ago

#1980:

  • added ProportionalTournamentSelector for XCS
  • fixed bug: if an initial population is created in XCS, the initial population also creates general classifier, not only specific ones
  • merged r9204:9466 HeuristicLab.Core from trunk to branch
File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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("TypeCompatibilityConstraint", "A constraint that checks for compatible types.")]
30  public class TypeCompatibilityConstraint : Constraint {
31    [StorableConstructor]
32    protected TypeCompatibilityConstraint(bool deserializing) : base(deserializing) { }
33    protected TypeCompatibilityConstraint(TypeCompatibilityConstraint original, Cloner cloner) : base(original, cloner) { }
34    public TypeCompatibilityConstraint() : base() { }
35    public TypeCompatibilityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, Type constraintData)
36      : base(constrainedValue, constraintOperation, constraintData) {
37    }
38    public TypeCompatibilityConstraint(IItem constrainedValue, ConstraintOperation constraintOperation, Type constraintData, bool active)
39      : base(constrainedValue, constraintOperation, constraintData, active) {
40    }
41
42    public new Type ConstraintData {
43      get { return (Type)base.ConstraintData; }
44      set { base.ConstraintData = value; }
45    }
46
47    public override IEnumerable<ConstraintOperation> AllowedConstraintOperations {
48      get { return new ConstraintOperation[2] { ConstraintOperation.IsTypeCompatible, ConstraintOperation.IsTypeNotCompatible }; }
49    }
50
51    public override IDeepCloneable Clone(Cloner cloner) {
52      return new TypeCompatibilityConstraint(this, cloner);
53    }
54
55    protected override bool Check(object constrainedMember) {
56      if (constrainedMember == null)
57        return false;
58
59      Type constrainedMemberType = constrainedMember.GetType();
60      bool compareValue = ConstraintData.IsAssignableFrom(constrainedMemberType);
61      bool result;
62      if (ConstraintOperation == ConstraintOperation.IsTypeCompatible)
63        result = compareValue;
64      else if (ConstraintOperation == ConstraintOperation.IsTypeNotCompatible)
65        result = !compareValue;
66      else
67        throw new InvalidOperationException("Constraint operation " + this.ConstraintOperation + " is not defined for TypeCompatibilityConstraint.");
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 = "The type of " + constrainedMember.ToString() + " must be " + ConstraintOperation.ToString() + " compatible to " + ConstraintData.ToString() + ".";
77      return result;
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.