Issue803

Title IntHashSet: fix failing assertions in debug64 build
Priority bug Status resolved
Superseder Nosy List jendrik, malte
Assigned To jendrik Keywords
Optional summary

Created on 2018-06-20.18:10:38 by jendrik, last changed by jendrik.

Messages
msg7269 (view) Author: jendrik Date: 2018-06-21.16:57:00
Merged.
msg7268 (view) Author: malte Date: 2018-06-21.16:52:12
Looks good to merge!
msg7267 (view) Author: jendrik Date: 2018-06-21.13:50:10
Here are the experiment results:

http://ai.cs.unibas.ch/_tmp_files/seipp/issue803-v1-issue803-base-issue803-v1-compare.html
msg7266 (view) Author: malte Date: 2018-06-20.18:49:55
Code looks good.
msg7265 (view) Author: jendrik Date: 2018-06-20.18:43:44
I made a pull request at https://bitbucket.org/jendrikseipp/downward/pull-requests/95 .

I'll set up experiments later.
msg7264 (view) Author: jendrik Date: 2018-06-20.18:10:38
Planning with the debug64 build currently leads to an assertion failing:

src/search/algorithms/int_hash_set.h:210: std::pair<int, bool>
int_hash_set::IntHashSet<Hasher,
Equal>::insert(int_hash_set::IntHashSet<Hasher, Equal>::KeyType,
int_hash_set::IntHashSet<Hasher, Equal>::HashType) [with Hasher =
StateRegistry::StateIDSemanticHash; Equal =
StateRegistry::StateIDSemanticEqual; int_hash_set::IntHashSet<Hasher,
Equal>::KeyType = int; int_hash_set::IntHashSet<Hasher, Equal>::HashType
= unsigned int]: Assertion `hasher(key) == hash' failed.

Changing the line in question to "assert(static_cast<HashType>(hasher(key)) == 
hash);" solves the problem, but we'd also like to add more checks ensuring that 
we use the correct data types.
History
Date User Action Args
2018-06-21 16:57:00jendriksetstatus: reviewing -> resolved
messages: + msg7269
2018-06-21 16:52:12maltesetmessages: + msg7268
2018-06-21 13:50:10jendriksetmessages: + msg7267
2018-06-20 18:49:55maltesetmessages: + msg7266
2018-06-20 18:43:59jendriksetstatus: chatting -> reviewing
assignedto: jendrik
2018-06-20 18:43:44jendriksetstatus: unread -> chatting
messages: + msg7265
2018-06-20 18:10:38jendrikcreate