changeset 1482:5f5d117aac3e

[project @ 1995-09-26 09:14:22 by jwe]
author jwe
date Tue, 26 Sep 1995 09:19:49 +0000
parents f8d8b6aa31aa
children 6422f071ba11
files liboctave/DASSL.cc liboctave/LPsolve.cc liboctave/LSODE.cc liboctave/NPSOL.cc liboctave/QPSOL.cc
diffstat 5 files changed, 12 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/DASSL.cc	Tue Sep 26 09:09:41 1995 +0000
+++ b/liboctave/DASSL.cc	Tue Sep 26 09:19:49 1995 +0000
@@ -198,8 +198,7 @@
 
 int
 ddassl_f (const double& time, double *state, double *deriv,
-	  double *delta, int& ires, double *rpar UNUSED,
-	  int *ipar UNUSED)
+	  double *delta, int& ires, double *, int *)
 {
   Vector tmp_deriv (nn);
   Vector tmp_state (nn);
@@ -225,9 +224,8 @@
 }
 
 int
-ddassl_j (const double& time, double *state UNUSED,
-	  double *deriv UNUSED, double *pd, const double& cj,
-	  double *rpar UNUSED, int *ipar UNUSED) 
+ddassl_j (const double& time, double *, double *, double *pd, const
+	  double& cj, double *, int *)
 {
   Vector tmp_state (nn);
   Vector tmp_deriv (nn);
--- a/liboctave/LPsolve.cc	Tue Sep 26 09:09:41 1995 +0000
+++ b/liboctave/LPsolve.cc	Tue Sep 26 09:19:49 1995 +0000
@@ -33,7 +33,7 @@
 #include "dColVector.h"
 
 Vector
-LPsolve::minimize (double& objf, int& inform, Vector& lambda)
+LPsolve::minimize (double&, int&, Vector&)
 {
   return Vector ();
 }
--- a/liboctave/LSODE.cc	Tue Sep 26 09:09:41 1995 +0000
+++ b/liboctave/LSODE.cc	Tue Sep 26 09:19:49 1995 +0000
@@ -156,7 +156,7 @@
 }
 
 int
-lsode_f (const int& neq, const double& time, double *state,
+lsode_f (const int& neq, const double& time, double *,
 	 double *deriv, int& ierr) 
 {
   ColumnVector tmp_deriv (neq);
@@ -179,8 +179,8 @@
 }
 
 int
-lsode_j (const int& neq, const double& time, double *state,
-	 const int& ml, const int& mu, double *pd, const int& nrowpd)
+lsode_j (const int& neq, const double& time, double *,
+	 const int&, const int&, double *pd, const int& nrowpd)
 {
   Matrix tmp_jac (neq, neq);
 
--- a/liboctave/NPSOL.cc	Tue Sep 26 09:09:41 1995 +0000
+++ b/liboctave/NPSOL.cc	Tue Sep 26 09:19:49 1995 +0000
@@ -71,7 +71,7 @@
 
 int
 npsol_objfun (int& mode, const int& n, double *xx, double *objf,
-	      double *objgrd, int* nstate)
+	      double *objgrd, int *)
 {
   Vector tmp_x (n);
 
@@ -117,8 +117,8 @@
 
 int
 npsol_confun (int& mode, const int& ncnln, const int& n,
-	      const int& nrowj, int* needc, double *xx,
-	      double *cons, double *cjac, int* nstate) 
+	      const int& nrowj, int *, double *xx, double *cons,
+	      double *cjac, int *)
 {
   Vector tmp_x (n);
   Vector tmp_c (ncnln);
@@ -361,7 +361,7 @@
 }
 
 NPSOL&
-NPSOL::option (char *s)
+NPSOL::option (char *)
 {
   cerr << "This function no longer has any effect.\n"
        << "Use the NPSOL_option class instead\n";
--- a/liboctave/QPSOL.cc	Tue Sep 26 09:09:41 1995 +0000
+++ b/liboctave/QPSOL.cc	Tue Sep 26 09:19:49 1995 +0000
@@ -57,7 +57,7 @@
 }
 
 int
-qphess (const int& n, const int& nrowh, const int& ncolh,
+qphess (const int& n, const int& nrowh, const int&,
 	const int& jthcol, double *hess, double *x, double *hx)
 {
   if (jthcol > 0)