Issue262

Title Small but strange option parser bug
Priority bug Status resolved
Superseder Nosy List malte, moritz, patrik
Assigned To moritz Keywords
Optional summary

Created on 2011-08-13.07:40:47 by patrik, last changed by malte.

Messages
msg1606 (view) Author: malte Date: 2011-08-13.15:52:09
Closing -- no need for Patrik to test this now that I could reproduce the bug
and the fix.
msg1605 (view) Author: malte Date: 2011-08-13.14:47:53
Never mind, I was expecting a compilation error, when of course the error would
appear at runtime. I do get the runtime error as expected.

With issues like these, it would be neat to have at least four build bots to
test all combinations of 32-bit and 64-bit compiles with 32-bit and 64-bit machines.
msg1604 (view) Author: moritz Date: 2011-08-13.14:25:02
> Strangely enough, I can't reproduce this on my new
> 64-bit machine, which build a 64-bit executable without complaints once I got
> rid of the "-m32" options. 

Strange. I don't have access to a 64-bit system, but I checked that
any_cast won't convert int64s to int32s. And there are very few
64-bit-systems where int=int64.
msg1603 (view) Author: malte Date: 2011-08-13.13:14:27
Thanks for the analysis! Strangely enough, I can't reproduce this on my new
64-bit machine, which build a 64-bit executable without complaints once I got
rid of the "-m32" options. Oh well.

Fixed and pushed. Patrik, can you verify that the current code works after
getting rid of the "-m32" entries?

(BTW, last time we tested this, -m64 almost doubles memory consumption in some
configurations. So I wouldn't use this for serious benchmarking.)
msg1602 (view) Author: moritz Date: 2011-08-13.12:20:05
So making the template parameters explicit in the way Patrik did should
be enough.
msg1601 (view) Author: moritz Date: 2011-08-13.12:20:02
Probable problem:
The iterator arithmetic in "opts.set(k, it - enumeration.begin());". The
return type of "it - enumeration.begin()" is of type ptrdiff_t, which I
think is int64 on 64bit systems. But int=int32, even on 64bit systems.
But boost::any_cast only works when the types match exactly.
msg1600 (view) Author: malte Date: 2011-08-13.11:11:58
Moritz, any ideas?
msg1599 (view) Author: patrik Date: 2011-08-13.07:40:46
I had reason to compile FD on a 64-bit machine that was not set up to
cross-compile for 32-bit. Just removing the -m32 flags from the Makefiles were
enough to make it compile, but the resulting binary exhibited a strange bug: The
any_cast in Options::get failed for enums (in particular, for the cost_type
option, both when the option was given explicitly and when it was not, i.e.,
when using the default value).

To fix it, I replaced the two calls to opts.set(k, ...) in
OptionParser::add_enum_option by opts.set<int>(k, ...). After this, the planner
works as normal.

No idea why this behaviour showed up only in the 64-bit version. (It may have
nothing to do with that, I guess, could be a different version of boost
libraries or something.)
History
Date User Action Args
2011-08-13 15:52:10maltesetstatus: testing -> resolved
messages: + msg1606
2011-08-13 14:47:53maltesetmessages: + msg1605
2011-08-13 14:25:03moritzsetmessages: + msg1604
2011-08-13 13:14:28maltesetstatus: chatting -> testing
messages: + msg1603
2011-08-13 12:20:05moritzsetmessages: + msg1602
2011-08-13 12:20:02moritzsetmessages: + msg1601
2011-08-13 11:11:58maltesetstatus: unread -> chatting
nosy: + moritz
messages: + msg1600
assignedto: moritz
2011-08-13 07:40:47patrikcreate