Issue698

Title successor generator: avoid copying operator lists
Priority feature Status resolved
Superseder Nosy List florian, jendrik, malte
Assigned To florian Keywords
Optional summary

Created on 2016-12-20.12:31:35 by jendrik, last changed by florian.

Messages
msg5979 (view) Author: florian Date: 2016-12-22.20:37:10
Merged, thanks.
msg5975 (view) Author: malte Date: 2016-12-22.18:17:04
Looks good to merge.
msg5972 (view) Author: jendrik Date: 2016-12-22.13:41:44
No objections from my side.
msg5970 (view) Author: florian Date: 2016-12-22.11:22:56
The results look fine to me.

http://ai.cs.unibas.ch/_tmp_files/pommeren/issue698-v1-issue698-base-issue698-v1-compare.html
http://ai.cs.unibas.ch/_tmp_files/pommeren/issue698-v1-issue698-base-issue698-v1-total_time-blind.png

Should I merge this?
msg5943 (view) Author: malte Date: 2016-12-20.17:47:17
Fine with it, too.

There are probably people (like Bjarne Stroustrup) who would say that we're
using lvalue references in too many method signatures, but I don't think we need
to start rethinking our policy regarding these just now. But perhaps something
for the future when we have more experience.
msg5941 (view) Author: jendrik Date: 2016-12-20.17:44:17
The code looks good to me.
msg5939 (view) Author: florian Date: 2016-12-20.17:06:06
Here is a pull request on bitbucket (Jendrik agreed to have a look):
https://bitbucket.org/FlorianPommerening/downward-issues/pull-requests/29

Experiments are in the queue.
msg5921 (view) Author: jendrik Date: 2016-12-20.12:31:35
In issue688 we noticed that we can probably change

for (list<int> ops : operators_for_val) {

to 

for (list<int> &ops : operators_for_val) {

in successor_generator.cc.
History
Date User Action Args
2016-12-22 20:37:10floriansetstatus: reviewing -> resolved
messages: + msg5979
2016-12-22 18:17:04maltesetmessages: + msg5975
2016-12-22 13:41:44jendriksetmessages: + msg5972
2016-12-22 11:22:56floriansetmessages: + msg5970
2016-12-20 17:47:17maltesetmessages: + msg5943
2016-12-20 17:44:18jendriksetstatus: chatting -> reviewing
assignedto: florian
messages: + msg5941
2016-12-20 17:06:07floriansetstatus: unread -> chatting
messages: + msg5939
2016-12-20 12:31:35jendrikcreate