-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathact
More file actions
executable file
·56 lines (52 loc) · 3.24 KB
/
act
File metadata and controls
executable file
·56 lines (52 loc) · 3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
############################################################################
# This file is part of the aGrUM/pyAgrum library. #
# #
# Copyright (c) 2005-2026 by #
# - Pierre-Henri WUILLEMIN(_at_LIP6) #
# - Christophe GONZALES(_at_AMU) #
# #
# The aGrUM/pyAgrum library is free software; you can redistribute it #
# and/or modify it under the terms of either : #
# #
# - the GNU Lesser General Public License as published by #
# the Free Software Foundation, either version 3 of the License, #
# or (at your option) any later version, #
# - the MIT license (MIT), #
# - or both in dual license, as here. #
# #
# (see https://agrum.gitlab.io/articles/dual-licenses-lgplv3mit.html) #
# #
# This aGrUM/pyAgrum library is distributed in the hope that it will be #
# useful, but WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, #
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, #
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR #
# OTHER DEALINGS IN THE SOFTWARE. #
# #
# See LICENCES for more details. #
# #
# SPDX-FileCopyrightText: Copyright 2005-2026 #
# - Pierre-Henri WUILLEMIN(_at_LIP6) #
# - Christophe GONZALES(_at_AMU) #
# SPDX-License-Identifier: LGPL-3.0-or-later OR MIT #
# #
# Contact : info_at_agrum_dot_org #
# homepage : http://agrum.gitlab.io #
# gitlab : https://gitlab.com/agrumery/agrum #
# #
############################################################################
import sys
import traceback
from acttools.main import main
if __name__ == "__main__":
try:
sys.exit(main())
except KeyboardInterrupt:
print("\n Shutdown requested...exiting \n")
sys.exit(500)
except Exception:
traceback.print_exc(file=sys.stdout)
sys.exit(600)