diff src/fsolve.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/fsolve.cc	Sat Oct 16 17:21:25 1993 +0000
+++ b/src/fsolve.cc	Mon Oct 18 19:26:01 1993 +0000
@@ -39,7 +39,7 @@
 
 #ifdef WITH_DLD
 tree_constant *
-builtin_fsolve (tree_constant *args, int nargin, int nargout)
+builtin_fsolve (const tree_constant *args, int nargin, int nargout)
 {
   return fsolve (args, nargin, nargout);
 }
@@ -71,7 +71,7 @@
 }
 
 ColumnVector
-fsolve_user_function (ColumnVector& x)
+fsolve_user_function (const ColumnVector& x)
 {
   ColumnVector retval;
 
@@ -117,7 +117,7 @@
 }
 
 tree_constant *
-fsolve (tree_constant *args, int nargin, int nargout)
+fsolve (const tree_constant *args, int nargin, int nargout)
 {
 // Assumes that we have been given the correct number of arguments.