Handbook
Glossary
run-lcs ( old new init step -- matrix )
Vocabulary
lcs
.
private
Inputs
old
an
object
new
an
object
init
an
object
step
an
object
Outputs
matrix
an
object
Definition
USING:
kernel
math
sequences
;
IN:
lcs.private
::
run-lcs
( old new init step -- matrix )
old
length
1
+
new
length
1
+
init
call
:>
matrix old
length
<iota>
[|
i |
new
length
<iota>
[|
j | i j matrix old new step
loop-step
]
each
]
each
matrix
;
inline