Charles napsal(a):

> 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 Sassenrath has decided (at the Collaboration Conference), that we 
will be able to use:

    min min mtx/(si)/(ti + 1) + 1 mtx/(si + 1)/(ti) + 1 mtx/(si)/(ti) + cost

how would that work for you?

-L



-- 
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.

Reply via email to