-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathversion.c
72 lines (64 loc) · 2.61 KB
/
version.c
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
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
** This Meschach Library is provided "as is" without any express
** or implied warranty of any kind with respect to this software.
** In particular the authors shall not be liable for any direct,
** indirect, special, incidental or consequential damages arising
** in any way from use of the software.
**
** Everyone is granted permission to copy, modify and redistribute this
** Meschach Library, provided:
** 1. All copies contain this copyright notice.
** 2. All modified copies shall carry a notice stating who
** made the last modification and the date of such modification.
** 3. No charge is made for this software or works derived from it.
** This clause shall not be construed as constraining other software
** distributed on the same medium as this software, nor is a
** distribution fee considered a charge.
**
***************************************************************************/
/* Version routine */
/* This routine must be modified whenever modifications are made to
Meschach by persons other than the original authors
(David E. Stewart & Zbigniew Leyk);
when new releases of Meschach are made the
version number will also be updated
*/
#include <stdio.h>
void m_version()
{
static char rcsid[] = "$Id: version.c,v 1.9 1994/03/24 00:04:05 des Exp $";
printf("Meshach matrix library version 1.2b\n");
printf("RCS id: %s\n",rcsid);
printf("Changes since 1.2a:\n");
printf("\t Fixed bug in schur() for 2x2 blocks with real e-vals\n");
printf("\t Fixed bug in schur() reading beyond end of array\n");
printf("\t Fixed some installation bugs\n");
printf("\t Fixed bugs & improved efficiency in spILUfactor()\n");
printf("\t px_inv() doesn't crash inverting non-permutations\n");
printf("\t Fixed bug in ifft()\n");
/**** List of modifications ****/
/* Example below is for illustration only */
/* printf("Modified by %s, routine(s) %s, file %s on date %s\n",
"Joe Bloggs",
"m_version",
"version.c",
"Fri Apr 5 16:00:38 EST 1994"); */
/* printf("Purpose: %s\n",
"To update the version number"); */
}
/* $Log: version.c,v $
* Revision 1.9 1994/03/24 00:04:05 des
* Added notes on changes to spILUfactor() and px_inv().
*
* Revision 1.8 1994/02/21 04:32:25 des
* Set version to 1.2b with bug fixes in schur() and installation.
*
* Revision 1.7 1994/01/13 05:43:57 des
* Version 1.2 update
*
* */