Spectra/README.md

57 lines
1.5 KiB
Markdown
Raw Normal View History

2017-12-29 03:05:17 -05:00
# Spectra
2017-12-29 03:08:54 -05:00
2024-03-29 17:42:34 -04:00
Spectra is a general purpose planning system. It extends STRIPS-style planning by allowing arbitray DCEC and first-order formulae for state descriptions, background knowledge, and action descriptions rather than just predicates. This allows, for instance, handling domains with infinite or unbounded objects elegantly (among other things).
2017-12-29 03:11:50 -05:00
2017-12-29 03:21:34 -05:00
[Overview Presentation (pdf)](https://drive.google.com/open?id=1RHulFDgASACBkjvl-8ZEidj50NbGmKPu)
2017-12-29 03:11:50 -05:00
2017-12-29 03:52:08 -05:00
* Drawbacks of propositional planning (current planning systems):
2017-12-29 03:11:50 -05:00
* **Expressivity**: Cannot express arbitrary constraints. *“At every step make sure that no two blocks on the table have same color”*
* **Domain Size**: Scaling to large domains of arbitrary sizes poses difficulty.
2023-10-27 11:03:45 -04:00
## Installation
First, we need to make sure ShadowProver is installed.
```bash
git clone --recursive https://github.com/RAIRLab/ShadowProver.git
```
```bash
cd ShadowProver
mvn package
mvn install
```
Now, we can clone the Spectra repository.
```bash
git clone --recursive https://github.com/RAIRLab/Spectra.git
```
Similarly build and install the java project
```bash
cd Spectra
mvn package
mvn install
```
Now you should be able to run Spectra:
```bash
./run_spectra.sh [problem_file_path]
```
2017-12-29 03:52:55 -05:00
## Spectra's Architecture ##
2017-12-29 03:21:34 -05:00
2017-12-29 03:22:24 -05:00
![spectra-arch.png](https://bitbucket.org/repo/Mjq4bX/images/2495888298-spectra-arch.png)
2017-12-29 03:11:50 -05:00
2017-12-29 03:52:55 -05:00
## Example Input File ##
2017-12-29 03:11:50 -05:00
![examples.png](https://bitbucket.org/repo/Mjq4bX/images/3136509575-examples.png)
2017-12-29 03:40:04 -05:00