コード例 #1
0
def es3(_g, step, sL, s, _input):
    y = 's3'
    x = s['s3'] * bound_norm_random(seeds['a'], proc_one_coef_A,
                                    proc_one_coef_B)
    return (y, x)
コード例 #2
0
ファイル: config1.py プロジェクト: wilson3698/cadCAD
def es4(_g, step, sL, s, _input, **kwargs):
    y = 's4'
    x = s['s4'] * bound_norm_random(seeds['b'], proc_one_coef_A,
                                    proc_one_coef_B)
    return (y, x)
コード例 #3
0
ファイル: config1.py プロジェクト: jds3d/demo-repo
def es4(_g, step, sL, s, _input, **kwargs):
    y = 's4'
    x = s['s4'] * bound_norm_random(_input['seeds']['b'],
                                    _input['proc_one_coef_A'],
                                    _input['proc_one_coef_B'])
    return (y, x)