This file is indexed.

/usr/lib/open-axiom/input/mpoly.input is in open-axiom-test 1.5.0~svn3056+ds-1.

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
-- Input generated from MultivariatePolynomialXmpPage
)clear all

m : MPOLY([x,y],INT) := (x**2 - x*y**3 +3*y)**2
m :: MPOLY([y,x],INT)
p : MPOLY([x,y],POLY INT)
p := (a**2*x - b*y**2 + 1)**2
p :: POLY INT
% :: MPOLY([a,b],POLY INT)
q : UP(x, FRAC MPOLY([y,z],INT))
q := (x**2 - x*(z+1)/y +2)**2
q :: UP(z, FRAC MPOLY([x,y],INT))
q :: MPOLY([x,z], FRAC UP(y,INT))