Metadata-Version: 2.1
Name: rddlgym
Version: 0.5.12
Summary: rddlgym: A toolkit for working with RDDL domains in Python3.
Home-page: https://github.com/thiagopbueno/rddlgym
Author: Thiago P. Bueno
Author-email: thiago.pbueno@gmail.com
License: GNU General Public License v3.0
Description: # rddlgym [![Build Status](https://travis-ci.org/thiagopbueno/rddlgym.svg?branch=master)](https://travis-ci.org/thiagopbueno/rddlgym) [![License](https://img.shields.io/aur/license/yaourt.svg)](https://github.com/thiagopbueno/rddlgym/blob/master/LICENSE)
        
        
        A toolkit for working with RDDL domains in Python3.
        
        # Quickstart
        
        ```text
        $ pip3 install rddlgym
        ```
        
        # Usage
        
        rddlgym can be used as a standalone script or programmatically.
        
        
        ## Script mode
        
        ```text
        $ rddlgym --help
        usage: rddlgym [-h] [--rddl RDDL] [-v] {list,info,show}
        
        rddl-gym: A toolkit for working with RDDL domains in Python3.
        
        positional arguments:
          {list,info,show}  available commands
        
        optional arguments:
          -h, --help        show this help message and exit
          --rddl RDDL       RDDL id
          -v, --verbose     verbosity mode
        ```
        
        
        ## Programmatic mode
        
        ```python
        import rddlgym
        
        model_id = 'Reservoir-8'
        
        # Get raw RDDL model
        raw = rddlgym.make(model_id, mode=rddlgym.RAW)
        print(raw)
        
        # Get a RDDL parser
        parser = rddlgym.make(model_id, mode=rddlgym.AST)
        
        # Get a RDDL2TensorFlow compiler
        compiler = rddlgym.make(model_id, mode=rddlgym.SCG)
        ```
        
        
        # License
        
        Copyright (c) 2018-2019 Thiago Pereira Bueno All Rights Reserved.
        
        rddlgym is free software: you can redistribute it and/or modify it
        under the terms of the GNU Lesser General Public License as published by
        the Free Software Foundation, either version 3 of the License, or (at
        your option) any later version.
        
        rddlgym is distributed in the hope that it will be useful, but
        WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
        General Public License for more details.
        
        You should have received a copy of the GNU Lesser General Public License
        along with rddlgym. If not, see http://www.gnu.org/licenses/.
        
Keywords: rddl,toolkit
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.5
Description-Content-Type: text/markdown
