Issue411

Title iPDB crashes if the chosen pdb_max_size is small enough
Priority bug Status resolved
Superseder Nosy List malte, silvan
Assigned To silvan Keywords
Optional summary

Created on 2014-01-08.11:16:01 by silvan, last changed by silvan.

Messages
msg2970 (view) Author: silvan Date: 2014-02-15.17:32:38
Closed.
msg2963 (view) Author: malte Date: 2014-02-14.13:42:39
I agree -- ready to merge.
msg2962 (view) Author: silvan Date: 2014-02-14.12:00:15
Here are the results:
http://ai.cs.unibas.ch/_tmp_files/sieverss/2014-02-13-issue411-v1-conf.html

Except for some smallish memory changes, I cannot see anything strange.
msg2961 (view) Author: malte Date: 2014-02-13.14:00:17
I was just trying to avoid unnecessary work. :-)
msg2960 (view) Author: silvan Date: 2014-02-13.13:54:33
Well, I already set up the scripts (and tagged revisions) and these are very
small experiments anyway. And if I wanted to combine them, I'd need to integrate
two branches into a different repo/branch whatsoever. So I think unless you
don't insist on only having one experiment, I'll do two (for the moment).
msg2959 (view) Author: malte Date: 2014-02-13.13:49:11
For what it's worth, I think it's definitely enough to run one experiment for
all the current changes to iPDB rather than one for each change.
msg2958 (view) Author: silvan Date: 2014-02-13.13:40:52
I changed the handling of pair<int, int>.

I'll run a small experiment to make sure everything is okay.
msg2957 (view) Author: malte Date: 2014-02-12.23:06:43
Looks good to me, but I didn't have much time to look carefully. (If you prefer
to have a more careful review, maybe ask someone else to have a look since I'm
overbooked for the next week.) The one change I'd make is to return the
pair<int,int> rather than pass it as an output parameter.
msg2954 (view) Author: silvan Date: 2014-02-11.21:37:44
I removed the special case, incorporated your suggested note for the parser and
split up hill_climbing into smaller pieces.
msg2951 (view) Author: malte Date: 2014-02-10.19:56:36
I would prefer to get rid of the special case because it's more code, and even
with it, we still have to get the general case correct in corner cases where the
set of candidates runs empty, e.g. because we have included all possible
patterns. (By "empty" here I mean "logically empty", e.g. full of 0 entries.)

To avoid problems like in issue408, one thing we could try to do is break up the
hill_climbing method into smaller chunks. I think it is so large that it is very
easy to introduce bugs at the moment.
msg2950 (view) Author: silvan Date: 2014-02-10.19:49:30
You are right that we actually do not need any additional test against empty
initial candidate patterns.  The questions is whether we want to take any
measurements to prevent such problems in future from happening again and/or how
we would fix the problem from this issue in issue408.
msg2907 (view) Author: silvan Date: 2014-01-08.15:29:01
Malte, I sent you a code review invitation.
msg2906 (view) Author: silvan Date: 2014-01-08.14:09:11
The bug in question can only occur in the branch issue408, see msg2905.

I still implemented a few changes to prevent such accidents in future.
msg2903 (view) Author: silvan Date: 2014-01-08.11:16:00
If pdb_max_size is of size such that no goal-pattern can be extended without
compromising the allowed maximum size, then a segmentation fault occurs when
trying to access a candidate pattern at an invalid index.
History
Date User Action Args
2014-02-15 17:32:38silvansetstatus: in-progress -> resolved
messages: + msg2970
2014-02-14 13:42:39maltesetmessages: + msg2963
2014-02-14 12:00:15silvansetmessages: + msg2962
2014-02-13 14:00:17maltesetmessages: + msg2961
2014-02-13 13:54:33silvansetmessages: + msg2960
2014-02-13 13:49:11maltesetmessages: + msg2959
2014-02-13 13:40:52silvansetmessages: + msg2958
2014-02-12 23:06:43maltesetmessages: + msg2957
2014-02-11 21:37:44silvansetmessages: + msg2954
2014-02-10 19:56:36maltesetmessages: + msg2951
2014-02-10 19:49:31silvansetmessages: + msg2950
2014-01-08 15:29:01silvansetnosy: + malte
messages: + msg2907
2014-01-08 14:09:11silvansetmessages: + msg2906
2014-01-08 11:16:01silvancreate