Remove free plots memory function.

This commit is contained in:
Patrick Shriwise 2018-10-12 21:50:25 -05:00
parent 72bee80142
commit f57fa66983
2 changed files with 0 additions and 7 deletions

View file

@ -85,7 +85,6 @@ contains
call free_memory_geometry()
call free_memory_surfaces()
call free_memory_material()
call free_memory_plot()
call free_memory_volume()
call free_memory_simulation()
call free_memory_nuclide()

View file

@ -65,12 +65,6 @@ contains
! FREE_MEMORY_PLOT deallocates global arrays defined in this module
!===============================================================================
subroutine free_memory_plot()
n_plots = 0
if (allocated(plots)) deallocate(plots)
call plot_dict % clear()
end subroutine free_memory_plot
!===============================================================================
! RUN_PLOT controls the logic for making one or many plots
!===============================================================================