Skip to content

Commit c7deefc

Browse files
move catalog into pygambit
1 parent c4fc3a8 commit c7deefc

153 files changed

Lines changed: 21 additions & 5 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

doc/tutorials/01_quickstart.ipynb

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
{
4040
"cell_type": "code",
41-
"execution_count": null,
41+
"execution_count": 1,
4242
"id": "c58d382d",
4343
"metadata": {},
4444
"outputs": [],
@@ -449,13 +449,28 @@
449449
},
450450
{
451451
"cell_type": "code",
452-
"execution_count": null,
452+
"execution_count": 2,
453453
"id": "6db7a29a",
454454
"metadata": {},
455-
"outputs": [],
455+
"outputs": [
456+
{
457+
"data": {
458+
"text/html": [
459+
"<center><h1>Two person Prisoner's Dilemma game</h1></center>\n",
460+
"<table><tr><td></td><td align=center><b>1</b></td><td align=center><b>2</b></td></tr><tr><td align=center><b>1</b></td><td align=center>9,9</td><td align=center>0,10</td></tr><tr><td align=center><b>2</b></td><td align=center>10,0</td><td align=center>1,1</td></tr></table>\n"
461+
],
462+
"text/plain": [
463+
"Game(title='Two person Prisoner's Dilemma game')"
464+
]
465+
},
466+
"execution_count": 2,
467+
"metadata": {},
468+
"output_type": "execute_result"
469+
}
470+
],
456471
"source": [
457-
"# g = gbt.catalog.PrisonersDilemma()\n",
458-
"# g"
472+
"g = gbt.catalog.PrisonersDilemma()\n",
473+
"g"
459474
]
460475
},
461476
{

src/pygambit/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
nash, # noqa: F401
2727
qre, # noqa: F401
2828
supports, # noqa: F401
29+
catalog, # noqa: F401
2930
)
3031

3132
import importlib.metadata
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)