aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/function/FunctionSet.java
blob: 49ff7e78e741855f7b149b6355d729df14b7b52f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package jcgp.function;

import java.util.ArrayList;
import java.util.Iterator;


/**
 * 
 * @author Eduardo Pedroni
 *
 */
public abstract class FunctionSet {
		protected Function[] functionList;
		protected ArrayList<Function> allowedFunctions;
		protected int maxArity;
		protected String name;
		
		public int getAllowedFunctionCount() {
			return allowedFunctions.size();
		}
		
		public int getTotalFunctionCount() {
			return functionList.length;
		}
		
		public Function getFunction(int index) {
			return allowedFunctions.get(index);
		}
		
		public int getMaxArity(){
			return maxArity;
		}
		
		public String getName() {
			return name;
		}
		
		public void disableFunction(int index) {
			if (index < functionList.length) {
				for (Iterator<Function> iterator = allowedFunctions.iterator(); iterator.hasNext();) {
					Function function = (Function) iterator.next();
					if (function == functionList[index]) {
						iterator.remove();
					}
				}
			} else {
				throw new IndexOutOfBoundsException("Function " + index + " does not exist, the set only has " + functionList.length + " functions.");
			}
		}
		
		public void enableFunction(int index) {
			if (!allowedFunctions.contains(functionList[index])) {
				allowedFunctions.add(functionList[index]);
			}
		}
		
		@Override
		public String toString() {
			return name;
		}
	}