Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Latest commit

 

History

History
10 lines (9 loc) · 788 Bytes

CONTRIBUTING.md

File metadata and controls

10 lines (9 loc) · 788 Bytes

How to add a new model to the gallery

  1. Make sure you start from the master branch.
  2. Create a directory in problems and put the files description.txt, script.jl, and url.txt in it. See problems/LaserTag for an example.
    • url.txt should be the URL for a git repository (or other website) for the model.
    • description.txt should be a short description of the problem
    • script.jl should be a short Julia script that creates out.gif assuming that julia is executed with the environment in the problem directory.
  3. Use Pkg to create a Project.toml and Manifest.toml to specify the dependency environment.
  4. Generate README.md by running POMDPGallery.gen_readme().
  5. Submit a pull request with all of the new and updated files.