<div dir="ltr">I’ve seen that this tends to happen with operators that are really overloaded-stuff like +, *, etc. The compiler seems to take longer to figure out which function to use.</div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 6, 2016 at 3:09 PM Joe Groff via swift-users &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
&gt; On Jun 6, 2016, at 3:06 PM, G B via swift-users &lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Is progress being made on the type checker to get the compiler to stop whinging about the complexity of expressions?<br>
<br>
Yes, a lot of cases work much better in Swift 3. You might give these a try in a nightly build. Please file a bug if you continue to see this in Swift 3 though.<br>
<br>
-Joe<br>
<br>
&gt;<br>
&gt; I can’t really trim down the full project to isolate a good test case, but I’m getting a compiler error on this line of code:<br>
&gt; let v=T.Vector4Type([axis[0]*s, axis[1]*s, axis[2]*s, cos(a/2.0)])<br>
&gt;<br>
&gt;<br>
&gt; Interestingly, this line compiled fine (everything is the same except the last list element is moved to the front):<br>
&gt; let v=T.Vector4Type([cos(a/2.0), axis[0]*s, axis[1]*s, axis[2]*s])<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; The initializer that this code is embedded in is this:<br>
&gt; public init(axis:T.Vector3Type, angle a:T){<br>
&gt;    let s=sin(a/2.0)<br>
&gt;    let v=T.Vector4Type([axis[0]*s, axis[1]*s, axis[2]*s, cos(a/2.0)])<br>
&gt;    let l=v.length()<br>
&gt;    self.init(v/l)<br>
&gt; }<br>
&gt;<br>
&gt; I’m running this in a playground, I don’t know if that makes a difference.<br>
&gt;<br>
&gt; I’m willing to wait a little longer for the complier to do its job if it means I don’t have to break my code down to one operation per line.<br>
&gt; _______________________________________________<br>
&gt; swift-users mailing list<br>
&gt; <a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
<br>
_______________________________________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
</blockquote></div><div dir="ltr">-- <br></div><div data-smartmail="gmail_signature"><div dir="ltr">-Saagar Jha</div></div>