-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubjectSet.c
More file actions
133 lines (121 loc) · 4.93 KB
/
Copy pathSubjectSet.c
File metadata and controls
133 lines (121 loc) · 4.93 KB
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
// CLASCAL (SubjectSet.c)
//
// Copyright (c) 2010 by John Ashley Burgoyne and the Royal Institute for the
// Advancement of Learning (McGill University). All rights reserved.
//
// This source is adapted from Suzanne Winsberg's CLASCAL, version 7.01 (May
// 1993), written in FORTRAN 77.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions, and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions, and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of McGill University nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "inlines.h"
#include "SubjectSet.h"
#include "_SubjectSet.h"
struct _SubjectSet {
size_t subjectCount;
char * * restrict subjectNames;
size_t pairCount;
SubjectPair * restrict subjectPairs;
};
/* N.B. The subject pair must be otherwise initialised before calling. */
static SubjectPair * NewSubjectPairs(const SubjectSet * restrict self)
{
if (!self || !self->pairCount) return NULL;
SubjectPair * restrict subjectPairs;
subjectPairs = SafeMalloc(self->pairCount, sizeof(SubjectPair));
size_t l = 0;
for (size_t i2 = 1; i2 < self->subjectCount; i2++) {
for (size_t i1 = 0; i1 < i2; i1++) {
subjectPairs[l].i1 = i1;
subjectPairs[l].i2 = i2;
l++;
}
}
return subjectPairs;
}
SubjectSet * NewSubjectSet(size_t subjectCount,
char * * restrict subjectNames)
{
if (!subjectCount || !subjectNames) return NULL;
if (!IsConvertibleToInt(subjectCount))
ExitWithError("Too many subjects to process");
SubjectSet * restrict self;
if ((self = malloc(sizeof(SubjectSet)))) {
self->subjectCount = subjectCount;
self->subjectNames = subjectNames;
self->pairCount = (SizeProduct(subjectCount, subjectCount - 1)
/ 2);
self->subjectPairs = NewSubjectPairs(self);
}
return self;
}
void DeleteSubjectSet(SubjectSet * restrict self) {
if (self) {
FreeAndClear(self->subjectPairs);
for (size_t i = 0; i < self->subjectCount; i++) {
FreeAndClear(self->subjectNames[i]);
}
FreeAndClear(self->subjectNames);
free(self);
}
}
size_t SubjectCount(const SubjectSet * restrict self)
{
return self ? self->subjectCount : 0;
}
const char * SubjectNameForIndex(const SubjectSet * restrict self,
size_t index)
{
return ((self && index < self->subjectCount)
? self->subjectNames[index]
: NULL);
}
size_t SubjectPairCount(const SubjectSet * restrict self)
{
return self ? self->pairCount : 0;
}
const SubjectPair * SubjectPairs(const SubjectSet * restrict self)
{
return self ? self->subjectPairs : NULL;
}
size_t PairNumberForSubjectPair(const SubjectSet * restrict self,
const SubjectPair * restrict pair)
{
if (!self) return 0;
if (!pair) return self->pairCount;
const size_t i1 = pair->i1 < pair->i2 ? pair->i1 : pair->i2;
const size_t i2 = pair->i1 < pair->i2 ? pair->i2 : pair->i1;
if (i1 >= self->subjectCount || i2 >= self->subjectCount || i1 == i2)
return self->pairCount;
const size_t offset = SizeProduct(i2, (i2 - 1)) / 2;
return SizeSum(i1, offset);
}