An open API service indexing awesome lists of open source software.

https://github.com/francescobozzo/asa_project

Exam project for Autonomous Software Agents 2023 @UniTN
https://github.com/francescobozzo/asa_project

Last synced: 3 months ago
JSON representation

Exam project for Autonomous Software Agents 2023 @UniTN

Awesome Lists containing this project

README

        

# Exam project for Autonomous Software Agents 2023 @UniTN

Students:

- Federico Izzo: 229316
- Francesco Bozzo: 229312

## How to install

```bash
git clone [email protected]:francescobozzo/asa_project.git
npm install
```

## How to run

- single agent
- distributed agent
- leader agent with plan sharing v1

```bash
git checkout single-multi-v1
npm start
```

- leader agent with plan sharing v2

```bash
git checkout main
npm start
```

## Useful resources

- [slides about multi-goal A* and IDA*](http://www.cs.cmu.edu/~maxim/classes/robotplanning_sp19/lectures/mgoalastarandida_16350_sp19.pdf)
- [A* introduction](https://www.redblobgames.com/pathfinding/a-star/introduction.html)