public class ExamInstructor extends Constraint<Exam,ExamPlacement>
iConstraintListeners, iId| Constructor and Description |
|---|
ExamInstructor(ExamModel model,
long id,
String name) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canConflict(Exam ex1,
Exam ex2)
True if the given two exams can have a direct instructor conflict with this
instructor, i.e., they can be placed at the same period.
|
int |
compareTo(ExamInstructor o)
Compare two instructors (by instructor ids)
|
void |
computeConflicts(Assignment<Exam,ExamPlacement> assignment,
ExamPlacement p,
Set<ExamPlacement> conflicts)
Compute conflicts between the given assignment of an exam and all the
current assignments (of this instructor).
|
boolean |
equals(Object o)
Compare two instructors for equality
|
Set<Exam> |
getExams(Assignment<Exam,ExamPlacement> assignment,
ExamPeriod period)
Exam(s) enrolled by the instructor that are scheduled in the given period
|
Set<Exam> |
getExamsADay(Assignment<Exam,ExamPlacement> assignment,
ExamPeriod period)
Exam(s) enrolled by the instructor that are scheduled in the given day
|
Set<Exam> |
getExamsADay(Assignment<Exam,ExamPlacement> assignment,
int day)
Exam(s) enrolled by the instructor that are scheduled in the given day
|
String |
getName()
Instructor name
|
List<ExamOwner> |
getOwners()
Courses and/or sections that this instructor is enrolled to
|
int |
hashCode()
Hash code
|
boolean |
hasName()
Instructor name
|
boolean |
inConflict(Assignment<Exam,ExamPlacement> assignment,
ExamPlacement p)
Check whether there is a conflict between the given assignment of an exam
and all the current assignments (of this instructor).
|
boolean |
isAllowDirectConflicts()
True when direct instructor conflicts are not allowed.
|
boolean |
isAvailable(ExamPeriod period)
True if the student is available (for examination timetabling) during the
given period
|
boolean |
isConsistent(ExamPlacement p1,
ExamPlacement p2)
True if the given exams can conflict (see
isAllowDirectConflicts()), or if they are placed
at different periods. |
boolean |
isHard()
Returns true if the constraint is hard.
|
void |
setAllowDirectConflicts(boolean allowDirectConflicts)
Set to true when direct instructor conflicts are not allowed.
|
void |
setAvailable(int period,
boolean available)
Set whether the student is available (for examination timetabling) during
the given period
|
String |
toString()
Instructor name
|
addConstraintListener, addVariable, assigned, assignedVariables, compareTo, computeConflictsNoForwardCheck, constraintListeners, countAssignedVariables, countVariables, getDescription, getId, getModel, removeConstraintListener, removeVariable, setModel, unassigned, variablespublic ExamInstructor(ExamModel model, long id, String name)
public boolean isAllowDirectConflicts()
public void setAllowDirectConflicts(boolean allowDirectConflicts)
allowDirectConflicts - true if direct conflicts are allowedpublic Set<Exam> getExams(Assignment<Exam,ExamPlacement> assignment, ExamPeriod period)
assignment - current assignmentperiod - given periodpublic Set<Exam> getExamsADay(Assignment<Exam,ExamPlacement> assignment, ExamPeriod period)
assignment - current assignmentperiod - given periodpublic Set<Exam> getExamsADay(Assignment<Exam,ExamPlacement> assignment, int day)
assignment - current assignmentday - given daypublic void computeConflicts(Assignment<Exam,ExamPlacement> assignment, ExamPlacement p, Set<ExamPlacement> conflicts)
isAllowDirectConflicts()) are considered.computeConflicts in class Constraint<Exam,ExamPlacement>assignment - current assignmentp - value to be assigned to its variableconflicts - resultant set of conflicting valuespublic boolean inConflict(Assignment<Exam,ExamPlacement> assignment, ExamPlacement p)
isAllowDirectConflicts()) are
considered.inConflict in class Constraint<Exam,ExamPlacement>assignment - current assignmentp - given valuepublic boolean isConsistent(ExamPlacement p1, ExamPlacement p2)
isAllowDirectConflicts()), or if they are placed
at different periods.isConsistent in class Constraint<Exam,ExamPlacement>p1 - a valuep2 - a valuepublic boolean equals(Object o)
equals in class Constraint<Exam,ExamPlacement>public int hashCode()
hashCode in class Constraint<Exam,ExamPlacement>public String getName()
getName in class Constraint<Exam,ExamPlacement>public boolean hasName()
public int compareTo(ExamInstructor o)
o - another instructorpublic List<ExamOwner> getOwners()
ExamOwnerpublic boolean isHard()
ConstraintisHard in class Constraint<Exam,ExamPlacement>public boolean isAvailable(ExamPeriod period)
period - a periodpublic void setAvailable(int period, boolean available)
period - a periodavailable - true if a student can attend an exam at the given period,
false if otherwisepublic boolean canConflict(Exam ex1, Exam ex2)
ex1 - an examex2 - an examExamStudent.isAllowDirectConflicts() and
Exam.isAllowDirectConflicts() for both exams