Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Functions/FunctionBase.cs @ 189

Last change on this file since 189 was 189, checked in by gkronber, 16 years ago

fixed #131

File size: 3.1 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.Data;
26using HeuristicLab.Core;
27using System.Xml;
28using HeuristicLab.DataAnalysis;
29
30namespace HeuristicLab.Functions {
31  /// <summary>
32  /// Functions are like operators except that they do not allow sub-operators and the normal form of evaluation
33  /// is to evaluate all children first.
34  /// </summary>
35  public abstract class FunctionBase : OperatorBase, IFunction {
36   
37    public abstract double Apply(Dataset dataset, int sampleIndex, double[] args);
38
39    public virtual void Accept(IFunctionVisitor visitor) {
40      visitor.Visit(this);
41    }
42
43    public virtual IFunctionTree GetTreeNode() {
44      return new FunctionTree(this);
45    }
46
47    // operator-tree style evaluation is not supported for functions.
48    public override IOperation Apply(IScope scope) {
49      throw new NotSupportedException();
50    }
51
52    private static readonly List<IOperator> emptySubOperatorList = new List<IOperator>();
53    public override IList<IOperator> SubOperators {
54      get { return emptySubOperatorList; }
55    }
56
57    public override void AddSubOperator(IOperator subOperator) {
58      throw new NotSupportedException();
59    }
60
61    public override bool TryAddSubOperator(IOperator subOperator) {
62      throw new NotSupportedException();
63    }
64
65    public override bool TryAddSubOperator(IOperator subOperator, int index) {
66      throw new NotSupportedException();
67    }
68
69    public override bool TryAddSubOperator(IOperator subOperator, int index, out ICollection<IConstraint> violatedConstraints) {
70      throw new NotSupportedException();
71    }
72
73    public override bool TryAddSubOperator(IOperator subOperator, out ICollection<IConstraint> violatedConstraints) {
74      throw new NotSupportedException();
75    }
76
77    public override void AddSubOperator(IOperator subOperator, int index) {
78      throw new NotSupportedException();
79    }
80
81    public override void RemoveSubOperator(int index) {
82      throw new NotSupportedException();
83    }
84
85    public override bool TryRemoveSubOperator(int index) {
86      throw new NotSupportedException();
87    }
88
89    public override bool TryRemoveSubOperator(int index, out ICollection<IConstraint> violatedConstraints) {
90      throw new NotSupportedException();
91    }
92  }
93}
Note: See TracBrowser for help on using the repository browser.