Joesalmon1985 / PandemicBoardGame

An attempt at making a python script that lets you play the Pandemic Board Game
2 stars 5 forks source link

Board layout needs to be conceptualised with an Adjacency matrix #9

Open Joesalmon1985 opened 8 years ago

Joesalmon1985 commented 8 years ago

An adjacency matrix is a much less messy way to conceptualise the game board in code. This probably means re-writing some of the tests already created.

https://en.wikipedia.org/wiki/Adjacency_matrix

Joesalmon1985 commented 8 years ago

Okay so

https://networkx.github.io/

Is the program to do this. I don't even know where to start with installing this