read `Nash.txt`: print(`This input file gives examples of procedure PNE and PNEv regarding PURE Nash equilibria `): print(`----------------------------------------`): print(`For Barry's Problem 1(a), the pure equlibria are given by `): print( PNE([[[4,4],[0,3]],[[3,0],[2,2]]])): print(` a verbose version is `): PNEv([[[4,4],[0,3]],[[3,0],[2,2]]]): print(`----------------------------------------`): print(`----------------------------------------`): print(`For Barry's Problem 1(b), the pure equlibria are given by `): print( PNE([[[1,8],[7,9]],[[3,4],[5,5]]])): print(` a verbose version is `): PNEv([[[1,8],[7,9]],[[3,4],[5,5]]]): print(`----------------------------------------`): print(`----------------------------------------`): print(`For Barry's Problem 1(c), the pure equlibria are given by `): print( PNE([[[2,8],[3,5]],[[8,2],[1,7]]])): print(` a verbose version is `): PNEv([[[2,8],[3,5]],[[8,2],[1,7]]]): quit: