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")