Talk:Straddling checkerboard: Difference between revisions

no edit summary
(→‎Stop character: Held forth on Stop Character in examples vs. real world.)
No edit summary
Line 35:
--[[User:Util|Util]] 15:50, 9 June 2011 (UTC)
 
:: Sounds good to me. If no one else makes the changes, I'll make them later. Either way, I'll rerun the C++ solution afterwards. [[User:MagiMaster|MagiMaster]] 18:15, 9 June 2011 (UTC)
== Min/max ==
 
I don't think min and max are in <algorithm>, at least not in Visual Studio. Is it different with GCC? [[User:MagiMaster|MagiMaster]] 11:06, 7 June 2011 (UTC)
: When I comment out the #include line for algorithm, and compile with GCC's `g++` command, I see no change in behavior. --[[User:Util|Util]] 15:32, 9 June 2011 (UTC)
:: K. No point in including extra files then. [[User:MagiMaster|MagiMaster]] 18:15, 9 June 2011 (UTC)
 
==Rename?==
Line 49 ⟶ 51:
==Bug==
Note that in the C++ solution, changing 3,7 to 7,3 results in identical encoding, indicating that rowU,rowV are being used in places that need u,v instead. --[[User:Util|Util]] 15:32, 9 June 2011 (UTC)
 
: You mentioned this again above, so I'm guessing you changed your mind about it being a bug? Anyway, I made it so that 3,7 and 7,3 gave identical results on purpose. You can achieve the same thing by rearranging the alphabet, and I thought it might make some other parts of the code a little simpler. (I'm not sure it actually did though.) [[User:MagiMaster|MagiMaster]] 18:15, 9 June 2011 (UTC)