File:  [LON-CAPA] / capa / capa51 / pProj / capaRQO.h
Revision 1.3: download - view: text, annotated - select for diffs
Fri Jul 7 18:33:03 2000 UTC (23 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: version5-1-2-first_release, HEAD
- updating GPL notices

    1: /* broken start on constants/structs for the random question orderer
    2:    Copyright (C) 1992-2000 Michigan State University
    3: 
    4:    The CAPA system is free software; you can redistribute it and/or
    5:    modify it under the terms of the GNU Library General Public License as
    6:    published by the Free Software Foundation; either version 2 of the
    7:    License, or (at your option) any later version.
    8: 
    9:    The CAPA system is distributed in the hope that it will be useful,
   10:    but WITHOUT ANY WARRANTY; without even the implied warranty of
   11:    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   12:    Library General Public License for more details.
   13: 
   14:    You should have received a copy of the GNU Library General Public
   15:    License along with the CAPA system; see the file COPYING.  If not,
   16:    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   17:    Boston, MA 02111-1307, USA.
   18: 
   19:    As a special exception, you have permission to link this program
   20:    with the TtH/TtM library and distribute executables, as long as you
   21:    follow the requirements of the GNU GPL in regard to all of the
   22:    software in the executable aside from TtH/TtM.
   23: */
   24: 
   25: #define ALL_MIX     1
   26: #define IMMOBILE    2
   27: #define ALL_FIXED   3
   28: #define FIRST_FIXED 4
   29: #define BOTH_FIXED  5
   30: #define LAST_FIXED  6
   31: #define SINGLE      7
   32: #define RANGE       8
   33: 
   34: typedef struct _RandGroup {
   35:   int  type;
   36:   int *list;
   37:   int  length;
   38: } RandGroup_t;
   39: 
   40: typedef struct _RandQO {
   41:   int           num;
   42:   RandGroup_t **groups;
   43:   int          *used;
   44:   int           length;
   45:   int           lengthg;
   46: } RandQO_t;
   47: 
   48: 
   49: void rqo_finish();
   50: void rqo_1spec();
   51: void rqo_2spec();
   52: void start_rqo_type(int type);
   53: void append_rqo(Symbol*s);
   54: void prefix_rqo(Symbol*s);
   55: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>