Advertisement
Thefaceofbo

GE Test (py)

Nov 10th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.78 KB | None | 0 0
  1. from ge import *
  2.  
  3. def main():
  4.    x = [[0,0,0,0] , [0,0,0,0] , [0,0,0,0]]
  5.    y= [[1,1,1,3] , [2,3,7,0] , [1,3,-2,17]]
  6.    z = [[0,1,-3,4,1] , [2,-2,1,0,-1] , [2,-1,-2,4,0] , [-6,4,3,-8,1]]
  7.    r = [[9,0,8,7] , [7,0,5,2], [4,0,1,9], [3,0,1,6]]
  8.    s = [[1,2,3,4] , [1,2,3,4] , [1,2,3,4]]
  9.    v = [[1,0,0,-5], [0,1,0,10], [0,0,1,2]]
  10.    h = [[2,4,6,8], [1,2,3,4], [3,6,9,12]]
  11.    i = [[1,1,0],[1,1,4],[1,1,8]]
  12.    print(ge_bw(ge_fw(x)))
  13.    print(ge_bw(ge_fw(y)))
  14.    print(ge_bw(ge_fw(z)))
  15.    print(ge_bw(ge_fw(r)))
  16.    print(ge_bw(ge_fw(s)))
  17.    print(ge_bw(ge_fw(v)))
  18.    print(ge_bw(ge_fw(h)))
  19.    print(ge_bw(ge_fw(i)))
  20.    print(ge_fw(x))
  21.    print(ge_fw(y))
  22.    print(ge_fw(z))
  23.    print(ge_fw(r))
  24.    print(ge_fw(s))
  25.    print(ge_fw(v))
  26.    print(ge_fw(h))
  27.    print(ge_fw(i))
  28.  
  29. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement