/usr/share/axiom-20120501/input/efi.input is in axiom-test 20120501-8.
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | )set break resume
)spool efi.output
)set message test on
)set message auto off
)clear all
--S 1 of 15
EFI:=Expression Integer
--R
--R
--R (1) Expression(Integer)
--R Type: Domain
--E 1
--S 2 of 15
ber:=operator 'ber
--R
--R
--R (2) ber
--R Type: BasicOperator
--E 2
--S 3 of 15
s:=operator 's
--R
--R
--R (3) s
--R Type: BasicOperator
--E 3
-- s:OP EFI:=operator 's
--S 4 of 15
br:LIST EFI->EFI
--R
--R Type: Void
--E 4
--S 5 of 15
br(x) ==
(x.1) = 0 => limit(br([y]),y=0)
(x.1)/(exp((x.1))-1)
--R
--R Type: Void
--E 5
--S 6 of 15
br([1])
--R
--R Compiling function br with type List(Expression(Integer)) ->
--R Expression(Integer)
--R
--R 1
--R (6) ------
--R %e - 1
--R Type: Expression(Integer)
--E 6
--S 7 of 15
br([0])
--R
--R
--R (7) 1
--R Type: Expression(Integer)
--E 7
--S 8 of 15
fJ:List FRAC INT -> EFI
--R
--R Type: Void
--E 8
--S 9 of 15
J(i:PI,j:PI):EFI==ber(s(i)-s(j))
--R
--R Function declaration J : (PositiveInteger,PositiveInteger) ->
--R Expression(Integer) has been added to workspace.
--R Type: Void
--E 9
--S 10 of 15
function(J(1,2),'fJ,['s])
--R
--R Compiling function J with type (PositiveInteger,PositiveInteger) ->
--R Expression(Integer)
--R
--R (10) fJ
--R Type: Symbol
--E 10
--S 11 of 15
evaluate(ber,br)$BOP1(EFI);
--R
--R
--R Type: BasicOperator
--E 11
--S 12 of 15
ss:=[1,2]
--R
--R
--R (12) [1,2]
--R Type: List(PositiveInteger)
--E 12
--S 13 of 15
fJ(ss)
--R
--R Compiling function fJ with type List(Fraction(Integer)) ->
--R Expression(Integer)
--R
--R %e
--R (13) ------
--R %e - 1
--R Type: Expression(Integer)
--E 13
--S 14 of 15
ss:=[1,1]
--R
--R
--R (14) [1,1]
--R Type: List(PositiveInteger)
--E 14
-- fJ doesn't know about the special definition at the origin
--S 15 of 15
fJ(ss)
--R
--R
--R (15) 1
--R Type: Expression(Integer)
--E 15
)spool
)lisp (bye)
|