2023-10-12 08:17:30 +02:00
|
|
|
from importlib.machinery import SourceFileLoader as _SourceFileLoader
|
|
|
|
from importlib.util import spec_from_loader as _spec_from_loader, module_from_spec as _module_from_spec
|
|
|
|
class func:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _load_functions(path):
|
|
|
|
global _SourceFileLoader, _spec_from_loader, _module_from_spec, func
|
|
|
|
loader = _SourceFileLoader('func', path)
|
|
|
|
spec = _spec_from_loader(loader.name, loader)
|
|
|
|
func_ = _module_from_spec(spec)
|
|
|
|
loader.exec_module(func_)
|
|
|
|
for function in dir(func_):
|
|
|
|
if function.startswith('_'):
|
|
|
|
continue
|
|
|
|
setattr(func, function, getattr(func_, function))
|
|
|
|
_load_functions('tests/dictionaries_old/../eosfunc/test.py')
|
2021-04-13 19:05:01 +02:00
|
|
|
try:
|
2023-06-19 17:41:38 +02:00
|
|
|
from tiramisu4 import *
|
2023-10-12 08:17:30 +02:00
|
|
|
from tiramisu4.setting import ALLOWED_LEADER_PROPERTIES
|
2021-04-13 19:05:01 +02:00
|
|
|
except:
|
|
|
|
from tiramisu import *
|
2023-10-12 08:17:30 +02:00
|
|
|
from tiramisu.setting import ALLOWED_LEADER_PROPERTIES
|
|
|
|
ALLOWED_LEADER_PROPERTIES.add("basic")
|
|
|
|
ALLOWED_LEADER_PROPERTIES.add("normal")
|
|
|
|
ALLOWED_LEADER_PROPERTIES.add("expert")
|
2021-04-13 19:05:01 +02:00
|
|
|
option_2 = BoolOption(name="my_variable", doc="my_variable", default=True, properties=frozenset({"normal"}))
|
2023-10-12 08:17:30 +02:00
|
|
|
optiondescription_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2], properties=frozenset({"normal"}))
|
|
|
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_1])
|