Deallocate all the array used
subroutine destroy_scheme()
!< Deallocate all the array used
implicit none
call dmsg(1, 'weno_NM', 'destroy_weno_NM')
call dealloc(x_qp_left)
call dealloc(x_qp_right)
call dealloc(y_qp_left)
call dealloc(y_qp_right)
call dealloc(z_qp_left)
call dealloc(z_qp_right)
end subroutine destroy_scheme