From f520a029cc6303f75cc9ebcd0d728a414c2a8b9f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 24 Jul 2024 11:19:31 -0600 Subject: [PATCH] Make step-30 easier on the eyes. --- examples/step-30/step-30.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/step-30/step-30.cc b/examples/step-30/step-30.cc index 38215fd19c..39f6b08f4b 100644 --- a/examples/step-30/step-30.cc +++ b/examples/step-30/step-30.cc @@ -339,20 +339,18 @@ namespace Step30 template DGMethod::DGMethod(const bool anisotropic) : mapping() - , // Change here for DG methods of different degrees. - degree(1) + , degree(1) , fe(degree) , dof_handler(triangulation) , anisotropic_threshold_ratio(3.) , anisotropic(anisotropic) - , // As beta is a linear function, we can choose the degree of the // quadrature for which the resulting integration is correct. Thus, we // choose to use degree+1 Gauss points, which enables us to // integrate exactly polynomials of degree 2*degree+1, enough // for all the integrals we will perform in this program. - quadrature(degree + 1) + , quadrature(degree + 1) , face_quadrature(degree + 1) , dg() {} -- 2.39.5