-
Notifications
You must be signed in to change notification settings - Fork 0
/
Faculty.java
334 lines (272 loc) · 6.69 KB
/
Faculty.java
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
package fypScheduling;
import java.io.Serializable;
import java.util.ArrayList;
public class Faculty implements Serializable {
private static int incID =0;
private int id;
private String name;
private ArrayList<Course> teachingCourses;
private ArrayList<Course> tutCourses;
private ArrayList<Course> labCourses;
private int appt;
private int adminAppt;
private int serviceHr;
private double teachingContribution;
private double allocatedWLU;
private ArrayList<Course> assignedCourse;
private int[] dayOfWork;
public Faculty(String name, int appt, int adminAppt, int serviceHr){
id = incID++;
this.name = name;
this.setAppt(appt);
this.setAdminAppt(adminAppt);
this.setServiceHr(serviceHr);
teachingCourses = new ArrayList<Course>();
tutCourses = new ArrayList<Course>();
labCourses = new ArrayList<Course>();
setTeachingContribution();
setAllocatedWLU(0);
assignedCourse = new ArrayList<Course>();
dayOfWork = new int[5];
resetDayOfWork();
}
public void resetDayOfWork() {
for (int i = 0; i <5; i++) {
dayOfWork[i] = 0;
}
}
public void increaseDayOfWork(int day) {
dayOfWork[day] = dayOfWork[day] + 1;
}
public int countDaysOfWork() {
int result = 0;
for (int i = 0; i < 5; i++) {
if (dayOfWork[i] != 0) {
result++;
}
}
return result;
}
public boolean isDayExceeded() {
int result = 0;
for (int i = 0; i < 5; i++) {
if (dayOfWork[i] != 0) {
result++;
}
}
if (result >= 3) {
return true;
}
return false;
}
public boolean isDayExceeded(int day) {
if (dayOfWork[day] > 1) {
return true;
}
return false;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ArrayList<Course> getCourses() {
return teachingCourses;
}
public ArrayList<Course> getTutCourses() {
return tutCourses;
}
public ArrayList<Course> getLabCourses() {
return labCourses;
}
public void setCourses(ArrayList<Course> courses) {
this.teachingCourses = courses;
}
public void setTutCourses(ArrayList<Course> courses) {
this.tutCourses = courses;
}
public void setLabCourses(ArrayList<Course> courses) {
this.labCourses = courses;
}
public void addCourse(Course target){
this.teachingCourses.add(target);
}
public void addTutCourse(Course target){
this.tutCourses.add(target);
}
public void addLabCourse(Course target){
this.labCourses.add(target);
}
public int getAppt() {
return appt;
}
public void setAppt(int appt) {
this.appt = appt;
}
public int getAdminAppt() {
return adminAppt;
}
public void setAdminAppt(int adminAppt) {
this.adminAppt = adminAppt;
}
public int getServiceHr() {
return serviceHr;
}
public void setServiceHr(int serviceHr) {
this.serviceHr = serviceHr;
}
public double getTeachingContribution() {
return this.teachingContribution;
}
public ArrayList<Course> getAssignedCourse() {
return assignedCourse;
}
public void setAssignedCourse(ArrayList<Course> assignedCourse) {
this.assignedCourse = assignedCourse;
}
public void setTeachingContribution() {
double baseContribution = 1, relaxation = 0.05;
if (this.appt == 1){
// Group 1 = Lecturer, research sci/fellow
// Group 2 = Asst,Assoc,Prof
baseContribution = 1.5;
}
if (adminAppt == 1){
relaxation += 0.3;
}
else if (this.adminAppt == 2){
relaxation += 0.5;
}
else if (this.adminAppt == 3){
relaxation += 1;
}
if (this.serviceHr > 300){
relaxation += 0.2;
}
else if (this.serviceHr > 200){
relaxation += 0.1;
}
this.teachingContribution = baseContribution - relaxation;
if (this.teachingContribution < 0){
this.teachingContribution = 0;
}
}
public boolean isTeachable(String target){
for(Course child : this.teachingCourses){
if (child !=null){
if (child.getCourseNum() == target ){
return true;
}
}
}
return false;
}
public boolean isTeachableTut(String target){
for(Course child : this.tutCourses){
if (child !=null){
if (child.getCourseNum() == target){
return true;
}
}
}
return false;
}
public boolean isTeachableLab(String target){
for(Course child : this.labCourses){
if (child !=null){
if (child.getCourseNum() == target){
return true;
}
}
}
return false;
}
public double getAllocatedWLU() {
return allocatedWLU;
}
public void setAllocatedWLU(double allocatedWLU) {
this.allocatedWLU = allocatedWLU;
}
public void addWLU(double wlu) {
this.allocatedWLU += wlu;
}
public void resetWLUAllocated(){
this.allocatedWLU = 0;
}
public String toString(){
String result = this.id + "\t" + this.name +"\t"+ listOfCourse() + "\t\t\t" + teachingContribution;
return result;
}
public String listOfCourse(){
String result = "[";
for (Course child : teachingCourses){
if (child !=null){
result += " " + child.getCourseNum();
}
}
result +=" ] [";
for (Course child : tutCourses){
if (child !=null){
result += " " + child.getCourseNum();
}
}
result +=" ] [";
for (Course child : labCourses){
if (child !=null){
result += " " + child.getCourseNum();
}
}
result +=" ]";
return result;
}
public String listOfCourse2(){
String result = "[";
for (Course child : assignedCourse){
if (child !=null){
result += " " + child.getCourseNum();
}
}
result +=" ]";
return result;
}
public boolean assignedContained(int target) {
for(int i = 0; i < assignedCourse.size(); i++) {
int compareID = assignedCourse.get(i).getId();
if (compareID == target) {
return false;
}
}
return true;
}
public void resetAssignedContained(){
assignedCourse = new ArrayList<Course>();
}
public String toString2(double avg) {
// TODO Auto-generated method stub
double optimal = teachingContribution * avg;
double wluDis = Math.round((((this.allocatedWLU - optimal) / optimal) * 100) /10) * 10;
return this.name + "\tTeaching Contribution: " + this.teachingContribution + "\tAllocated WLU: " + this.allocatedWLU + "\tWLU DIST: " + wluDis + "\t\t" + listOfCourse2();
}
public String toString3(double avg) {
// TODO Auto-generated method stub
double optimal = teachingContribution * avg;
double wluDis = Math.round((((this.allocatedWLU - optimal) / optimal) * 100) /10) * 10;
return this.name + "\tWLU DIST: " + wluDis;
}
public String toString4() {
return this.name + "\t " + countDaysOfWork();
}
public int getWLUVariation(double avg) {
double optimal = teachingContribution * avg;
double wluDis = Math.round((((this.allocatedWLU - optimal) / optimal) * 100) /10) * 10;
int result = (int) wluDis;
return result;
}
}