@@ -40,7 +40,6 @@ module m_weno
4040    !! of the characteristic decomposition are stored in  custom- constructed WENO- 
4141    !! stencils (WS) that are annexed to  each position of a given scalar field.
4242    !> @{
43- 
4443    real (wp), allocatable, dimension (:, :, :, :) ::  v_rs_ws_x, v_rs_ws_y, v_rs_ws_z
4544    !> @}
4645
@@ -52,52 +51,41 @@ module m_weno
5251    !! second dimension  identifies the position of its coefficients and the last
5352    !! dimension  denotes the cell- location in  the relevant coordinate direction.
5453    !> @{
55- 
5654    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbL_x
5755    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbL_y
5856    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbL_z
59- 
6057    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbR_x
6158    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbR_y
6259    real (wp), target, allocatable, dimension (:, :, :) ::  poly_coef_cbR_z
63- 
64-     !    real (wp), pointer, dimension (:, :, :) ::  poly_coef_L = > null()
65-     !    real (wp), pointer, dimension (:, :, :) ::  poly_coef_R = > null()
6660    !> @}
6761
6862    !> @name The ideal weights at the left and the right cell- boundaries and at the
6963    !! left and the right quadrature points, in  x- , y-  and z- directions. Note
7064    !! that the first dimension  of the array identifies the weight, while  the
7165    !! last denotes the cell- location in  the relevant coordinate direction.
7266    !> @{
73- 
7467    real (wp), target, allocatable, dimension (:, :) ::  d_cbL_x
7568    real (wp), target, allocatable, dimension (:, :) ::  d_cbL_y
7669    real (wp), target, allocatable, dimension (:, :) ::  d_cbL_z
7770
7871    real (wp), target, allocatable, dimension (:, :) ::  d_cbR_x
7972    real (wp), target, allocatable, dimension (:, :) ::  d_cbR_y
8073    real (wp), target, allocatable, dimension (:, :) ::  d_cbR_z
81- !    real (wp), pointer, dimension (:, :) ::  d_L = > null()
82- !    real (wp), pointer, dimension (:, :) ::  d_R = > null()
8374    !> @}
8475
8576    !> @name Smoothness indicator coefficients in  the x- , y- , and z- directions. Note
8677    !! that the first array dimension  identifies the smoothness indicator, the
8778    !! second identifies the position of its coefficients and the last denotes
8879    !! the cell- location in  the relevant coordinate direction.
8980    !> @{
90- 
9181    real (wp), target, allocatable, dimension (:, :, :) ::  beta_coef_x
9282    real (wp), target, allocatable, dimension (:, :, :) ::  beta_coef_y
9383    real (wp), target, allocatable, dimension (:, :, :) ::  beta_coef_z
94- !    real (wp), pointer, dimension (:, :, :) ::  beta_coef = > null()
9584    !> @}
9685
9786    ! END: WENO Coefficients
9887
9988    integer  ::  v_size !< Number of WENO- reconstructed cell- average variables
100- 
10189    !$acc declare create(v_size)
10290
10391    !> @name Indical bounds in  the s1- , s2-  and s3- directions
0 commit comments