forked from richarddmorey/studentProjectAllocation
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfileFormatDetails.txt
More file actions
35 lines (23 loc) · 832 Bytes
/
fileFormatDetails.txt
File metadata and controls
35 lines (23 loc) · 832 Bytes
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
##################
students file:
row i : student i's preferred projects, in descending order of preference
variable number of columns
column 1 : unique student id
column 2-column n_i : list of project names
##################
##################
lecturers file:
row i : lecturer i's preferences, in descending order of preference
variable number of columns
column 1 : unique lecturer id
column 2 : lecturer capacity
column 3-column n_i : list of student ids, in descending order of preference
##################
##################
projects file:
row i : project i specification
three columns
column 1 : unique project id
column 2 : project capacity
column 3 : lecturer that offers project
##################