From 038cc885bf2ba597c836c81e9a990195293f5cdc Mon Sep 17 00:00:00 2001 From: Antoine Marteau Date: Mon, 6 Jan 2025 18:06:37 +1100 Subject: [PATCH] postbone Jacobi --- NEWS.md | 8 ++++---- src/Polynomials/Polynomials.jl | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index 877a35139..83b1c74d8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,10 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added AMR-related methods `mark` and `estimate` to `Adaptivity` module. Implemented Dorfler marking strategy. Since PR[#1063](https://github.com/gridap/Gridap.jl/pull/1063). - Documentation and refactoring of Gridap.Polynomials. Since PR[#TODO](https://github.com/gridap/Gridap.jl/pull/#TODO). -- Three new families of polynomial bases in addition to `Monomial`, `Legendre` (former `Jacobi`) and `ModalC0`: `Chebyshev`, `Bernstein` and `Jacobi` -- `MonomialBasis` and `Q[Curl]GradMonomialBasis` have been generalized to `Legendre`, `Chebyshev`, `Bernstein` and `Jacobi` using the new `UniformPolyBasis` and `CompWiseTensorPolyBasis` respectively. -- `PCurlGradMonomialBasis` has been generalized to `Legendre`, `Chebyshev` and `Jacobi` using the new `RaviartThomasPolyBasis`. -- New aliases and high level constructor for `UniformPolyBasis` (former MonomialBasis): `MonomialBasis`, `LegendreBasis`, `ChebyshevBasis`, `BernsteinBasis`, `JacobiBasis`. +- Two new families of polynomial bases in addition to `Monomial`, `Legendre` (former `Jacobi`) and `ModalC0`: `Chebyshev` and `Bernstein` +- `MonomialBasis` and `Q[Curl]GradMonomialBasis` have been generalized to `Legendre`, `Chebyshev` and `Bernstein` using the new `UniformPolyBasis` and `CompWiseTensorPolyBasis` respectively. +- `PCurlGradMonomialBasis` has been generalized to `Legendre` and `Chebyshev` using the new `RaviartThomasPolyBasis`. +- New aliases and high level constructor for `UniformPolyBasis` (former MonomialBasis): `MonomialBasis`, `LegendreBasis`, `ChebyshevBasis` and `BernsteinBasis`. - New high level constructors for Nedelec and Raviart-Thomas polynomial bases: - Nedelec on simplex `PGradBasis(PT<:Polynomial, Val(D), order)` - Nedelec on n-cubes `QGradBasis(PT<:Polynomial, Val(D), order)` diff --git a/src/Polynomials/Polynomials.jl b/src/Polynomials/Polynomials.jl index 38e0cbc28..24f1c61fb 100644 --- a/src/Polynomials/Polynomials.jl +++ b/src/Polynomials/Polynomials.jl @@ -73,8 +73,6 @@ include("MonomialBases.jl") include("LegendreBases.jl") -#include("JacobiBases.jl") - include("ChebyshevBases.jl") include("BernsteinBases.jl")