From 184e791beebc7aeb36d2401687a097793fb584bf Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 4 Jul 2023 15:29:43 +0200 Subject: [PATCH] Update imports in README.md example (#506) * Update imports in README.md example * remove POMDPDistributions --------- Co-authored-by: Zachary Sunberg --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f59133ff..0610e756 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ using Pkg; Pkg.add("POMDPs"); Pkg.add("QMDP") To run a simple simulation of the classic [Tiger POMDP](https://people.csail.mit.edu/lpk/papers/aij98-pomdp.pdf) using a policy created by the QMDP solver, you can use the following code (note that POMDPs.jl is not limited to discrete problems with explicitly-defined distributions like this): ```julia -using POMDPs, QuickPOMDPs, POMDPModelTools, POMDPSimulators, QMDP +using POMDPs, QuickPOMDPs, POMDPTools, QMDP m = QuickPOMDP( states = ["left", "right"],