-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Student Sectioning: Added Restrictions
- restrictions are like reservations, that must be used and that do not reserve any space - there can be more than one restriction on an offering and the student must meet at least one that applies to her/him - restrictions do not compete with reservations - for an offering that has both reservations and restrictions, a student must meet one restriction that applies to him/her and must also follow the reservations - this allows UniTime to define, for example, which course configurations a student can take independently from the given reservations
- Loading branch information
1 parent
2cd2457
commit 49ef4ef
Showing
9 changed files
with
723 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
src/org/cpsolver/studentsct/constraint/RequiredRestrictions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package org.cpsolver.studentsct.constraint; | ||
|
||
import java.util.Set; | ||
|
||
import org.cpsolver.ifs.assignment.Assignment; | ||
import org.cpsolver.ifs.model.GlobalConstraint; | ||
import org.cpsolver.studentsct.model.CourseRequest; | ||
import org.cpsolver.studentsct.model.Enrollment; | ||
import org.cpsolver.studentsct.model.Request; | ||
|
||
|
||
/** | ||
* Required restrictions constraint. This global constraint ensures that no enrollment | ||
* is violating a restriction. That is, for each student that has at least one restriction | ||
* on the requested course, the given enrollment must match at least one of the restrictions. | ||
* | ||
* @version StudentSct 1.3 (Student Sectioning)<br> | ||
* Copyright (C) 2014 Tomas Muller<br> | ||
* <a href="mailto:muller@unitime.org">muller@unitime.org</a><br> | ||
* <a href="http://muller.unitime.org">http://muller.unitime.org</a><br> | ||
* <br> | ||
* This library is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation; either version 3 of the | ||
* License, or (at your option) any later version. <br> | ||
* <br> | ||
* This library is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. <br> | ||
* <br> | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not see | ||
* <a href='http://www.gnu.org/licenses/'>http://www.gnu.org/licenses/</a>. | ||
*/ | ||
public class RequiredRestrictions extends GlobalConstraint<Request, Enrollment> { | ||
|
||
/** | ||
* A given enrollment is conflicting, if there is restriction that is not met. | ||
* | ||
* @param enrollment {@link Enrollment} that is being considered | ||
* @param conflicts all computed conflicting requests are added into this set | ||
*/ | ||
@Override | ||
public void computeConflicts(Assignment<Request, Enrollment> assignment, Enrollment enrollment, Set<Enrollment> conflicts) { | ||
if (inConflict(assignment, enrollment)) | ||
conflicts.add(enrollment); | ||
} | ||
|
||
/** | ||
* A given enrollment is conflicting, if there is restriction that is not met. | ||
* | ||
* @param enrollment {@link Enrollment} that is being considered | ||
* @return true, if the enrollment does not follow a reservation that must be used | ||
*/ | ||
@Override | ||
public boolean inConflict(Assignment<Request, Enrollment> assignment, Enrollment enrollment) { | ||
return enrollment.isCourseRequest() && ((CourseRequest)enrollment.getRequest()).isNotAllowed(enrollment); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "RequiredRestrictions"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.