From 4b291e8d76d835e15ee0b2de5b96decd71c07062 Mon Sep 17 00:00:00 2001 From: Dylan Asmar Date: Fri, 26 Jan 2024 17:34:29 -0800 Subject: [PATCH] Removed RoombaPOMDPs after the example in attempt to fix GR_jll conflict later with TagPOMDPProblem --- docs/src/gallery.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/gallery.md b/docs/src/gallery.md index 179933a2..8391e787 100644 --- a/docs/src/gallery.md +++ b/docs/src/gallery.md @@ -105,6 +105,9 @@ sim = GifSimulator(; fps=5) saved_gif = simulate(sim, pomdp, planner, belief_updater) +Pkg.rm("RoombaPOMDPs") # hide +Pkg.update() # hide + println("gif saved to: $(saved_gif.filename)") ```