Issue650

Title CEGAR: improve saturated cost computation
Priority feature Status resolved
Superseder Nosy List jendrik, malte, thomas
Assigned To jendrik Keywords
Optional summary

Created on 2016-04-25.15:03:55 by jendrik, last changed by jendrik.

Messages
msg5293 (view) Author: jendrik Date: 2016-04-27.18:17:22
Thomas agreed with the changes and the experiments showed no signs of errors 
(http://ai.cs.unibas.ch/_tmp_files/seipp/issue650-v2-issue650-base-issue650-v2-
compare.html for 
reference) so I merged and pushed the branch.
msg5292 (view) Author: jendrik Date: 2016-04-27.11:45:01
For reference, the error happened in depot:pfile1. After our offline discussion, I have 
changed the code to use -INF for the minimum cost. Do you agree with the implementation and 
the comments?

https://bitbucket.org/jendrikseipp/downward/commits/f65080f83d500e1b4a1d95e374b40b5492d02c4e
msg5291 (view) Author: thomas Date: 2016-04-27.08:58:51
Could you provide some of the instance names where the error occured? If there
are errors with INF, something is wrong with MAX_COST_VALUE too and we should
make sure that doesn't happen. I suspect that the A* implementation doesn't
check for operators with cost INF / MAX_COST_VALUE, which it should since
otherwise we compute (finite) sums that involve infinity.
msg5290 (view) Author: jendrik Date: 2016-04-26.17:54:29
Thanks!

Using -INF instead of -MAX_COST_VALUE produced some over-/underflow errors and 
the code is easier to read with -MAX_COST_VALUE, so I reverted the change. I'm 
currently running experiments to check that we didn't miss anything.
msg5289 (view) Author: thomas Date: 2016-04-26.13:34:54
I had another look at it and it looks good.
msg5288 (view) Author: jendrik Date: 2016-04-26.12:37:06
Thanks for your comments, Thomas! Can you have another look at the pull request, 
please?
msg5283 (view) Author: thomas Date: 2016-04-26.09:40:28
I am fairly certain that we can set the saturated costs of those operators to
-\infty, but I don't think it matters since it should only occur between dead
end states in all abstractions anyway.
msg5282 (view) Author: malte Date: 2016-04-25.19:17:03
I don't know enough about the context, but from the little I can see, all
transitions affecting unreachable states could be treated as if they don't exist
at all. Whether that's the same as setting their cost to -\infty depends on the
context of all this; I can't really say much about it without diving into this
much more deeply. (Which I can't do in the near future.)
msg5281 (view) Author: jendrik Date: 2016-04-25.19:13:11
I thought about this and believe that we could indeed set the saturated costs of 
an operator that only occurs between two abstract dead end states to -
MAX_COST_VALUE, because we can distribute the costs arbitrarily in a cost 
partitioning. Do you both agree?
msg5279 (view) Author: jendrik Date: 2016-04-25.17:57:24
Thanks Thomas, I had a look at your implementation. You can find mine at 
https://bitbucket.org/jendrikseipp/downward/pull-requests/48

Could you please check whether it's correct?

Let me copy a comment I made in the code:

"Note: Currently, we set the saturated costs of operators
between two dead end states to at least 0 (INF - INF). It is
unclear whether we can lower the saturated costs to
-MAX_COST_VALUE and still be admissible."

What's your take on this? If you want we can also discuss this tomorrow in 
person.
msg5277 (view) Author: thomas Date: 2016-04-25.15:21:00
My implementation for the same issue in the saturated state-dependent saturated
cost partitioning branch initializes the saturated cost of each operator as
-MAX_COST_VALUE, and then loops over all outgoing arcs and all self loops of all
states and updates the saturated cost by replacing it with the maximum of the
current value and the difference of the h-values of the states that connect the
corresponding arcs (see lines 477 to 498 in abstraction.cc of the cegar-sdac
branch, revision 9146).

Best,
Thomas
msg5276 (view) Author: jendrik Date: 2016-04-25.15:03:55
We'd like to move the  saturated cost computation out of the A* search code and 
maintain goal distances only for reachable states.
History
Date User Action Args
2016-04-28 10:33:19jendriksetstatus: reviewing -> resolved
2016-04-27 18:17:22jendriksetmessages: + msg5293
2016-04-27 11:45:01jendriksetmessages: + msg5292
2016-04-27 08:58:51thomassetmessages: + msg5291
2016-04-26 17:54:29jendriksetmessages: + msg5290
2016-04-26 13:34:54thomassetmessages: + msg5289
2016-04-26 12:37:06jendriksetmessages: + msg5288
2016-04-26 09:40:28thomassetmessages: + msg5283
2016-04-25 19:17:03maltesetmessages: + msg5282
2016-04-25 19:13:11jendriksetmessages: + msg5281
2016-04-25 17:57:24jendriksetstatus: chatting -> reviewing
messages: + msg5279
2016-04-25 15:21:00thomassetstatus: unread -> chatting
messages: + msg5277
2016-04-25 15:03:55jendrikcreate