Mercurial > hg > octave-lyh
comparison liboctave/LPsolve.h @ 1867:52e7bca8ce33
[project @ 1996-02-04 11:19:32 by jwe]
author | jwe |
---|---|
date | Sun, 04 Feb 1996 11:28:40 +0000 |
parents | 503a75f6b9bc |
children | 1b57120c997b |
comparison
equal
deleted
inserted
replaced
1866:b6c48195b552 | 1867:52e7bca8ce33 |
---|---|
30 | 30 |
31 class ColumnVector; | 31 class ColumnVector; |
32 | 32 |
33 #include "LP.h" | 33 #include "LP.h" |
34 | 34 |
35 class LPsolve : public LP | 35 class |
36 LPsolve : public LP | |
36 { | 37 { |
37 public: | 38 public: |
38 | 39 |
39 LPsolve (void) | 40 LPsolve (void) |
40 : LP () { } | 41 : LP () { } |
41 | 42 |
42 LPsolve (const ColumnVector& c) | 43 LPsolve (const ColumnVector& c) |
55 : LP (a) { } | 56 : LP (a) { } |
56 | 57 |
57 LPsolve& operator = (const LPsolve& a) | 58 LPsolve& operator = (const LPsolve& a) |
58 { | 59 { |
59 if (this != &a) | 60 if (this != &a) |
60 { | 61 LP::operator = (a); |
61 LP::operator = (a); | 62 |
62 } | |
63 return *this; | 63 return *this; |
64 } | 64 } |
65 | 65 |
66 ~LPsolve (void) { } | 66 ~LPsolve (void) { } |
67 | 67 |