コード例 #1
0
ファイル: test_sampling.py プロジェクト: zjlearn/pymc3
def test_soft_update_one_missing():
    start = {
        'a': 1,
    }
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == {'a': 1, 'b': 4}
コード例 #2
0
ファイル: test_sampling.py プロジェクト: DukasGuo/pymc3
def test_soft_update_empty():
    start = {}
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == test_point
コード例 #3
0
ファイル: test_sampling.py プロジェクト: DukasGuo/pymc3
def test_soft_update_one_missing():
    start = {'a': 1, }
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == {'a': 1, 'b': 4}
コード例 #4
0
ファイル: test_sampling.py プロジェクト: DukasGuo/pymc3
def test_soft_update_all_present():
    start = {'a': 1, 'b': 2}
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == {'a': 1, 'b': 2}
コード例 #5
0
ファイル: test_sampling.py プロジェクト: zjlearn/pymc3
def test_soft_update_empty():
    start = {}
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == test_point
コード例 #6
0
ファイル: test_sampling.py プロジェクト: zjlearn/pymc3
def test_soft_update_all_present():
    start = {'a': 1, 'b': 2}
    test_point = {'a': 3, 'b': 4}
    sampling._soft_update(start, test_point)
    assert start == {'a': 1, 'b': 2}