From: Ryan Grove Date: Fri, 20 May 2016 12:45:28 +0000 (-0400) Subject: rename to step-56 X-Git-Tag: v8.5.0-rc1~990^2~7 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3c13a24fef9f2281a36c9ee33671d66ddc8d37b;p=dealii.git rename to step-56 --- diff --git a/examples/step-55/CMakeLists.txt b/examples/step-56/CMakeLists.txt similarity index 95% rename from examples/step-55/CMakeLists.txt rename to examples/step-56/CMakeLists.txt index eef6addfe9..837559c57b 100644 --- a/examples/step-55/CMakeLists.txt +++ b/examples/step-56/CMakeLists.txt @@ -1,9 +1,9 @@ ## -# CMake script for the step-55 tutorial program: +# CMake script for the step-56 tutorial program: ## # Set the name of the project and target: -SET(TARGET "step-55") +SET(TARGET "step-56") # Declare all source files the target consists of. Here, this is only # the one step-X.cc file, but as you expand your project you may wish diff --git a/examples/step-55/doc/builds-on b/examples/step-56/doc/builds-on similarity index 100% rename from examples/step-55/doc/builds-on rename to examples/step-56/doc/builds-on diff --git a/examples/step-55/doc/intro.dox b/examples/step-56/doc/intro.dox similarity index 100% rename from examples/step-55/doc/intro.dox rename to examples/step-56/doc/intro.dox diff --git a/examples/step-55/doc/kind b/examples/step-56/doc/kind similarity index 100% rename from examples/step-55/doc/kind rename to examples/step-56/doc/kind diff --git a/examples/step-55/doc/results.dox b/examples/step-56/doc/results.dox similarity index 100% rename from examples/step-55/doc/results.dox rename to examples/step-56/doc/results.dox diff --git a/examples/step-55/doc/tooltip b/examples/step-56/doc/tooltip similarity index 100% rename from examples/step-55/doc/tooltip rename to examples/step-56/doc/tooltip diff --git a/examples/step-55/step-55.cc b/examples/step-56/step-56.cc similarity index 99% rename from examples/step-55/step-55.cc rename to examples/step-56/step-56.cc index 66c13f1961..7475c8286f 100644 --- a/examples/step-55/step-55.cc +++ b/examples/step-56/step-56.cc @@ -75,12 +75,12 @@ #include #include -namespace Step55 +namespace Step56 { using namespace dealii; // In order to make it easy to switch between the different solvers that are being - // used in Step-55, we declare an enum that can be passed as an argument to the + // used in step-56, we declare an enum that can be passed as an argument to the // constructor of the main class. struct SolverType { @@ -1172,7 +1172,7 @@ int main () try { using namespace dealii; - using namespace Step55; + using namespace Step56; const int degree = 1; const int dim = 3;