1 |
/* |
2 |
* SLV: Ascend Numeric Solver |
3 |
* by Karl Michael Westerberg |
4 |
* Created: 2/6/90 |
5 |
* Version: $Revision: 1.7 $ |
6 |
* Version control file: $RCSfile: slv1.h,v $ |
7 |
* Date last modified: $Date: 1997/07/18 12:15:57 $ |
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) 1994 Joseph Zaher, Benjamin Andrew Allan |
14 |
* |
15 |
* The SLV solver is free software; you can redistribute |
16 |
* it and/or modify it under the terms of the GNU General Public License as |
17 |
* published by the Free Software Foundation; either version 2 of the |
18 |
* License, or (at your option) any later version. |
19 |
* |
20 |
* The SLV solver is distributed in hope that it will be |
21 |
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
22 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
23 |
* General Public License for more details. |
24 |
* |
25 |
* You should have received a copy of the GNU General Public License along with |
26 |
* the program; if not, write to the Free Software Foundation, Inc., 675 |
27 |
* Mass Ave, Cambridge, MA 02139 USA. Check the file named COPYING. |
28 |
* COPYING is found in ../compiler. |
29 |
*/ |
30 |
|
31 |
#ifndef slv1__already_included |
32 |
#define slv1__already_included |
33 |
|
34 |
/* requires #include "slv_client.h" */ |
35 |
|
36 |
typedef struct slv1_system_structure *slv1_system_t; |
37 |
|
38 |
int slv1_register(SlvFunctionsT *); |
39 |
/**********************************************************************\ |
40 |
This is the function that tells the system about the MINOS solver. |
41 |
Our index is not necessarily going to be 1. That everything here is |
42 |
named slv1* is just a historical event. |
43 |
\**********************************************************************/ |
44 |
|
45 |
#endif |
46 |
|
47 |
|
48 |
|