2024-07-06 15:26:01 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
2024-08-29 08:32:08 +02:00
from re import compile as re_compile
2024-07-06 15:26:01 +02:00
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' tests/dictionaries/../eosfunc/test.py ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
option_2 = FloatOption ( name = " var1 " , doc = " the first variable " , multi = True , default = [ 0.0 ] , default_multi = 0.0 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_3 = FloatOption ( name = " var2 " , doc = " the second variable " , multi = True , default = [ 0.0 ] , default_multi = 0.0 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_4 = FloatOption ( name = " var3 " , doc = " the third variable " , multi = True , default = [ 0.0 ] , default_multi = 0.0 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_5 = FloatOption ( name = " var4 " , doc = " the forth variable " , multi = True , default = [ 10.1 ] , default_multi = 10.1 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_6 = FloatOption ( name = " var5 " , doc = " the fifth variable " , multi = True , default = [ 10.1 ] , default_multi = 10.1 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_7 = FloatOption ( name = " var6 " , doc = " the sixth variable " , multi = True , default = [ 10.1 ] , default_multi = 10.1 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_8 = FloatOption ( name = " var7 " , doc = " the seventh variable " , multi = True , default = [ 0.0 ] , default_multi = 0.0 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
option_9 = FloatOption ( name = " var8 " , doc = " the eighth variable " , multi = True , default = [ 0.0 ] , default_multi = 0.0 , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' float ' } )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , children = [ option_2 , option_3 , option_4 , option_5 , option_6 , option_7 , option_8 , option_9 ] , properties = frozenset ( { " standard " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )