@@ -22,7 +22,7 @@ Create a discontinuous Galerkin spectral element method (DGSEM) using a
2222"""
2323const DGSEM = DG{Basis} where {Basis <: LobattoLegendreBasis }
2424
25- # TODO : Deprecated in v0.3 ( no longer documented)
25+ # This API is no longer documented, and we recommend avoiding its public use.
2626function DGSEM (basis:: LobattoLegendreBasis ,
2727 surface_flux = flux_central,
2828 volume_integral = VolumeIntegralWeakForm (),
@@ -32,7 +32,7 @@ function DGSEM(basis::LobattoLegendreBasis,
3232 typeof (volume_integral)}(basis, mortar, surface_integral, volume_integral)
3333end
3434
35- # TODO : Deprecated in v0.3 ( no longer documented)
35+ # This API is no longer documented, and we recommend avoiding its public use.
3636function DGSEM (basis:: LobattoLegendreBasis ,
3737 surface_integral:: AbstractSurfaceIntegral ,
3838 volume_integral = VolumeIntegralWeakForm (),
@@ -41,7 +41,7 @@ function DGSEM(basis::LobattoLegendreBasis,
4141 typeof (volume_integral)}(basis, mortar, surface_integral, volume_integral)
4242end
4343
44- # TODO : Deprecated in v0.3 ( no longer documented)
44+ # This API is no longer documented, and we recommend avoiding its public use.
4545function DGSEM (RealT, polydeg:: Integer ,
4646 surface_flux = flux_central,
4747 volume_integral = VolumeIntegralWeakForm (),
@@ -51,6 +51,7 @@ function DGSEM(RealT, polydeg::Integer,
5151 return DGSEM (basis, surface_flux, volume_integral, mortar)
5252end
5353
54+ # This API is no longer documented, and we recommend avoiding its public use.
5455function DGSEM (polydeg, surface_flux = flux_central,
5556 volume_integral = VolumeIntegralWeakForm ())
5657 DGSEM (Float64, polydeg, surface_flux, volume_integral)
0 commit comments