-
Notifications
You must be signed in to change notification settings - Fork 4
/
TON-I.js
172 lines (172 loc) · 6.14 KB
/
TON-I.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
//Encoding: -1 for '0', 0 for 'W', [b,a,-2] for C(a,b), x[1] for left part, x[0] for right part
register.push({
id:'ton-i'
,name:"Iteration of n-built from below (no passthrough)"
,able:TON_limit
,compare:TON_noraise_compare
,display:TON_noraise_display
,FS:(()=>{
var data={}
,IStd={}
,extract = (term,index)=>index.length?extract(term[index[0]],index.slice(1)):term
,smallindex = a=>{
if(a===0) return []
var sow_smallindex = (a,begin)=>{
if(a===0) return;
if(TON_noraise_compare(a,0)<0){
result.push(begin)
}else{
sow_smallindex(a[0],begin.concat(0))
sow_smallindex(a[1],begin.concat(1))
}
}
,result=[]
sow_smallindex(a,[])
return result
}
,Copy = x=>typeof x==='number'?x:[Copy(x[0]),Copy(x[1]),-2]
,get_n = (term,index)=>{//get n(a2=a'') from a1=a'
var subterm,i
,a=Copy(term)
,a1index=index.slice()
//step 3
for(i=0;i<a1index.length;){
if(a1index[i]===0){
if(i===0){
a=a[0]
}else{
subterm=extract(a,a1index.slice(0,i-1))
subterm[a1index[i-1]] = subterm[a1index[i-1]][0]
}
a1index.splice(i,1)
}else i++
}
//step 2
if(a1index.length===0){
a = 0
}else{
subterm=extract(a,a1index.slice(0,a1index.length-1))
subterm[a1index[a1index.length-1]] = 0
}
//step 4
var scan = x=>{
if(typeof x==='number') return;
if(typeof x[0]==='number') return;
if(TON_noraise_compare(x[1],x[0][1])>0) x[0] = x[0][0]
scan(x[0])
scan(x[1])
}
scan(a)
//step 5
var alim=a
a=Copy(term)
//step 6
var str1 = (''+a).split(',').map(e=>+e)
,str2 = (''+alim).split(',').map(e=>+e)
,a2 = []
while(str1.length&&str2.length&&str1[0]===str2[0]){
a2.push(str1[0])
str1.shift()
str2.shift()
}
//step 7
var n=0
while(a2[a2.length-1]===-2) a2.pop()
if(a2[a2.length-1]===-1){
++n
a2.pop()
}else{
return n
}
while(a2[a2.length-1]===-2&&a2[a2.length-2]===-1){
++n
a2.splice(a2.length-2,2)
}
return n
}
,BuiltQ = (a,b,n,x)=>n ? TON_noraise_compare(x,0)<0&&BuiltQ(x,b,n-1,x)||(TON_noraise_compare(x,0)>=0||TON_noraise_compare(x,a)<=0)&&
(x===0||BuiltQ(a,b,n,x[0])&&BuiltQ(a,b,n,x[1]))
:TON_noraise_compare(a,b)<0
,StandardQ = a=>{
var str = JSON.stringify(a)
if(IStd[str]){
return IStd[str]
}else if(typeof a==='number' || (StandardQ(a[1])&&StandardQ(a[0]) && (typeof a[0]==='number'||TON_noraise_compare(a[1],a[0][1])<=0) &&
smallindex(a[1]).every(index=>BuiltQ(extract(a[1],index),a,get_n(a[1],index),extract(a[1],index))))){
return IStd[str]=true
}else{
return false
}
}
,TON = function*(term){
var flag=true,c1,c3
,n=0
,beta = Copy(term)
,len = (''+term).split(',').length
mainloop:while(true){
if(flag){
if(typeof beta==='number'&&beta>=0){ //gamma = 'W', m = 0, assuming beta != '0'
beta=-1
}else if(beta[1]===-1){ //gamma = '0', m = 1
beta=beta[0]
continue
}else if(typeof beta[1]==='number'&&beta[1]>=0){ //gamma = 'W', m = 1
beta[1]=-1
}else if(beta[1][1]===-1){ //gamma = '0', m = 2
beta=[[beta[0],beta[1][0],-2],0,-2]
}else if(typeof beta[1][1]==='number'&&beta[1][1]>=0){//gamma = 'W', m = 2
beta[1][1]=-1
}else{ //m > 2, the main part of step 1 and 2
c3=beta
c1=beta[1][1]
while(typeof c1[1]!=='number'){
c3=c3[1]
c1=c1[1]
}
if(c1[1]===-1){ //gamma = '0', m > 2
c3[1]=[[c3[1][0],c1[0],-2],0,-2]
}else{ //gamma = 'W', m > 2
c1[1]=-1
}
}
}
flag=true
while((''+beta).split(',').length<len+n*2){//better step 3
if(!StandardQ(beta)) continue mainloop
if(typeof beta!=='number'){
c1=beta
while(typeof c1[1]!=='number')c1=c1[1] //step 4
c1[1]=[c1[1],0,-2] //step 5
}else{
beta=[beta,0,-2] //step 4 and 5 for beta = '0' and 'W'
}
}
if(StandardQ(beta)){
n = yield Copy(beta)
flag=false
}
}
}
return (term,n)=>{
if(''+term==='Infinity'){
term = [-1,[[0,[0,-1,-2],-2],0,-2],-2]
}
var datakey=''+term
,dataterm = data[datakey]
if(!dataterm){
dataterm = (data[datakey] = [])
dataterm.gen = TON(term)
dataterm[0] = dataterm.gen.next().value
}
if(dataterm[n]!==undefined) return dataterm[n]
return dataterm[n] = dataterm.gen.next(n).value
}
})()
,init:()=>[
{expr:Infinity,low:[[-1,[0,[0,-1,-2],-2],-2]],subitems:[]}
,{expr:[-1,[0,[0,-1,-2],-2],-2],low:[[-1,[0,0,-2],-2]],subitems:[]}
,{expr:[-1,[0,0,-2],-2],low:[[-1,0,-2]],subitems:[]}
,{expr:[-1,0,-2],low:[-1],subitems:[]}
,{expr:-1,low:[-1],subitems:[]}
]
})