-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVariable.java
More file actions
297 lines (238 loc) · 8.14 KB
/
Variable.java
File metadata and controls
297 lines (238 loc) · 8.14 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import java.util.ArrayList;
import java.util.Arrays;
/**
* This class is the variable class, it contains all data that is related to a single node in our network.
* @author Maya
*
*/
public class Variable implements Comparable <Variable>{
private String name;
private ArrayList<String> possibleOutcomes;
private String wantedOutcome;
private ArrayList<Variable> parents = new ArrayList<Variable>();
private String [] probabilities;
private CPT cpt;
public Variable(String name, ArrayList<String> possibleOutcomes) {
this.name = name;
this.possibleOutcomes = possibleOutcomes;
}
public Variable(String name, ArrayList<String> possibleOutcomes, String [] probabilities) {
this.name = name;
this.possibleOutcomes = possibleOutcomes;
this.parents = parents;
this.probabilities = probabilities;
}
public Variable() {
}
public Variable(readXmlFile x, String name) {
this.name = name;
this.parents = new ArrayList<>();
if (x.getParents(name).equals(null))
this.parents = null;
else {
for (int i = 0 ; i < x.getParents(name).size() ; i++) {
Variable v = new Variable(x,x.getParents(name).get(i));
this.parents.add(v) ;
}
}
this.possibleOutcomes = x.getOutcomes(name);
probabilities = x.getProbabilities(name).get(0).split(" ");
}
public Variable(readXmlFile x, String name, String wantedOutcome) {
this.name = name;
this.parents = new ArrayList<>();
if (x.getParents(name).equals(null))
this.parents = null;
else {
for (int i = 0 ; i < x.getParents(name).size() ; i++) {
Variable v = new Variable(x,x.getParents(name).get(i));
this.parents.add(v) ;
}
}
this.possibleOutcomes = x.getOutcomes(name);
probabilities = x.getProbabilities(name).get(0).split(" ");
this.wantedOutcome = wantedOutcome;
}
public Variable(Variable v) {
this.name = v.name;
this.parents = new ArrayList<Variable>(v.parents);
this.possibleOutcomes = v.possibleOutcomes;
this.probabilities = v.probabilities;
this.wantedOutcome = v.wantedOutcome;
}
public Variable (Variable v, String wantedOutcome) {
this.name = v.name;
this.parents = v.getParents();
this.possibleOutcomes = v.getPossibleOutcomes();
this.wantedOutcome = wantedOutcome;
}
public Variable (String name, String wantedOutcome) {
this.name = name;
this.wantedOutcome = wantedOutcome;
}
/**
* Using this constructor we create our network by using it in the BN class.
* @param name name of the variable
* @param parents of the variable
* @param possibleOutcomes
* @param probabilities
*/
public Variable (String name, ArrayList<Variable> parents, ArrayList<String> possibleOutcomes, ArrayList <String > probabilities) {
this.name = name;
this.parents = parents;
this.possibleOutcomes = possibleOutcomes;
for (int i = 0 ; i < probabilities.size() ; i ++) {
this.probabilities[i] = probabilities.get(i);
}
}
public String[] getProbs() {
return this.probabilities;
}
public ArrayList<String> getPossibleOutcomes(){
return this.possibleOutcomes;
}
public boolean hasParent(){
return parents.size() > 0;
}
public ArrayList<Variable> getParents(){
return this.parents;
}
public ArrayList<String> getParentsName(){
ArrayList<String> p = new ArrayList<>();
for (int i = 0 ; i < this.getParents().size() ; i++) {
p.add(this.getParents().get(i).getName());
}
return p;
}
public String getWantedOutcome() {
return this.wantedOutcome;
}
public void setWantedOutcome(String outcome) {
this.wantedOutcome = outcome;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
/**
* This function creates a truth table for a given variable v.
* @param v is the variable that the table is created around
* @return a 2D array of strings
*/
public String[][] createTruthTableByVariable(Variable v){
String [][] f = new String[v.getProbs().length+1][v.getParents().size()+2];
//First we will name the headers, two cases: if there are or aren't any parents
if (v.getParents().size() > 0) {
for (int i = 0 ; i < v.getParents().size() ; i++) {
f[0][i] = v.getParents().get(i).getName();
f[0][f[0].length-2] = v.getName();
f[0][f[0].length-1] = "Probs";
}
}
else {
f[0][f[0].length-2] = v.getName();
f[0][f[0].length-1] = "Probs";
}
//We will deal with cols from left to right, each time the devision increases
// These initiate the columns of the parents
int p = v.getParents().size();// number of parents
int divideT = 1;
for (int k = 0 ; k < p; k++) {
f[0][k] = v.getParents().get(k).getName();
Variable curr = new Variable (v.getParents().get(k));
int numOutcomesT = v.getParents().get(k).getPossibleOutcomes().size();
int colNumT = k;
divideT *= numOutcomesT;
for (int j = 0 ; j < divideT-1 ; j ++) {
for (int i = (j)*f.length/divideT+1; i < (j+1)*f.length/divideT+1; i++) {
f[i][k] = v.getParents().get(k).getPossibleOutcomes().get(j%numOutcomesT);
}
}
for (int i = (divideT-1)*f.length/divideT+1; i <f.length ;i++) {
f[i][k] = (v.getParents().get(k)).getPossibleOutcomes().get(numOutcomesT-1);
}
}
//variable's col
int numOutcomesU = v.getPossibleOutcomes().size();
int colNumU = p;
int divideU = (int) Math.pow(numOutcomesU, colNumU+1);
for (int j = 1 ; j < f.length ; j ++) {
f[j][colNumU] = v.getPossibleOutcomes().get((j-1)%numOutcomesU);
}
//probs col
//Fill in outcomes one by one
for (int i = 1 ; i < f.length ; i++) {
String[] curr = new String [v.getProbs().length];
curr= v.getProbs();
f[i][v.getParents().size()+1] = curr[i-1];
}
return f;
}
/**
* Create truth table normally
* @return
*/
public String[][] createTruthTable(){
String [][] f = new String[getProbs().length+1][getParents().size()+2];
//First we will name the headers, two cases: if there are or aren't any parents
if (getParents().size() > 0) {
for (int i = 0 ; i < getParents().size() ; i++) {
f[0][i] = getParents().get(i).getName();
f[0][f[0].length-2] = getName();
f[0][f[0].length-1] = "Probs";
}
}
else {
f[0][f[0].length-2] = getName();
f[0][f[0].length-1] = "Probs";
}
//We will deal with cols from left to right, each time the devision increases
// These initiate the columns of the parents
int p = getParents().size();// number of parents
int divideT = 1;
for (int k = 0 ; k < p; k++) {
f[0][k] = getParents().get(k).getName();
Variable curr = new Variable (getParents().get(k));
int numOutcomesT = getParents().get(k).getPossibleOutcomes().size();
int colNumT = k;
divideT *= numOutcomesT;
for (int j = 0 ; j < divideT-1 ; j ++) {
for (int i = (j)*f.length/divideT+1; i < (j+1)*f.length/divideT+1; i++) {
f[i][k] = getParents().get(k).getPossibleOutcomes().get(j%numOutcomesT);
}
}
for (int i = (divideT-1)*f.length/divideT+1; i <f.length ;i++) {
f[i][k] = (getParents().get(k)).getPossibleOutcomes().get(numOutcomesT-1);
}
}
//variable's col
int numOutcomesU = getPossibleOutcomes().size();
int colNumU = p;
int divideU = (int) Math.pow(numOutcomesU, colNumU+1);
for (int j = 1 ; j < f.length ; j ++) {
f[j][colNumU] = getPossibleOutcomes().get((j-1)%numOutcomesU);
}
//probs col
//Fill in outcomes one by one
for (int i = 1 ; i < f.length ; i++) {
String[] curr = new String [getProbs().length];
curr= getProbs();
f[i][getParents().size()+1] = curr[i-1];
}
return f;
}
public String toString() {
String s ="";
s+= "=> Variable: " + this.name + " Parents: " + this.getParentsName() +" Possible outcomes: " + this.possibleOutcomes + " Wanted outcome: " + this.wantedOutcome + " Probabilities: " + Arrays.toString(this.probabilities) + "\n";
return s;
}
/**
* This function compares between two variable's names
* @param o is the other to be compared with.
*/
public int compareTo(Variable o) {
return (this.name.compareTo(o.name));
}
}