/usr/lib/open-axiom/input/reductio.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | -- Input for page Reductions
)clear all
u := [30,2,5]
reduce(+,u)
reduce(*,u)
u := [30,2,5]
reduce(max,u)
reduce(min,u)
reduce(gcd,u)
u := []; v := [1]
reduce(max,u,0)
reduce(min,v,0)
u := [1, 7, 5, -12, 15, 3]
reduce(or,[u.i < 0 for i in 0..])
reduce(or,[x < 0 for x in u])
reduce(min,[i for i in 0.. while u.i > 0])
reduce(and,[x > 0 for x in u])
v := [1, 1, 0, 1, 0]
reduce(+,[v.(n - i) * 2**i for i in 0..(n := maxIndex v)])
reduce(+,[x * y for x in u for y in v])
reduce(+,[r for x in u for y in v | (r := y/x) > 0])
reduce(max,[x for x in u for y in v | y = 1])
|