Mercurial > hg > octave-lyh
diff liboctave/DASSL.cc @ 532:2ca256b77602
[project @ 1994-07-20 19:56:55 by jwe]
author | jwe |
---|---|
date | Wed, 20 Jul 1994 19:56:55 +0000 |
parents | 4caf8fbeb778 |
children | 714fd17fca28 |
line wrap: on
line diff
--- a/liboctave/DASSL.cc +++ b/liboctave/DASSL.cc @@ -45,8 +45,8 @@ double*, double*, int*)); } -static DAERHSFunc user_fun; -static DAEJacFunc user_jac; +static DAEFunc::DAERHSFunc user_fun; +static DAEFunc::DAEJacFunc user_jac; static int nn; DAE::DAE (void) @@ -232,7 +232,7 @@ Matrix tmp_dfdxdot (nn, nn); Matrix tmp_dfdx (nn, nn); - DAEJac tmp_jac; + DAEFunc::DAEJac tmp_jac; tmp_jac.dfdxdot = &tmp_dfdxdot; tmp_jac.dfdx = &tmp_dfdx; @@ -254,7 +254,7 @@ { integration_error = 0; - if (DAEFunc::jac) + if (DAEFunc::jacobian_function ()) iwork [4] = 1; else iwork [4] = 0;