Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion planutils/packages/metric-ff-2.0/install
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

wget -q 'https://github.com/siftech/metric-ff/releases/download/metric-ff-sift-2.0.1/metric-ff.gz'
wget -q 'https://github.com/siftech/metric-ff/releases/download/metric-ff-sift-2.0.2/metric-ff.gz'
gunzip metric-ff.gz
chmod +x metric-ff
2 changes: 1 addition & 1 deletion planutils/packages/metric-ff-2.0/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Metric Fast-Forward 2.0: extended with numerical state variables and axioms",
"description": "The system is an extension of the FF planner to numerical state variables, more precisely to PDDL2.1 level 2.",
"description": "The system is an extension of the FF planner to numerical state variables and axioms, more precisely to PDDL2.1 level 2.",
"homepage": "https://fai.cs.uni-saarland.de/hoffmann/metric-ff.html",
"install-size": "1.3M",
"dependencies": [],
Expand Down
3 changes: 1 addition & 2 deletions planutils/packages/metric-ff-2.0/run
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ shift 2
$FF -o $DOMAIN -f $PROBLEM $@ > $OUT 2>$ERR
# Getting plan
grep '[0-9]:' $OUT | cut -d : -f 2- | \
awk '{$1=$1;print}' | \
awk -F" " '{ print("(", $0, ")")}' > $PROBLEM.plan
awk '{$1=$1;print}' > $PROBLEM.plan

cat $OUT >&1
cat $ERR >&2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = fh.read()

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