Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
djordon committed Dec 23, 2018
1 parent 2d4055f commit 6f38b5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions queueing_tool/graph/graph_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ def matrix2dict(matrix, graph):
>>> mat = qt.generate_transition_matrix(g, seed=123)
>>> mat # doctest: +ELLIPSIS
... # doctest: +NORMALIZE_WHITESPACE
array([[0. , 0.70707071, 0.29292929, 0. ],
[1. , 0. , 0. , 0. ],
[0.29113924, 0. , 0. , 0.70886076],
[0. , 0. , 1. , 0. ]])
array([[ 0. , 0.70707071, 0.29292929, 0. ],
[ 1. , 0. , 0. , 0. ],
[ 0.29113924, 0. , 0. , 0.70886076],
[ 0. , 0. , 1. , 0. ]])
>>> qt.matrix2dict(mat, g) # doctest: +ELLIPSIS
... # doctest: +NORMALIZE_WHITESPACE
{0: {1: 0.707..., 2: 0.292...},
Expand Down

0 comments on commit 6f38b5b

Please sign in to comment.