Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added numeric planning notebook #456

Merged
merged 4 commits into from
Jul 17, 2023
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
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
up_tamer_commit: "ddcb02f3457b097965d9d4596a972b5bf8f495ff"
up_pyperplan_commit: "124482387cdc5c7a5673ac6ab47002b4ae2fd682"
up_fast_downward_commit: "99dd5bce8f996a9557296644de38bdf94f1dbed8"
up_enhsp_commit: "e0c1567c30fe9eb6ec33bd8fdff24411c817cdee"
up_fmap_commit: "d0e3c0c920b3a515486ae7526c0fba51c75361e1"

jobs:
Expand Down Expand Up @@ -419,6 +420,22 @@ jobs:
- name: Install up-fast-downward
run: python3 -m pip install up-fast-downward/

- name: Setup java for ENHSP
uses: actions/setup-java@v2
with:
distribution: "microsoft"
java-version: "17"

- name: Checkout up-enhsp
uses: actions/checkout@v2
with:
repository: aiplan4eu/up-enhsp
path: up-enhsp
ref: ${{env.up_enhsp_commit}}

- name: Install up-enhsp
run: python3 -m pip install up-enhsp/

- name: Install up-aries
run: pip3 install up-aries

Expand Down
20 changes: 20 additions & 0 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,26 @@ In particular we will go through the following steps:
* call multiple planners in parallel.



Numeric Planning
----------------


.. image:: https://img.shields.io/badge/see-Github-579aca?logo=github
:target: https:///github.com/aiplan4eu/unified-planning/blob/master/docs/notebooks/01-numeric-planning.ipynb
:alt: Open In GitHub


.. image:: https://colab.research.google.com/assets/colab-badge.svg
:target: https://colab.research.google.com/github/aiplan4eu/unified-planning/blob/master/docs/notebooks/01-numeric-planning.ipynb
:alt: Open In Colab


In this notebook we show how to model a numeric problem.

We will define a simple problem with counters that must be incremented.


Optimal Planning
----------------

Expand Down
Loading
Loading