Source code for wolfhece.apps.Optimisation_hydro

"""
Author: HECE - University of Liege, Pierre Archambeau
Date: 2024

Copyright (c) 2024 University of Liege. All rights reserved.

This script and its content are protected by copyright law. Unauthorized
copying or distribution of this file, via any medium, is strictly prohibited.
"""

import ctypes
[docs] myappid = 'wolf_hece_uliege' # arbitrary string
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid) import wx from ..PyTranslate import _
[docs] def main(): app = wx.App() from .splashscreen import WolfLauncher first_launch = WolfLauncher(play_sound=False) from ..hydrology.Optimisation import Optimisation myOpti = Optimisation() myOpti.Show() app.MainLoop() print("That's all folks! ")
if __name__=='__main__': main()