/usr/lib/open-axiom/input/table.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 | -- Input generated from TableXmpPage
)clear all
t: Table(Polynomial Integer, String) := table()
setelt(t, x**2 - 1, "Easy to factor")
t(x**3 + 1) := "Harder to factor"
t(x) := "The easiest to factor"
elt(t, x)
t.x
t x
t.(x**2 - 1)
t (x**3 + 1)
keys t
search(x, t)
search(x**2, t)
search(x**2, t) case "failed"
remove!(x**2-1, t)
remove!(x-1, t)
#t
members t
count(s: String +-> prefix?("Hard", s), t)
|