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
|
/* TABLIX, PGA general timetable solver */
/* Copyright (C) 2002-2005 Tomaz Solc */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* This program 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 General Public License for more details. */
/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* $Id: freemorning.c,v 1.4 2006-08-29 14:32:24 avian Exp $ */
/** @module
*
* @author Tomaz Solc
* @author-email tomaz.solc@tablix.org
*
* @brief Adds a weight if a constant resource of the specified type
* has the first event of a day later than the specified first period.
*
* This module is commonly used in school scheduling when it is desired that
* all teachers and/or all students start their day before or at a specified
* hour.
*
* For example, if you do not want students to have free periods in the
* morning:
*
* <module name="freemorning.so" weight="50" mandatory="yes">
* <option name="resourcetype">class</option>
* <option name="first-period">0</option>
* </module>
*
* @ingroup School scheduling, Multiweek scheduling
*/
/** @option resourcetype
*
* Use this option to specify one or more constant resource types. Specified
* resource types will have their timetables checked by this module.
*
*/
/** @option first-period
*
* Use this option to specify the first period. Resource types specified with
* the "resourcetype" option will have events scheduled so, that the first
* event each day will be at or before this period.
*
* If you don't specify this option, the default value of 0 is used.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include "module.h"
static int periods, days;
static int first_period=0;
int fitness(chromo **c, ext **e, slist **s)
{
int first;
int sum,subsum;
ext *timext;
int connum, con_resid;
int day, period, var_resid;
timext=e[0];
connum=timext->connum;
sum=0;
for(con_resid=0;con_resid<connum;con_resid++) {
var_resid=0;
for(day=0;day<days;day++) {
first=-1;
for(period=0;period<periods;period++) {
if(timext->tupleid[var_resid][con_resid]!=-1) {
if (first==-1) first=period;
}
var_resid++;
}
if(first!=-1) {
subsum=first-first_period;
if(subsum>0) sum+=subsum;
}
}
};
return(sum);
}
int module_init(moduleoption *opt)
{
fitnessfunc *f;
moduleoption *result;
char *type;
char fitnessname[256];
int n;
resourcetype *time;
time=restype_find("time");
if(time==NULL) {
error(_("Resource type '%s' not found"), "time");
return -1;
}
n=res_get_matrix(time, &days, &periods);
if(n) {
error(_("Resource type %s is not a matrix"), "time");
return -1;
}
result=option_find(opt, "resourcetype");
if(result==NULL) {
error(_("module '%s' has been loaded, but not used"), "freemorning.so");
}
while(result!=NULL) {
type=result->content_s;
snprintf(fitnessname, 256, "freemorning-%s", type);
f=fitness_new(fitnessname,
option_int(opt, "weight"),
option_int(opt, "mandatory"),
fitness);
if(f==NULL) return -1;
n=fitness_request_ext(f, type, "time");
if(n) return -1;
result=option_find(result->next, "resourcetype");
}
n=option_int(opt, "first-period");
if(n>=0) first_period=n;
return(0);
}
|