From 1dd31b807a5670b2c2138026f038473b1a3b139f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Mon, 10 Oct 2016 10:57:14 +0200 Subject: [PATCH] Drop start message thanking for the user meeting 2015 --- dumux/common/start.hh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dumux/common/start.hh b/dumux/common/start.hh index 9d592bfaab..57c73fef46 100644 --- a/dumux/common/start.hh +++ b/dumux/common/start.hh @@ -148,7 +148,7 @@ void dumuxMessage_(bool start) { std::srand(std::time(0)); // roll the dice to decide which start message will be displayed: - dice_ = std::rand() % 13; // has to be n+1 + dice_ = std::rand() % 12; // has to be n+1 } @@ -265,16 +265,6 @@ void dumuxMessage_(bool start) std::cout << "Chuck Norris has compiled DuMuX even two times in a row!" << std::endl; } break; - case 12: - std::cout << " Thank you all for joining and contributing to the first" << std::endl; - std::cout << "" << std::endl; - std::cout << " ____ __ ___ __ __" << std::endl; - std::cout << " / __ \\__ __/ |/ /_ _ \\ \\ /" << std::endl; - std::cout << " / / / / / / / /|_/ / / / /_\\_\\" << std::endl; - std::cout << " /_____/\\__,_/_/ /_/\\__,_/ User Meeting 2015 in Stuttgart" << std::endl; - std::cout << "" << std::endl; - std::cout << "For more information visit dumux.org or contact the mailing list." << std::endl; - break; // Note: If you add a case, you have to increase the modulus at the beginning of this function! default: // silence to delight Bernd -- GitLab