From 4c884981f0154422864d2973ca0b588bd5b4a8fc Mon Sep 17 00:00:00 2001 From: Anthony Corso Date: Thu, 14 Dec 2023 15:19:13 -0800 Subject: [PATCH] fixed margin --- examples/geothermal_example.jl | 2 +- src/InfoGatheringPOMDPs.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/geothermal_example.jl b/examples/geothermal_example.jl index 71f0836..a7cc972 100644 --- a/examples/geothermal_example.jl +++ b/examples/geothermal_example.jl @@ -7,7 +7,7 @@ using CSV using Random using DataStructures using Plots -default(framestyle = :box, color_palette=:seaborn_deep6, fontfamily="Computer Modern", margin=5mm) +default(framestyle = :box, color_palette=:seaborn_deep6, fontfamily="Computer Modern", margin=5Plots.mm) # Define random seeds fix_solve_and_eval_seed = true # Whether the seed is set before each policy gen and evaluation. Seed is the eval index + test set. It is threadsafe. diff --git a/src/InfoGatheringPOMDPs.jl b/src/InfoGatheringPOMDPs.jl index b9c15c2..57aa30b 100644 --- a/src/InfoGatheringPOMDPs.jl +++ b/src/InfoGatheringPOMDPs.jl @@ -19,7 +19,7 @@ using StatsPlots using DataStructures # Default plotting things -default(framestyle = :box, color_palette=:seaborn_deep6, fontfamily="Computer Modern") +default(framestyle = :box, color_palette=:seaborn_deep6, fontfamily="Computer Modern", margin=5Plots.mm) export DiscreteUp include("discrete_updater.jl")