From: guido Date: Mon, 3 Jul 2006 09:07:47 +0000 (+0000) Subject: add 1D problem X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb774ce6426d529c0b13aa71150d4fc2af776535;p=dealii-svn.git add 1D problem git-svn-id: https://svn.dealii.org/trunk@13325 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-4/Makefile b/deal.II/examples/step-4/Makefile index 3a6a3a4af6..366b8c588d 100644 --- a/deal.II/examples/step-4/Makefile +++ b/deal.II/examples/step-4/Makefile @@ -57,11 +57,13 @@ include $D/common/Make.global_options # # You may need to augment the lists of libraries when compiling your # program for other dimensions, or when using third party libraries -libs.g = $(lib-deal2-2d.g) \ +libs.g = $(lib-deal2-1d.g) \ + $(lib-deal2-2d.g) \ $(lib-deal2-3d.g) \ $(lib-lac.g) \ $(lib-base.g) -libs.o = $(lib-deal2-2d.o) \ +libs.o = $(lib-deal2-1d.o) \ + $(lib-deal2-2d.o) \ $(lib-deal2-3d.o) \ $(lib-lac.o) \ $(lib-base.o) diff --git a/deal.II/examples/step-4/step-4.cc b/deal.II/examples/step-4/step-4.cc index d6ff4ec32a..ed4161fa22 100644 --- a/deal.II/examples/step-4/step-4.cc +++ b/deal.II/examples/step-4/step-4.cc @@ -724,6 +724,11 @@ void LaplaceProblem::run () int main () { deallog.depth_console (0); + { + LaplaceProblem<1> laplace_problem_1d; + laplace_problem_1d.run (); + } + { LaplaceProblem<2> laplace_problem_2d; laplace_problem_2d.run ();