comparison model/version.c @ 0:5242703e91d3 tip

Initial checkin for AIM92 aimR8.2 (last updated May 1997).
author tomwalters
date Fri, 20 May 2011 15:19:45 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5242703e91d3
1 /*
2 Copyright (c) Applied Psychology Unit, Medical Research Council. 1988, 1989
3 ===========================================================================
4
5 Permission to use, copy, modify, and distribute this software without fee
6 is hereby granted for research purposes, provided that this copyright
7 notice appears in all copies and in all supporting documentation, and that
8 the software is not redistributed for any fee (except for a nominal shipping
9 charge). Anyone wanting to incorporate all or part of this software in a
10 commercial product must obtain a license from the Medical Research Council.
11
12 The MRC makes no representations about the suitability of this
13 software for any purpose. It is provided "as is" without express or implied
14 warranty.
15
16 */
17
18 /*
19 version.c
20 =========
21
22 APU, ASP model version number.
23
24
25 Copyright (c), 1989 The Medical Research Council, Applied Psychology Unit.
26
27
28 Author : Mike Allerhand
29 Written : 4th Feb, 1992.
30
31 */
32
33 /****************************************************************************
34 The version number is the sccs <release-number>.<level-number> of this file.
35 This enables:
36 -easy incrementing of the version number for the novice user.
37 -centralised information on model versions, including date of new
38 version and comments (stored in s.version.c) about the new version.
39
40 The level number is incremented using:
41
42 sccs edit version.c
43 sccs delget version.c
44
45 The release number is set to N, (and the level number reset to 1) using:
46
47 sccs edit -rN version.c
48 sccs delget version.c
49
50 Dates and comments for previous versions can be reviewed using:
51 sccs prs version.c
52
53 The level and release number can be edited locally (ie not installed) using:
54 sccs get version.c
55 chmod +w version.c
56 < edit version_Id and re-make >
57 chmod -w version.c
58
59 ****************************************************************************/
60
61
62 static char *version_Id = "8.2 4/11/97" ;