-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
32 additions
and
1,314 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,3 @@ | ||
# POMDPSimulators.jl | ||
# ~~POMDPSimulators.jl~~ | ||
|
||
[![Build Status](https://travis-ci.org/JuliaPOMDP/POMDPSimulators.jl.svg?branch=master)](https://travis-ci.org/JuliaPOMDP/POMDPSimulators.jl) | ||
[![Coverage Status](https://coveralls.io/repos/github/JuliaPOMDP/POMDPSimulators.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaPOMDP/POMDPSimulators.jl?branch=master) | ||
|
||
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliapomdp.github.io/POMDPSimulators.jl/stable) | ||
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliapomdp.github.io/POMDPSimulators.jl/latest) | ||
|
||
This package contains several simulators for POMDPs.jl. Please see the documentation: https://juliapomdp.github.io/POMDPSimulators.jl/latest | ||
|
||
To decide which simulator to use, see [Which simulator should I use?](https://juliapomdp.github.io/POMDPSimulators.jl/latest/which/) | ||
|
||
## Installation | ||
|
||
```julia | ||
import Pkg | ||
Pkg.add("POMDPSimulators") | ||
``` | ||
POMDPSimulators is deprecated and functionality has been moved to [POMDPTools](https://github.com/JuliaPOMDP/POMDPs.jl/tree/master/lib/POMDPTools). Please use that instead. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,16 @@ | ||
module POMDPSimulators | ||
|
||
using POMDPs | ||
using Random | ||
using ProgressMeter | ||
using DataFrames | ||
using POMDPPolicies | ||
using POMDPModelTools | ||
using BeliefUpdaters | ||
using Distributed | ||
using NamedTupleTools | ||
import POMDPLinter: @POMDP_require, @req, @subreq, implemented | ||
Base.depwarn(""" | ||
POMDPSimulators has been deprecated and functionality has been moved to POMDPTools. | ||
import POMDPs: simulate, discount | ||
Please replace `using POMDPSimulators` with `using POMDPTools`. | ||
""", :POMDPSimulators) | ||
|
||
export RolloutSimulator | ||
include("rollout.jl") | ||
using Reexport | ||
|
||
export | ||
SimHistory, | ||
AbstractSimHistory, | ||
HistoryIterator, | ||
eachstep, | ||
state_hist, | ||
action_hist, | ||
observation_hist, | ||
belief_hist, | ||
reward_hist, | ||
info_hist, | ||
ainfo_hist, | ||
uinfo_hist, | ||
exception, | ||
backtrace, | ||
undiscounted_reward, | ||
discounted_reward, | ||
n_steps, | ||
step_tuple | ||
include("history.jl") | ||
@reexport using POMDPTools.Simulators | ||
|
||
export sim | ||
include("sim.jl") | ||
|
||
export HistoryRecorder | ||
include("history_recorder.jl") | ||
|
||
export | ||
StepSimulator, | ||
stepthrough | ||
include("stepthrough.jl") | ||
|
||
export | ||
Sim, | ||
run, | ||
run_parallel, | ||
problem | ||
include("parallel.jl") | ||
|
||
export | ||
DisplaySimulator | ||
include("display.jl") | ||
import POMDPTools | ||
default_spec = POMDPTools.Simulators.default_spec | ||
|
||
end # module |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
831c7a4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
831c7a4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/64892
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: