This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./install.py --clang-completer | |
Searching Python 2.7 libraries... | |
Found Python library: /usr/lib/python2.7/config-x86_64-linux-gnu/libpython2.7.so | |
Found Python headers folder: /usr/include/python2.7 | |
-- The C compiler identification is GNU 7.3.0 | |
-- The CXX compiler identification is GNU 7.3.0 | |
-- Check for working C compiler: /usr/bin/cc | |
-- Check for working C compiler: /usr/bin/cc -- works | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gym | |
# In order to run this script you must download and compile | |
# the following library: https://github.com/Svalorzen/AI-Toolbox | |
# Building it will create an MDP.so file which you can then | |
# include here. | |
import MDP | |
# Number of distretized pieces for each observation component | |
steps = 4; |