7
|
1 // f-lpsolve.cc -*- C++ -*- |
1
|
2 /* |
|
3 |
|
4 Copyright (C) 1993 John W. Eaton |
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
|
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
|
21 |
|
22 */ |
|
23 |
|
24 #ifdef __GNUG__ |
|
25 #pragma implementation |
|
26 #endif |
|
27 |
|
28 #include "LPsolve.h" |
|
29 |
|
30 #include "tree-const.h" |
|
31 #include "error.h" |
7
|
32 #include "f-lpsolve.h" |
1
|
33 |
|
34 #ifdef WITH_DLD |
|
35 tree_constant * |
|
36 builtin_lpsolve_2 (tree_constant *args, int nargin, int nargout) |
|
37 { |
|
38 return lpsolve (args, nargin, nargout); |
|
39 } |
|
40 #endif |
|
41 |
|
42 tree_constant * |
|
43 lpsolve (tree_constant *args, int nargin, int nargout) |
|
44 { |
|
45 // Assumes that we have been given the correct number of arguments. |
|
46 |
|
47 tree_constant *retval = NULL_TREE_CONST; |
|
48 message ("lpsolve", "sorry, not implemented yet"); |
|
49 return retval; |
|
50 } |
|
51 |
|
52 /* |
|
53 ;;; Local Variables: *** |
|
54 ;;; mode: C++ *** |
|
55 ;;; page-delimiter: "^/\\*" *** |
|
56 ;;; End: *** |
|
57 */ |