comparison src/lpsolve.cc @ 272:7ec58832918f

[project @ 1994-01-06 18:54:08 by jwe]
author jwe
date Thu, 06 Jan 1994 18:54:08 +0000
parents a99f28f5e351
children 88614b380d6e
comparison
equal deleted inserted replaced
271:64b486b19ce4 272:7ec58832918f
35 tree_constant * 35 tree_constant *
36 builtin_lpsolve_2 (const tree_constant *args, int nargin, int nargout) 36 builtin_lpsolve_2 (const tree_constant *args, int nargin, int nargout)
37 { 37 {
38 return lpsolve (args, nargin, nargout); 38 return lpsolve (args, nargin, nargout);
39 } 39 }
40
41 tree_constant *
42 builtin_lpsolve_options_2 (const tree_constant *args, int nargin, int nargout)
43 {
44 return lpsolve_options (args, nargin, nargout);
45 }
40 #endif 46 #endif
41 47
42 tree_constant * 48 tree_constant *
43 lpsolve (const tree_constant *args, int nargin, int nargout) 49 lpsolve (const tree_constant *args, int nargin, int nargout)
44 { 50 {
47 tree_constant *retval = NULL_TREE_CONST; 53 tree_constant *retval = NULL_TREE_CONST;
48 error ("lpsolve: not implemented yet"); 54 error ("lpsolve: not implemented yet");
49 return retval; 55 return retval;
50 } 56 }
51 57
58 tree_constant *
59 lpsolve_options (const tree_constant *args, int nargin, int nargout)
60 {
61 // Assumes that we have been given the correct number of arguments.
62
63 tree_constant *retval = NULL_TREE_CONST;
64 error ("lpsolve_options: not implemented yet");
65 return retval;
66 }
67
52 /* 68 /*
53 ;;; Local Variables: *** 69 ;;; Local Variables: ***
54 ;;; mode: C++ *** 70 ;;; mode: C++ ***
55 ;;; page-delimiter: "^/\\*" *** 71 ;;; page-delimiter: "^/\\*" ***
56 ;;; End: *** 72 ;;; End: ***