Issue278

Title Various small translator fixes
Priority feature Status resolved
Superseder Nosy List jendrik, malte
Assigned To jendrik Keywords
Optional summary

Created on 2011-09-10.11:25:46 by jendrik, last changed by jendrik.

Files
File name Uploaded Type Edit Remove
js-issue278-eval.tar.xz jendrik, 2012-05-23.00:58:24 application/x-xz
Messages
msg2236 (view) Author: jendrik Date: 2012-05-24.11:15:24
Merged.
msg2235 (view) Author: malte Date: 2012-05-23.19:07:48
All looks good. Thanks a lot for the clean-up!
msg2234 (view) Author: jendrik Date: 2012-05-23.00:58:24
The experiment has completed and the translator memory usage stays the same while 
the times mostly decrease a little bit. Results are attached. 

Here is the diff: http://codereview.appspot.com/6223064/
msg2233 (view) Author: jendrik Date: 2012-05-22.15:30:03
Of course it does :)

Am 22.05.2012 15:23, schrieb Malte Helmert:
> Does it verify that the expected result is produced?
msg2232 (view) Author: malte Date: 2012-05-22.15:23:54
> The world just got a little better ;) I added a py.test test for this.

Does it verify that the expected result is produced?
IIRC, the test was of the kind "Let it run and let the human observer judge that
the output is indeed as it should be."
msg2231 (view) Author: jendrik Date: 2012-05-22.15:10:02
dummy text

ok, let's keep it.
>
> unary_actions was used by a one-off top-level script that apparently we deleted
> at some point. (It was used for some experiments, I forgot on what.) I think we
> can remove it.
>
> untyped_strips_preconditions and parse_typed should go.
all gone.
>
> popped_elements is meant for statistics and/or memory debugging. I'm not sure if
> we should remove it; it completes the interface of the class.
I fixed a bug in it (queue.queue -> self.queue) and will keep it.
>
> test_normalization is a test function whose use is currently commented out. It
> is useful for debugging this module and should stay. (In a better world, it
> would be a proper unit test -- maybe that can be added as a TODO.)
The world just got a little better ;) I added a py.test test for this.
msg2228 (view) Author: malte Date: 2012-05-22.14:32:27
The pretty printer was meant to be used for debugging output. I found it useful
to have around when I implemented the parser. I don't have strong objections to
removing it, but it might still be useful for testing.

unary_actions was used by a one-off top-level script that apparently we deleted
at some point. (It was used for some experiments, I forgot on what.) I think we
can remove it.

untyped_strips_preconditions and parse_typed should go.

popped_elements is meant for statistics and/or memory debugging. I'm not sure if
we should remove it; it completes the interface of the class.

test_normalization is a test function whose use is currently commented out. It
is useful for debugging this module and should stay. (In a better world, it
would be a proper unit test -- maybe that can be added as a TODO.)
msg2227 (view) Author: jendrik Date: 2012-05-22.14:25:02
You're right. Vulture is a static code analyzer, so dynamic attribute 
access is not discovered. The underscored functions are indeed required.

The other functions are not needed though and the pddl/pretty_print.py 
module is altogether unused. Shall I remove those functions and the file?
msg2226 (view) Author: malte Date: 2012-05-22.14:01:18
> I have written a simple tool that finds dead python code, do you want me to
> remove any of the unused functions it found?

I had a short look at the code, and I doubt these are all unused. Please try out
if the translator still works with them removed (in particular the _underscored
ones).
msg2225 (view) Author: jendrik Date: 2012-05-22.13:42:30
After having merged with default again (and therefore having a deterministic translator) these changes do not alter the SAS+ output 
(all first instances have the same files). Another search experiment is therefore unnecessary, but I will run a new translator 
experiment.

I have written a simple tool that finds dead python code, do you want me to remove any of the unused functions it found?

$ vulture .
build_model.py:300: Unused function 'popped_elements'
pddl/actions.py:76: Unused function 'unary_actions'
pddl/actions.py:111: Unused function 'untyped_strips_preconditions'
pddl/conditions.py:168: Unused function '_simplified'
pddl/conditions.py:252: Unused function '_untyped'
pddl/conditions.py:336: Unused function '_relaxed'
pddl/functions.py:13: Unused function 'parse_typed'
pddl/pretty_print.py:25: Unused function 'print_nested_list'
pddl_to_prolog.py:171: Unused function 'test_normalization'
msg1797 (view) Author: malte Date: 2011-09-22.18:45:01
Hmm, the LAMA coverage results are not good. In three domains we go from
"perfect" (all problems solved) to "not perfect any more"; this is a warning
sign. I'd like to know more about this first. I'm surprised that this can have
an impact in a domain like Satellite at all. Can you investigate what goes on
with the translator in those domains where we lose perfect coverage, and
specifically in Satellite? Is it due to a qualitative representation change, or
does the translator take more time now? (But I guess this is not measured by the
experiment?)

I'd be inclined not to merge the change if the performance difference cannot be
explained.
msg1796 (view) Author: jendrik Date: 2011-09-22.18:25:32
BTW: The one validate_error stems from a killed validator run. I think I fixed 
this in the scripts.
msg1795 (view) Author: jendrik Date: 2011-09-22.18:24:14
The experiments are finished. I ran the configs lama and yY. Do you think we can remove our permutations function?

http://www.informatik.uni-freiburg.de/~downward/exp-js-278-eval-abs-d.html (lama)
http://www.informatik.uni-freiburg.de/~downward/exp-js-278-eval-abs-p.html (lama)

http://www.informatik.uni-freiburg.de/~downward/exp-js-278-yY-eval-abs-d.html (yY)
http://www.informatik.uni-freiburg.de/~downward/exp-js-278-yY-eval-abs-p.html (yY)
msg1756 (view) Author: jendrik Date: 2011-09-10.17:14:47
I already removed some dead code and unnecessary imports in 
bitbucket/digitaldump/downward branch issue278 and removed our implementation of 
product since we're already depending on python 2.6 anyway. Currently I'm testing 
the impact of using python's built-in itertools.permutations.
History
Date User Action Args
2012-05-24 11:15:24jendriksetstatus: reviewing -> resolved
messages: + msg2236
2012-05-23 19:07:48maltesetmessages: + msg2235
2012-05-23 00:58:24jendriksetfiles: + js-issue278-eval.tar.xz
messages: + msg2234
2012-05-22 15:30:03jendriksetmessages: + msg2233
2012-05-22 15:23:54maltesetmessages: + msg2232
2012-05-22 15:10:02jendriksetmessages: + msg2231
2012-05-22 14:32:27maltesetmessages: + msg2228
2012-05-22 14:25:03jendriksetmessages: + msg2227
2012-05-22 14:01:18maltesetmessages: + msg2226
2012-05-22 13:42:30jendriksetmessages: + msg2225
2011-09-22 18:45:01maltesetmessages: + msg1797
2011-09-22 18:25:32jendriksetmessages: + msg1796
2011-09-22 18:24:15jendriksetstatus: chatting -> reviewing
messages: + msg1795
2011-09-10 17:14:47jendriksetstatus: unread -> chatting
nosy: + malte
messages: + msg1756
2011-09-10 11:25:46jendrikcreate