"Vesa Karvonen" <[EMAIL PROTECTED]> writes:

>>What do you mean by "maximal iteration counts?"
>>If you mean, "the maximum possible under a given depth limitation",
>>then clearly there's no such number because you can always do more
>>unrolling... so obviously you don't mean that. ;-)
>
> Well, one thing that does have an effect on the maximum iteration
> count with a given depth limitation is the initial "tree height"
> from where you start:
>
> template<class P, class O, class X>
> struct until : mpl::apply_if<mpl::apply1<P,X>,
>                              mpl::identity<X>,
>                              until_up<3,P,O,X> > {};
>                                       ^
>
> Changing the above number does have an effect on the maximum iteration count.
>
> Another thing that does have an effect on maximal iteration count is
> the way that the until, until_up and until_down templates are
> programmed. If you can avoid a single recursion in their code, it
> can have a big effect (superlinear) on the total maximum iteration
> count.

Okay.  In that case, my answer to you is: "getting truly maximal
iteration counts with this strategy depends on encoding intimate
knowledge of the depth limit in the implementation"

-- 
                       David Abrahams
   [EMAIL PROTECTED] * http://www.boost-consulting.com
Boost support, enhancements, training, and commercial distribution

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to