Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95082451
__init__.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Dec 12, 17:32
Size
1 KB
Mime Type
text/x-python
Expires
Sat, Dec 14, 17:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22891701
Attached To
rAKA akantu
__init__.py
View Options
__copyright__
=
(
"Copyright (©) 2016-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)"
"Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)"
)
__license__
=
"LGPLv3"
import
sys
as
__aka_sys
def
export
(
definition
):
"""
Decorator to export definitions from sub-modules to the top-level package
:param definition: definition to be exported
:return: definition
"""
__module
=
__aka_sys
.
modules
[
definition
.
__module__
]
__pkg
=
__aka_sys
.
modules
[
__module
.
__package__
]
__pkg
.
__dict__
[
definition
.
__name__
]
=
definition
if
'__all__'
not
in
__pkg
.
__dict__
:
__pkg
.
__dict__
[
'__all__'
]
=
[]
__pkg
.
__all__
.
append
(
definition
.
__name__
)
return
definition
try
:
from
termcolor
import
colored
except
ImportError
:
# noinspection PyUnusedLocal
def
colored
(
string
,
*
args
,
**
kwargs
):
return
string
__all__
=
[
'colored'
]
from
.
import
truss_fe
# NOQA: E402
from
.
import
static_solver
# NOQA: E402
from
.
import
dynamic_solver
# NOQA: E402
Event Timeline
Log In to Comment