diff src/fsqp.cc @ 162:d1c5e5edbf1e

[project @ 1993-10-18 19:26:01 by jwe]
author jwe
date Mon, 18 Oct 1993 19:26:01 +0000
parents d68036bcad4c
children e83d64b26659
line wrap: on
line diff
--- a/src/fsqp.cc
+++ b/src/fsqp.cc
@@ -39,27 +39,27 @@
 
 #ifdef WITH_DLD
 tree_constant *
-builtin_fsqp_2 (tree_constant *args, int nargin, int nargout)
+builtin_fsqp_2 (const tree_constant *args, int nargin, int nargout)
 {
   return fsqp (args, nargin, nargout);
 }
 #endif
 
 double
-fsqp_objective_function (ColumnVector& x)
+fsqp_objective_function (const ColumnVector& x)
 {
   return 0.0;
 }
 
 ColumnVector
-fsqp_constraint_function (ColumnVector& x)
+fsqp_constraint_function (const ColumnVector& x)
 {
   ColumnVector retval;
   return retval;
 }
 
 tree_constant *
-fsqp (tree_constant *args, int nargin, int nargout)
+fsqp (const tree_constant *args, int nargin, int nargout)
 {
 /*