* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP */ abstract class AdmissionAlgorithm { /** * Runs an algorithm that distributes all seats in the given CourseSet. * * @param CourseSet course set object * @return boolean Did the algorithm run successfully? */ public function run($courseSet) { return true; } } /* end of class AdmissionAlgorithm */ ?>