From: Guido Kanschat Date: Mon, 19 Jan 2004 11:11:47 +0000 (+0000) Subject: error in counting degree removed X-Git-Tag: v8.0.0~15908 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fb981a190751bc15d2ccd523834637e72028d4f;p=dealii.git error in counting degree removed git-svn-id: https://svn.dealii.org/trunk@8323 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/polynomials_bdm.cc b/deal.II/base/source/polynomials_bdm.cc index 8c5639df81..02862b7490 100644 --- a/deal.II/base/source/polynomials_bdm.cc +++ b/deal.II/base/source/polynomials_bdm.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2002, 2003 by the deal.II authors +// Copyright (C) 2000, 2001, 2002, 2003, 2004 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -69,7 +69,7 @@ PolynomialsBDM::compute (const Point &unit_point, for (unsigned int j=0;j::compute_node_matrix (Table<2,double>& A) const p(1) = x; break; } - std::cerr << p << std::endl; +// std::cerr << p << std::endl; compute (p, values, grads, grad_grads); for (unsigned int i=0;i::compute_node_matrix (Table<2,double>& A) const } } // Volume integrals are missing - Assert (polynomial_space.degree() < 2, + // + // This degree is one larger + Assert (polynomial_space.degree() <= 2, ExcNotImplemented()); }