<div dir="ltr">Hi,<br><div><div class="gmail_extra"><br><div class="gmail_quote">2013/7/25 Bruno Lalande <span dir="ltr">&lt;<a href="mailto:bruno.lalande@gmail.com" target="_blank">bruno.lalande@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br></div>Can you point us to the places where some compilers complain? It might just be that there&#39;s a better way to do the static comparison. I&#39;m asking that because it seems to me that since we&#39;ll only touch some of the involved traits, the problem will still remain for the other libraries anyway.<br>

<br></div></blockquote><div><br></div><div>Probably nowhere in the library. I&#39;m thinking about the situation when someone wants to write his own algorithm using a structure template and to check if passed index is ok, he uses static_asert. Something like this:<br>
<br></div><div>template &lt;class Geometry, size_t I&gt;<br></div><div>struct my_algo<br>{<br></div><div>��� BOOST_STATIC_ASSERT(I &lt; dimension&lt;G&gt;::value);<br>��� /*...*/<br>��� my_algo&lt;Geometry, I+1&gt;::<br>��� /*...*/<br>
</div><div>};<br><br></div><div>Ok, you may check dimensions outside, in some function calling the algorithm implementation. Then pass size_t Dimension, as it is done in the BG. Still, you could check if your implementation is ok, e.g. you didn&#39;t passed Geometry incompatible with passed Dimension, &quot;in-place&quot; where the algorithm is implemented.<br>
<br>This just shows small inconsistency in the definition of dimension.<br><br>We could also strictly define its type as signed and use signed ints in algorithms.<br></div><div><br></div><div>Regards,<br></div><div>Adam<br>
</div></div></div></div></div>