-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added more move heuristic configuration for only false non-shortest path
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
% ------------------------------------------------------------------------------ | ||
% Domain heuristics for improving move selection based on precomputed shortest | ||
% path relations. Distinguish between domain and non-domain minpath | ||
% calculations. | ||
% ------------------------------------------------------------------------------ | ||
#include "minpath.lp". | ||
|
||
#heuristic move(P,V,V') : edge(V,V',_), path(P,V''), | ||
not shortest_path(V,V'',_,V'). [1,false] | ||
|
||
% ------------------------------------------------------------------------------ | ||
% ------------------------------------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
%!flags! --heuristic=Domain | ||
%!desc! Use lower bounds and move heuristic | ||
% ------------------------------------------------------------------------------ | ||
% The "fast" path encoding with no options. | ||
% ------------------------------------------------------------------------------ | ||
|
||
#include "path/show_basic.lp". | ||
|
||
#include "common/task_assignment.lp". | ||
#include "common/task_sequencing_direct.lp". | ||
|
||
#include "path/task_to_path.lp". | ||
|
||
#include "path/move_choice_open.lp". | ||
|
||
#include "path/move_sequencing.lp". | ||
|
||
#include "path/visit_ordering.lp". | ||
|
||
#include "path/path_encoding.lp". | ||
|
||
#include "path/path_encoding_lb.lp". | ||
|
||
#include "path/move_choice_open_heur_nf.lp". | ||
|
||
% ------------------------------------------------------------------------------ | ||
% ------------------------------------------------------------------------------ | ||
|