source: liacs/cvp/comments.txt@ 143

Last change on this file since 143 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

File size: 1.3 KB
Line 
1Here are my comments on the programming assignments and the last two
2homework assignments.
3
4Greetings,
5
6Thijs <thijsvanommen@gmail.com>
7
8Java, first part:
9- release_writelock() in ReadProcess should be release_readlock()
10- && in get_writelock() should be ||
11- writer does only a simple notify() when releasing its lock, while
12there might be many readers waiting that could go in at the same time
13Java, second part:
14- writerequest should be an int, not a boolean, as there can be many
15writers waiting to get a lock (you identified this problem in your
16report)
17- both notify()'s should now be notifyAll()'s: currently, a if either
18notify() happens to wake up a reader while a writer is also waiting
19for a lock, your program freezes
20
21Prolog, part 1c:
22- your paths don't include the first and last points, which do belong to
23 it
24 - path(a,c,[[a,b],[b,c],[c,b]],[b,c,b]) is satisfied, but the path
25 clearly isn't semi-acyclic
26 Prolog, part 2:
27 - comparisons should be strict
28 - "min/max" constants limit functionality
29
30 Scheme: GRADE 7,5
31 - late
32 - you don't relate the difference in programs to a possible difference
33 in paradigms
34 - substitute doesn't handle the empty list as its first parameter
35 - while you treat the strings recursively, they don't fully reflect
36 the nature of recursive lists, being stored linearly
Note: See TracBrowser for help on using the repository browser.