blob: 1712b5144ef76710c230b3cbfeb2cb9ad64c1057 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
package jcgp.backend.function;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
/**
*
* @author Eduardo Pedroni
*
*/
public abstract class FunctionSet {
protected Function[] functionList;
protected ArrayList<Integer> allowedFunctions;
protected String name;
public int getAllowedFunctionCount() {
return allowedFunctions.size();
}
public int getTotalFunctionCount() {
return functionList.length;
}
public Function getAllowedFunction(int index) {
return functionList[allowedFunctions.get(index)];
}
public Function getFunction(int index) {
return functionList[index];
}
public int getMaxArity(){
int arity = 0;
for (Function function : functionList) {
if (function.getArity() > arity) {
arity = function.getArity();
}
}
return arity;
}
public String getName() {
return name;
}
public void disableFunction(int index) {
if (index < functionList.length) {
for (Iterator<Integer> iterator = allowedFunctions.iterator(); iterator.hasNext();) {
int function = iterator.next();
if (function == index) {
iterator.remove();
break;
}
}
} else {
throw new IndexOutOfBoundsException("Function " + index + " does not exist, the set only has " + functionList.length + " functions.");
}
}
public void enableFunction(int index) {
if (!allowedFunctions.contains(index)) {
allowedFunctions.add(index);
Collections.sort(allowedFunctions);
}
}
@Override
public String toString() {
return name;
}
public boolean isEnabled(Function f) {
for (int i = 0; i < allowedFunctions.size(); i++) {
if (functionList[allowedFunctions.get(i)] == f) {
return true;
}
}
return false;
}
protected void enableAll() {
allowedFunctions = new ArrayList<Integer>();
for (int i = 0; i < functionList.length; i++) {
allowedFunctions.add(i);
}
}
}
|