exploration
- Authors: Peter Mawhorter
- Consulted:
- Date: 2022-3-11
- Purpose: Represent & process exploration traces of discrete decision spaces.
Exploration contains sub-packages for dealing with exploration traces as
sequences of decision graphs (see exploration.core
) and as journals
(see exploration.journal
), and this version contains nascent code for
dealing with open-world exploration in terms of geographic features (see
geographic.py
). See ../README.md (or
https://pypi.org/project/exploration/)
for project README.
1""" 2- Authors: Peter Mawhorter 3- Consulted: 4- Date: 2022-3-11 5- Purpose: Represent & process exploration traces of discrete decision 6 spaces. 7 8Exploration contains sub-packages for dealing with exploration traces as 9sequences of decision graphs (see `exploration.core`) and as journals 10(see `exploration.journal`), and this version contains nascent code for 11dealing with open-world exploration in terms of geographic features (see 12`geographic.py`). See ../README.md (or 13[https://pypi.org/project/exploration/](https://pypi.org/project/exploration/)) 14for project README. 15""" 16 17__version__ = "0.7.4" 18 19# Imports define what's available when you do `import exploration` 20from .core import * # noqa 21from . import ( # noqa F401 22 base, 23 commands, 24 parsing, 25 core, 26 geographic, 27 graphs, 28 display, 29 journal, 30 main 31)