Skip to content

Commit

Permalink
Change the order of some of the dict elements in testset
Browse files Browse the repository at this point in the history
  • Loading branch information
oyamad committed Apr 23, 2015
1 parent c51ce3f commit 8ea1206
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions quantecon/tests/test_mc_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,21 +96,21 @@ def test_markovchain_pmatrices():
'is_aperiodic': False,
'cyclic_classes': [np.array([0]), np.array([1])],
},
{'P': np.eye(2),
'stationary_dists': np.array([[1, 0], [0, 1]]),
'comm_classes': [np.array([0]), np.array([1])],
'rec_classes': [np.array([0]), np.array([1])],
'is_irreducible': False,
'period': 1,
'is_aperiodic': True,
},
{'P': Q,
'stationary_dists': Q_stationary_dists,
'comm_classes': [np.array([0, 1]), np.array([2]), np.array([3, 4, 5])],
'rec_classes': [np.array([0, 1]), np.array([3, 4, 5])],
'is_irreducible': False,
'period': 6,
'is_aperiodic': False,
},
{'P': np.eye(2),
'stationary_dists': np.array([[1, 0], [0, 1]]),
'comm_classes': [np.array([0]), np.array([1])],
'rec_classes': [np.array([0]), np.array([1])],
'is_irreducible': False,
'period': 1,
'is_aperiodic': True,
}
]

Expand Down

0 comments on commit 8ea1206

Please sign in to comment.