From 964c593875ed130c63be3abdd25e9cdc404bf2ce Mon Sep 17 00:00:00 2001 From: Valentin Sulzer Date: Thu, 10 Dec 2020 09:07:06 -0500 Subject: [PATCH] #300 remove Plots --- test/MOL_1D_Linear_Diffusion.jl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/MOL_1D_Linear_Diffusion.jl b/test/MOL_1D_Linear_Diffusion.jl index 948a4816a..ed79289cc 100644 --- a/test/MOL_1D_Linear_Diffusion.jl +++ b/test/MOL_1D_Linear_Diffusion.jl @@ -307,13 +307,13 @@ end t = sol.t # Plot and save results - using Plots - plot() - for i in 1:4 - plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i])) - scatter!(x, u_exact(x, t[i])) - end - savefig("MOL_1D_Linear_Diffusion_Test05.png") + # using Plots + # plot() + # for i in 1:4 + # plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i])) + # scatter!(x, u_exact(x, t[i])) + # end + # savefig("MOL_1D_Linear_Diffusion_Test05.png") # Test against exact solution for i in 1:size(t,1)