This file is indexed.

/usr/lib/open-axiom/input/mset2.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
-- Input generated from MultiSetXmpPage
)clear all

s := multiset [1,2,3,4,5,4,3,2,3,4,5,6,7,4,10]
insert!(3,s)
remove!(3,s,1); s
remove!(5,s); s
count(5,s)
t := multiset [2,2,2,-9]
U := union(s,t)
I := intersect(s,t)
difference(s,t)
S := symmetricDifference(s,t)
(U = union(S,I))@Boolean
t1 := multiset [1,2,2,3]; 
[part?(t1,t), part?(t1,s), part?(t,s), not part?(s,t1)]