Skip to content

Commit 2077d93

Browse files
committed
manage merge conflict and ensure black edges
1 parent 858e089 commit 2077d93

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

lectures/_static/lecture_specific/markov_chains_II/example4

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ digraph {
22
rankdir=LR
33
0
44
1
5-
0 -> 1 [label=1.0 color=red]
6-
1 -> 0 [label=1.0 color=red]
5+
0 -> 1 [label=1.0]
6+
1 -> 0 [label=1.0]
77
}
Loading

lectures/_static/lecture_specific/markov_chains_II/figures.ipynb

+7-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
"name": "stdout",
1919
"output_type": "stream",
2020
"text": [
21-
"Requirement already satisfied: graphviz in /Users/mmcky/anaconda3/envs/quantecon/lib/python3.11/site-packages (0.20.3)\n"
21+
"Collecting graphviz\n",
22+
" Using cached graphviz-0.20.3-py3-none-any.whl.metadata (12 kB)\n",
23+
"Using cached graphviz-0.20.3-py3-none-any.whl (47 kB)\n",
24+
"Installing collected packages: graphviz\n",
25+
"Successfully installed graphviz-0.20.3\n"
2226
]
2327
}
2428
],
@@ -147,8 +151,8 @@
147151
"dot.node(\"0\")\n",
148152
"dot.node(\"1\")\n",
149153
"\n",
150-
"dot.edge(\"0\", \"1\", label=\"1.0\", color='red')\n",
151-
"dot.edge(\"1\", \"0\", label=\"1.0\", color='red')\n",
154+
"dot.edge(\"0\", \"1\", label=\"1.0\")\n",
155+
"dot.edge(\"1\", \"0\", label=\"1.0\")\n",
152156
"\n",
153157
"dot\n",
154158
"dot.render(filename='example4')"

0 commit comments

Comments
 (0)