mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-16 22:35:41 +00:00
Estimated hours taken : 250
qcheck is an autotesting tool similar to Haskell's Quickcheck.
A collection of web pages are written as a user guide for quickcheck.
It covers the syntax and features supported by the current version of
quickcheck.
RELEASE_NOTES:
compiler/notes/authors.html:
extras/README:
Modified to mention quickcheck.
extras/quickcheck/qcheck.m:
New file that contains the source code for qcheck.
extras/quickcheck/rnd.m:
New file written by conway. Its functions are similar
to those in library random.m. The random numbers generated
with random.m functions show strong correlation in lower
bits; rnd.m does not seem have such problems.
extras/quickcheck/tutes/T1.html:
extras/quickcheck/tutes/T2.html:
extras/quickcheck/tutes/T3.html:
extras/quickcheck/tutes/T4.html:
extras/quickcheck/tutes/T5.html:
extras/quickcheck/tutes/T6.html:
extras/quickcheck/tutes/T7.html:
extras/quickcheck/tutes/T8.html:
extras/quickcheck/tutes/T9.html:
extras/quickcheck/tutes/T10.html:
New files, each html covers a topic.
extras/quickcheck/tutes/index.html:
New file, the index.
extras/quickcheck/tutes/mymax.m:
extras/quickcheck/tutes/nrev.m:
extras/quickcheck/tutes/nrev2.m:
New files, contains mymax/2, nrev/1 and nrev/2.
extras/quickcheck/tutes/use.m:
extras/quickcheck/tutes/use1.m:
extras/quickcheck/tutes/use11.m:
extras/quickcheck/tutes/use20.m:
extras/quickcheck/tutes/use21.m:
extras/quickcheck/tutes/use22.m:
extras/quickcheck/tutes/use31.m:
extras/quickcheck/tutes/use33.m:
extras/quickcheck/tutes/use51.m:
extras/quickcheck/tutes/use62.m:
extras/quickcheck/tutes/use71.m:
extras/quickcheck/tutes/use81.m:
extras/quickcheck/tutes/use91.m:
New files, contains examples shown in each tutorial.
73 lines
1.6 KiB
HTML
73 lines
1.6 KiB
HTML
|
|
|
|
<html>
|
|
<head>
|
|
<title>
|
|
Authors
|
|
</title>
|
|
</head>
|
|
|
|
<body
|
|
bgcolor="#ffffff"
|
|
text="#000000"
|
|
>
|
|
|
|
<hr>
|
|
<!-------------------------->
|
|
|
|
<p>
|
|
|
|
Each source file should contain a comment indicating the
|
|
main author(s) of that file. This is done not out of vanity,
|
|
but so that you know who to blame ;-). If you find any
|
|
of the source code difficult to understand or insufficiently
|
|
commented, please complain to the author and/or to mercury@cs.mu.oz.au.
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
<td>aet <td>Bert Thompson <td>aet@cs.mu.oz.au or bert_thompson@yahoo.com</tr>
|
|
<tr>
|
|
<td>benyi <td>Tibor Benyi <td>benyi@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>bromage <td>Andrew Bromage <td>bromage@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>conway <td>Tom Conway <td>conway@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>dgj <td>David Jeffery <td>dgj@students.cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>dougl <td>Mark Brown <td>dougl@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>dylan <td>Dylan Shuttleworth <td>dylan@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>fjh <td>Fergus Henderson <td>fjh@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>jahier <td>Erwan Jahier <td>jahier@irisa.fr </tr>
|
|
<tr>
|
|
<td>ksiew <td>Steven Siew <td>ksiew@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>petdr <td>Peter Ross <td>petdr@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>schachte <td>Peter Schachte <td>schachte@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>squirrel <td>Jane Langley <td>jal@cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>stayl <td>Simon Taylor <td>stayl@students.cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>xcsm <td>Simon Mei <td>xcsm@students.cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>trd <td>Tyson Dowd <td>trd@students.cs.mu.oz.au </tr>
|
|
<tr>
|
|
<td>zs <td>Zoltan Somogyi <td>zs@cs.mu.oz.au </tr>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
<hr>
|
|
<!-------------------------->
|
|
|
|
Last update was $Date: 2001-05-31 02:08:43 $ by $Author: xcsm $@cs.mu.oz.au. <br>
|
|
</body>
|
|
</html>
|