Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F969216
solver.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
solver.js
View Options
var
edits
=
require
(
"./text-edits.js"
).
edits
;
var
any_char
=
require
(
"./text-edits.js"
).
any_char
;
var
bfs
=
require
(
"./bfs.js"
);
function
s
(
text
,
start
,
end
,
direction
,
h
){
var
ret
=
{
text
:
text
,
start
:
start
,
end
:
end
,
direction
:
direction
,
h
:
h
,
}
if
(
direction
==
undefined
)
delete
ret
.
direction
;
if
(
h
==
undefined
)
delete
ret
.
h
;
return
ret
;
}
function
children_fn
(
element
){
var
children
=
[];
for
(
var
i
in
edits
){
var
new_element
=
edits
[
i
](
element
);
new_element
.
edge
=
edits
[
i
];
children
.
push
(
new_element
);
}
return
children
;
}
function
accept_generator
(
solution
){
return
function
(
element
){
// console.log(element.text);
if
(
element
.
start
!=
solution
.
start
){
return
false
;
}
if
(
element
.
end
!=
solution
.
end
){
return
false
;
}
if
(
solution
.
start
!=
solution
.
end
){
if
(
solution
.
direction
!=
element
.
direction
){
return
false
;
}
}
if
(
element
.
text
.
length
==
solution
.
text
.
length
){
// console.log(element.text);
}
var
to_replace
=
".+?[]()*$^"
var
t
=
element
.
text
;
for
(
var
i
in
to_replace
){
t
=
t
.
split
(
to_replace
[
i
]).
join
(
"\\"
+
to_replace
[
i
]
);
}
t
=
t
.
replace
(
"\n"
,
"\\n"
);
t
=
t
.
replace
(
new
RegExp
(
any_char
,
"g"
),
"."
);
r
=
new
RegExp
(
"^"
+
t
+
"$"
,
"g"
);
return
r
.
test
(
solution
.
text
);
}
}
//var acceptor = accept_generator(s("ala ma kota", 0, 11,"f"));
//console.log(acceptor(edits.select_all(s("ala ma kota", 0, 0))));
module
.
exports
=
function
(
root
,
solution
){
console
.
log
(
"Task: transform:\n\n"
);
console
.
log
(
root
.
text
);
console
.
log
(
"\n\ninto:\n\n"
);
console
.
log
(
solution
.
text
);
console
.
log
(
"\n\n"
);
root
.
edge
=
null
;
var
solution
=
bfs
(
root
,
children_fn
,
accept_generator
(
solution
)
);
console
.
log
(
"Solution:"
);
var
steps
=
[];
while
(
solution
.
parent
!=
null
&&
solution
.
parent
!=
solution
){
steps
.
unshift
(
solution
);
solution
=
solution
.
parent
;
}
console
.
log
(
steps
.
map
(
function
(
s
){
return
s
.
edge
.
desc
}));
//console.log(steps.map(function(s){return {text: s.text, start: s.start, end:s.end, key: s.edge.desc, direction: s.direction}}));
console
.
log
(
"\n\n\n-------- \n\n\n"
);
return
steps
;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 22, 07:40 (37 m, 39 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
547635
Default Alt Text
solver.js (2 KB)
Attached To
Mode
rTG Typing Golf
Attached
Detach File
Event Timeline
Log In to Comment