Skip to content

Commit 4795f3d

Browse files
authored
Metric ff (#152)
New version of metric-ff and updated post-processing script.
1 parent 32b9ca8 commit 4795f3d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
wget -q 'https://github.com/siftech/metric-ff/releases/download/metric-ff-sift-2.0.1/metric-ff.gz'
3+
wget -q 'https://github.com/siftech/metric-ff/releases/download/metric-ff-sift-2.0.2/metric-ff.gz'
44
gunzip metric-ff.gz
55
chmod +x metric-ff

planutils/packages/metric-ff-2.0/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Metric Fast-Forward 2.0: extended with numerical state variables and axioms",
3-
"description": "The system is an extension of the FF planner to numerical state variables, more precisely to PDDL2.1 level 2.",
3+
"description": "The system is an extension of the FF planner to numerical state variables and axioms, more precisely to PDDL2.1 level 2.",
44
"homepage": "https://fai.cs.uni-saarland.de/hoffmann/metric-ff.html",
55
"install-size": "1.3M",
66
"dependencies": [],

planutils/packages/metric-ff-2.0/run

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ shift 2
4040
$FF -o $DOMAIN -f $PROBLEM $@ > $OUT 2>$ERR
4141
# Getting plan
4242
grep '[0-9]:' $OUT | cut -d : -f 2- | \
43-
awk '{$1=$1;print}' | \
44-
awk -F" " '{ print("(", $0, ")")}' > $PROBLEM.plan
43+
awk '{$1=$1;print}' > $PROBLEM.plan
4544

4645
cat $OUT >&1
4746
cat $ERR >&2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = fh.read()
99

1010
setuptools.setup(name='planutils',
11-
version='0.10.20',
11+
version='0.10.21',
1212
description='General library for setting up linux-based environments for developing, running, and evaluating planners.',
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)