# HG changeset patch # User jwe # Date 823331572 0 # Node ID 46ab6238fa79189b77003133a8dd159a24732740 # Parent 5cc18ea5c048ca79fb91b97d840bfa51e3b045fd [project @ 1996-02-03 07:12:52 by jwe] diff --git a/liboctave/NPSOL.h b/liboctave/NPSOL.h --- a/liboctave/NPSOL.h +++ b/liboctave/NPSOL.h @@ -163,6 +163,15 @@ NPSOL (const NPSOL& a) : NLP (a), NPSOL_options () { } + NPSOL& operator = (const NPSOL& a) + { + NLP::operator = (a); + NPSOL_options::operator = (a); + return *this; + } + + ~NPSOL (void) { } + ColumnVector do_minimize (double& objf, int& inform, ColumnVector& lambda); };