Notice: Trying to access array offset on value of type bool in /mnt/cpcwiki-httpdocs/includes/libs/IPSet.php on line 243

Notice: Trying to access array offset on value of type bool in /mnt/cpcwiki-httpdocs/includes/libs/IPSet.php on line 246

Notice: Trying to access array offset on value of type bool in /mnt/cpcwiki-httpdocs/includes/libs/IPSet.php on line 243

Notice: Trying to access array offset on value of type bool in /mnt/cpcwiki-httpdocs/includes/libs/IPSet.php on line 246
Changes - CPCWiki

Changes

Programming:Integer Multiplication

40 bytes added, 07:41, 24 October 2015
/* Fast 8bit * 8bit Unsigned with only 512 bytes of tables */
Fast 8 bit unsigned multiplication with 16 bit result. It uses formula
<pre>

Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /mnt/cpcwiki-httpdocs/includes/diff/DairikiDiff.php on line 434
x*y = ((x+y)/2)^<sup>2 </sup> - ((x-y)/2)^<sup>2</sup>, if x+y is even = ((x+y-1)/2)^<sup>2 </sup> - ((x-y-1)/2)^<sup>2 </sup> + y, if x+y is odd and x>=y
</pre>
22
edits