DACBench icon indicating copy to clipboard operation
DACBench copied to clipboard

More options for FD

Open TheEimer opened this issue 4 years ago • 3 comments

FastDownward has a few hardcoded elements right now that should be optional. This includes:

  • State Features
  • Heuristics
  • FD output location (currently logs are discarded)

TheEimer avatar Dec 10 '20 07:12 TheEimer

Heuristics and output are covered, state feature selection should be done after progress with cross-domain features

TheEimer avatar Dec 10 '20 14:12 TheEimer

Also useful: memory limit and overall runtime for fd planner.

TheEimer avatar Dec 16 '20 12:12 TheEimer

Example:

333 self.fd = subprocess.Popen( 334 [ 335 "python3", 336 f"{self.fd_path}", 337 "--overall-time-limit", 338 "300", 339 "--overall-memory-limit", 340 "4G", 341 self.domain_file, 342 self.instance, 343 "--search", 344 self.argstring, 345 ], 346 stdout=fp,

TheEimer avatar Dec 16 '20 12:12 TheEimer