1 |
/* |
2 |
* SLV: Ascend Nonlinear Solver |
3 |
* by Karl Michael Westerberg |
4 |
* Created: 2/6/90 |
5 |
* Version: $Revision: 1.7 $ |
6 |
* Version control file: $RCSfile: slv7.h,v $ |
7 |
* Date last modified: $Date: 1997/07/18 12:16:33 $ |
8 |
* Last modified by: $Author: mthomas $ |
9 |
* |
10 |
* This file is part of the SLV solver. |
11 |
* |
12 |
* Copyright (C) 1990 Karl Michael Westerberg |
13 |
* Copyright (C) 1993 Joseph Zaher |
14 |
* Copyright (C) 1994 Joseph Zaher, Benjamin Andrew Allan |
15 |
* |
16 |
* The SLV solver is free software; you can redistribute |
17 |
* it and/or modify it under the terms of the GNU General Public License as |
18 |
* published by the Free Software Foundation; either version 2 of the |
19 |
* License, or (at your option) any later version. |
20 |
* |
21 |
* The SLV solver is distributed in hope that it will be |
22 |
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
23 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
24 |
* General Public License for more details. |
25 |
* |
26 |
* You should have received a copy of the GNU General Public License along with |
27 |
* the program; if not, write to the Free Software Foundation, Inc., 675 |
28 |
* Mass Ave, Cambridge, MA 02139 USA. Check the file named COPYING. |
29 |
* COPYING is found in ../compiler. |
30 |
*/ |
31 |
|
32 |
/*************************************************************************** |
33 |
*** Contents: NGSlv module |
34 |
*** |
35 |
*** Authors: Ben Allan, Kenneth Tyner |
36 |
*** |
37 |
*** Dates: 02/96 - copy of QRSlv: Modifications Pending |
38 |
*** |
39 |
*** |
40 |
*** |
41 |
***************************************************************************/ |
42 |
#ifndef slv7__already_included |
43 |
#define slv7__already_included |
44 |
|
45 |
/* requires #include "slv_client.h" */ |
46 |
|
47 |
typedef struct slv7_system_structure *slv7_system_t; |
48 |
|
49 |
int slv7_register(SlvFunctionsT *); |
50 |
/**********************************************************************\ |
51 |
This is the function that tells the system about the QRSlv solver. |
52 |
Our index is not necessarily going to be 0. That everything here is |
53 |
named slv0* is just a historical event. |
54 |
\**********************************************************************/ |
55 |
|
56 |
#endif |