Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions pySDC/core/Controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,18 @@ def __setup_custom_logger(level=None, log_to_file=None, fname=None):
else:
pass

def welcome_message(self):
out = 'Welcome to the one and only, really very astonishing and 87.3% bug free' + \
'\n _____ _____ _____ ' + \
'\n / ____| __ \ / ____|' + \
'\n _ __ _ _| (___ | | | | | ' + \
'\n | \'_ \| | | |\___ \| | | | | ' + \
'\n | |_) | |_| |____) | |__| | |____ ' + \
'\n | .__/ \__, |_____/|_____/ \_____|' + \
'\n | | __/ | ' + \
'\n |_| |___/ '
self.logger.info(out)

def dump_setup(self, step, controller_params, description):
"""
Helper function to dump the setup used for this controller
Expand All @@ -109,6 +121,7 @@ def dump_setup(self, step, controller_params, description):
description (dict): description of the problem
"""

self.welcome_message()
out = 'Setup overview (--> user-defined) -- BEGIN'
self.logger.info(out)
out = '----------------------------------------------------------------------------------------------------\n\n'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ numpy>=1.15.4
scipy>=0.17.1
dill>=0.2.6
# These packages are used in examples or for testing, they can be omitted if necessary
matplotlib>=3.0
matplotlib>=3.0,<=3.5.3
numba>=0.35
sympy>=1.0
# These packages are required for some of the more involved examples (and data types etc.), can be omitted
Expand Down