Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Constraints/SubOperatorsTypeConstraint.cs @ 445

Last change on this file since 445 was 435, checked in by gkronber, 16 years ago
  • code could be improved after removing the 'TypeId' variable and directly comparing instances of IOperator
  • added firing change events in the SubOperatorTypeConstraints (ticket #163)
File size: 4.3 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;
27using System.Diagnostics;
28using System.Xml;
29
30namespace HeuristicLab.Constraints {
31  public class SubOperatorTypeConstraint : ConstraintBase {
32    private IntData subOperatorIndex;
33    public IntData SubOperatorIndex {
34      get { return subOperatorIndex; }
35    }
36
37    private List<IOperator> subOperators;
38    public IList<IOperator> AllowedSubOperators {
39      get {
40        return subOperators.AsReadOnly();
41      }
42    }
43
44    public override string Description {
45      get { return "The sub-operator at a specific index has to be an element of a pre-defined group."; }
46    }
47
48    public SubOperatorTypeConstraint()
49      : base() {
50      subOperatorIndex = new IntData(0);
51      subOperators = new List<IOperator>();
52    }
53
54    public SubOperatorTypeConstraint(int index) : base() {
55      subOperatorIndex = new IntData(index);
56      subOperators = new List<IOperator>();
57    }
58
59    public void AddOperator(IOperator op) {
60      if(!subOperators.Contains(op)) {
61        subOperators.Add(op);
62        FireChanged();
63      }
64    }
65
66    public void RemoveOperator(IOperator op) {
67      if(subOperators.Contains(op)) {
68        subOperators.Remove(op);
69        FireChanged();
70      }
71    }
72
73    public override bool Check(IItem data) {
74      IOperator op = data as IOperator;
75      if(data == null) return false;
76
77      if(op.SubOperators.Count <= subOperatorIndex.Data) {
78        return false;
79      }
80      return subOperators.Contains(op.SubOperators[subOperatorIndex.Data]);
81    }
82
83    public override object Clone(IDictionary<Guid, object> clonedObjects) {
84      SubOperatorTypeConstraint clone = new SubOperatorTypeConstraint();
85      clonedObjects.Add(Guid, clone);
86      clone.subOperatorIndex.Data = subOperatorIndex.Data;
87      foreach(IOperator op in subOperators) {
88        clone.AddOperator((IOperator)Auxiliary.Clone(op, clonedObjects));
89      }
90      return clone;
91    }
92
93    public override IView CreateView() {
94      return new SubOperatorsTypeConstraintView(this);
95    }
96
97    public override void Accept(IConstraintVisitor visitor) {
98      visitor.Visit(this);
99    }
100
101
102    #region persistence
103    public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
104      XmlNode node = base.GetXmlNode(name, document, persistedObjects);
105      XmlNode indexNode = PersistenceManager.Persist("SubOperatorIndex", subOperatorIndex, document, persistedObjects);
106      node.AppendChild(indexNode);
107      XmlNode listNode = document.CreateNode(XmlNodeType.Element, "AllowedSubOperators", document.NamespaceURI);
108      foreach(IOperator op in subOperators) {
109        XmlNode opNode = PersistenceManager.Persist(op, document, persistedObjects);
110        listNode.AppendChild(opNode);
111      }
112      node.AppendChild(listNode);
113      return node;
114    }
115
116    public override void Populate(XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
117      base.Populate(node, restoredObjects);
118      subOperatorIndex = (IntData)PersistenceManager.Restore(node.SelectSingleNode("SubOperatorIndex"), restoredObjects);
119      subOperators = new List<IOperator>();
120      foreach(XmlNode childNode in node.SelectSingleNode("AllowedSubOperators").ChildNodes) {
121        subOperators.Add((IOperator)PersistenceManager.Restore(childNode, restoredObjects));
122      }
123    }
124    #endregion persistence
125
126  }
127}
Note: See TracBrowser for help on using the repository browser.