> How about... > > poke pick matrix i + 1 j + 1 x Okay, that's very cool. However, how about:
>> min(mtx[si][ti + 1] + 1, mtx[si + 1][ti] + 1, mtx[si][ti] + cost); Am I doomed to do something like: x: (first at pick matrix si ti + 1) + 1 y: (first at pick matrix si + 1 ti) + 1 z: matrix/:si/:ti + cost poke pick matrix si + 1 ti + 1 first minimum-of reduce [x y z] ? Or am I making life overly complicated for myself? Thanks again. --Charles > -- Carl -- To unsubscribe from the list, just send an email to rebol-request at rebol.com with unsubscribe as the subject.
