Closed GoogleCodeExporter closed 8 years ago
Never mind, I forgot to make a copy constructor that always uses the current
class instance's mup::Value for its mup::Variable instead of the other class'
mup::Value. When pushing the class to a vector with v.push_back(C()) the final
mup::Variable ended up referring to a temporary mup::Value (created in C())
which was destroyed after the push_back.
Is there a use case for having multiple mup::Variables referring to the same
mup::Value? And even if there is I guess there'd be even less use for
intentionally copying a mup::Variable which would still refer to the same
mup::Value. Deleting the copy constructor for mup::Variable would've saved a
few hours of debugging...
Original comment by ilja.j.h...@nasa.gov
on 23 Jul 2014 at 6:45
Thanks for the clearification. There is no immediate use i can think of for
letting to variables point to the same value in regular use. There may be a
need to do it temporarily when storing Variable objects in STL containes. There
may also be the need to have a copy constructor when returning it in a tuple.
(I did not check this, just a guess...) Sorry for your debugging hours but you
know this is open source i get nothing out of it and you can rest assured that
i spent hundrets of hours coding and maintaining it.
Original comment by ib...@gmx.info
on 26 Jul 2014 at 2:12
Don't worry about the hours and muparserx is a nice library. There do appear to
be some rough corner cases though, like this issue and 39. I'm not sure whether
the rule or three or five is relevant here but since there is no default
constructor there probably shouldn't be a copy constructor either. A variable
and value seem to always go together and copying a variable alone probably
doesn't make sense.
In the long run variables and values could be merged together or is either one
needed separately? Actually couldn't both be part of parser? It already has
DefineVar("r", var), why couldn't that create an internal pair of variable and
value which are exposed from parser by e.g. parser.Get("r") = 3? Another
example: if parser.Type("r") == 'm' then parser.Get("r").At(i) = 3.
Original comment by ilja.j.h...@nasa.gov
on 26 Jul 2014 at 5:13
At some point in the future variables and values will probably merge due to
implementation reasons. Lookup with a Get("...") interface will not happen
though.
Original comment by ib...@gmx.info
on 31 Jul 2014 at 8:04
Original issue reported on code.google.com by
ilja.j.h...@nasa.gov
on 23 Jul 2014 at 4:43