1 |
/* |
2 |
* Incorporation of the nonlinear solver CONOPT to ASCEND |
3 |
* by Ken Tyner |
4 |
* Created: 6/97 |
5 |
* Version: $Revision: 1.3 $ |
6 |
* Version control file: $RCSfile: slv8.h,v $ |
7 |
* Date last modified: $Date: 1997/08/12 16:43:46 $ |
8 |
* Last modified by: $Author: rv2a $ |
9 |
* |
10 |
* This file is part of the SLV solver. |
11 |
* |
12 |
* Copyright (C) 1997 Carnegie Mellon University |
13 |
* |
14 |
* The SLV solver is free software; you can redistribute |
15 |
* it and/or modify it under the terms of the GNU General Public License as |
16 |
* published by the Free Software Foundation; either version 2 of the |
17 |
* License, or (at your option) any later version. |
18 |
* |
19 |
* The SLV solver is distributed in hope that it will be |
20 |
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
21 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
22 |
* General Public License for more details. |
23 |
* |
24 |
* You should have received a copy of the GNU General Public License |
25 |
* along with the program; if not, write to the Free Software Foundation, |
26 |
* Inc., 675 Mass Ave, Cambridge, MA 02139 USA. Check the file named |
27 |
* COPYING. COPYING is found in ../compiler. |
28 |
* |
29 |
*/ |
30 |
|
31 |
/* |
32 |
* Contents: CONOPT module |
33 |
* |
34 |
* Authors: Ken Tyner and Vicente Rico-Ramirez |
35 |
* |
36 |
* Dates: 06/97 - original version |
37 |
* 07/97 - Creating a structure of function pointers so that |
38 |
* multiple calls to CONOPT can be made |
39 |
* 08/97 - Improving CONOPT message report to ASCEND |
40 |
* |
41 |
*/ |
42 |
#ifndef slv8__already_included |
43 |
#define slv8__already_included |
44 |
|
45 |
/* |
46 |
* requires #include "slv_client.h" |
47 |
*/ |
48 |
|
49 |
typedef struct slv8_system_structure *slv8_system_t; |
50 |
|
51 |
int slv8_register(SlvFunctionsT *); |
52 |
/* |
53 |
* This is the function that tells the system about the CONOPT solver. |
54 |
* Our index is not necessarily going to be 8. That everything here is |
55 |
* named slv8* is just a historical result and a convenient way of |
56 |
* shutting up the linker. |
57 |
*/ |
58 |
|
59 |
#endif /* ifndef slv8__already_included */ |