001 package net.sf.cpsolver.studentsct.heuristics.selection;
002
003 import java.util.HashSet;
004
005 import net.sf.cpsolver.studentsct.model.Student;
006
007 /**
008 * An interface to pass the list problematic students computed by a neighbour
009 * selection to the next neighbour selection.
010 *
011 * @version
012 * StudentSct 1.1 (Student Sectioning)<br>
013 * Copyright (C) 2007 Tomáš Müller<br>
014 * <a href="mailto:muller@unitime.org">muller@unitime.org</a><br>
015 * Lazenska 391, 76314 Zlin, Czech Republic<br>
016 * <br>
017 * This library is free software; you can redistribute it and/or
018 * modify it under the terms of the GNU Lesser General Public
019 * License as published by the Free Software Foundation; either
020 * version 2.1 of the License, or (at your option) any later version.
021 * <br><br>
022 * This library is distributed in the hope that it will be useful,
023 * but WITHOUT ANY WARRANTY; without even the implied warranty of
024 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
025 * Lesser General Public License for more details.
026 * <br><br>
027 * You should have received a copy of the GNU Lesser General Public
028 * License along with this library; if not, write to the Free Software
029 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
030 */
031
032 public interface ProblemStudentsProvider {
033 /** Set of problematic students ({@link Student} objects). */
034 public HashSet getProblemStudents();
035 }