From 89959421295496388d9ca651c4d19ccea645da22 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 28 Mar 2006 06:19:59 +0000 Subject: [PATCH] Remove a residual piece of code left over without much purpose in this program. git-svn-id: https://svn.dealii.org/trunk@12711 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-16/step-16.cc | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/deal.II/examples/step-16/step-16.cc b/deal.II/examples/step-16/step-16.cc index fd9d400c02..1e2de26497 100644 --- a/deal.II/examples/step-16/step-16.cc +++ b/deal.II/examples/step-16/step-16.cc @@ -547,30 +547,6 @@ int main () LaplaceProblem<2> laplace_problem_2d; laplace_problem_2d.run (); - - // Finally, we have promised to - // trigger an exception in the - // Coefficient class. For this, we - // have to call its ``value_list'' - // function with two arrays of - // different size (the number in - // parentheses behind the name of - // the object). We have commented - // out these lines in order to - // allow the program to exit - // gracefully in normal situations - // (we use the program in - // day-to-day testing of changes to - // the library as well), so you - // will only get the exception by - // un-commenting the following - // lines. -/* - Coefficient<2> coefficient; - std::vector > points (2); - std::vector coefficient_values (1); - coefficient.value_list (points, coefficient_values); -*/ return 0; } -- 2.39.5