Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/tests/nofib/spectral/minimax/Wins.hs

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


module Wins where

type Win = [[Int]]

wins :: [Win] 
wins = [win1,win2,win3,win4,win5,win6,win7,win8]

win1,win2,win3,win4,win5,win6,win7,win8 :: Win 
win1 = [[1,1,1],
        [0,0,0],
        [0,0,0]]
 
win2 = [[0,0,0],
        [1,1,1],
        [0,0,0]]
 
win3 = [[0,0,0],
        [0,0,0],
        [1,1,1]]
 
win4 = [[1,0,0],
        [1,0,0],
        [1,0,0]]
 
win5 = [[0,1,0],
        [0,1,0],
        [0,1,0]]
 
win6 = [[0,0,1],
        [0,0,1],
        [0,0,1]]
 
win7 = [[1,0,0],
        [0,1,0],
        [0,0,1]]
 
win8 = [[0,0,1],
        [0,1,0],
        [1,0,0]]

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.