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
|
/* 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: holes.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 for each hole (free period) in the timetable for the
* constant resources of the specified type.
*
* For example: two free periods surrounded by non-free periods add two weights.
*
* @ingroup School scheduling
*/
/** @option resourcetype
*
* Use this option to specify one or more constant resource types. Specified
* resource types will have their timetables checked for holes by this module.
*
* For example, if you do not want students to have free periods in the middle
* of lectures:
*
* <module name="holes.so" weight="50" mandatory="yes">
* <option name="resourcetype">class</option>
* </module>
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include "module.h"
static int periods, days;
int fitness(chromo **c, ext **e, slist **s)
{
int first,last;
int free,nonfree;
int sum;
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;
last=-1;
free=0;
nonfree=0;
for(period=0;period<periods;period++) {
if(timext->tupleid[var_resid][con_resid]==-1) {
free++;
} else {
nonfree++;
last=period;
if (first==-1) first=period;
}
var_resid++;
}
if (last!=-1) {
sum=sum+(periods-nonfree-first-(periods-1-last));
}
}
};
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"), "holes.so");
}
while(result!=NULL) {
type=result->content_s;
snprintf(fitnessname, 256, "holes-%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");
}
return(0);
}
|