<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>bloomfilter Release Rss Feed</title><link>http://www.codeplex.com/bloomfilter/Release/ProjectReleases.aspx</link><description>bloomfilter Release Rss Description</description><item><title>Updated Release: 1.0 Production (Apr 09, 2009)</title><link>http://bloomfilter.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=25930</link><description>&lt;div class="wikidoc"&gt;&lt;ul&gt;&lt;li&gt;Simplified usage by providing secondary hash functions for strings and ints.&lt;/li&gt;
&lt;li&gt;Added constructors to provide additional control for those that need it.&lt;/li&gt;
&lt;li&gt;Improved calculation of optimal double-hashing function count and underlying data structure size.&lt;/li&gt;
&lt;li&gt;Added a default false-positive rate (calculated based on capacity) for those that do not wish to pass one.&lt;/li&gt;
&lt;li&gt;Now catching when a provided capacity and error rate would result in an overflow.&lt;/li&gt;
&lt;li&gt;Added a readme to explain usage. &lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>fatcat1111</author><pubDate>Wed, 16 Sep 2009 22:57:48 GMT</pubDate><guid isPermaLink="false">Updated Release: 1.0 Production (Apr 09, 2009) 20090916105748P</guid></item><item><title>Released: 1.0 Production (Apr 09, 2009)</title><link>http://bloomfilter.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=25930</link><description>&lt;div&gt;&lt;ul&gt;&lt;li&gt;Simplified usage by providing secondary hash functions for strings and ints.&lt;/li&gt;
&lt;li&gt;Added constructors to provide additional control for those that need it.&lt;/li&gt;
&lt;li&gt;Improved calculation of optimal double-hashing function count and underlying data structure size.&lt;/li&gt;
&lt;li&gt;Added a default false-positive rate (calculated based on capacity) for those that do not wish to pass one.&lt;/li&gt;
&lt;li&gt;Now catching when a provided capacity and error rate would result in an overflow.&lt;/li&gt;
&lt;li&gt;Added a readme to explain usage. &lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</description><author></author><pubDate>Wed, 16 Sep 2009 22:57:48 GMT</pubDate><guid isPermaLink="false">Released: 1.0 Production (Apr 09, 2009) 20090916105748P</guid></item><item><title>Updated Release: 1.0 Production (Apr 09, 2009)</title><link>http://bloomfilter.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=25930</link><description>&lt;div&gt;&lt;ul&gt;&lt;li&gt;Simplified usage by providing secondary hash functions for strings and ints.&lt;/li&gt;
&lt;li&gt;Added constructors to provide additional control for those that need it.&lt;/li&gt;
&lt;li&gt;Improved calculation of optimal double-hashing function count and underlying data structure size.&lt;/li&gt;
&lt;li&gt;Added a default false-positive rate (calculated based on capacity) for those that do not wish to pass one.&lt;/li&gt;
&lt;li&gt;Now catching when a provided capacity and error rate would result in an overflow.&lt;/li&gt;
&lt;li&gt;Added a readme to explain usage. &lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><author>fatcat1111</author><pubDate>Fri, 10 Apr 2009 16:46:27 GMT</pubDate><guid isPermaLink="false">Updated Release: 1.0 Production (Apr 09, 2009) 20090410044627P</guid></item><item><title>Released: 1.0 Production (Apr 09, 2009)</title><link>http://bloomfilter.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=25930</link><description>&lt;div&gt;&lt;ul&gt;&lt;li&gt;Simplified usage by providing secondary hash functions for strings and ints.&lt;/li&gt;
&lt;li&gt;Added constructors to provide additional control for those that need it.&lt;/li&gt;
&lt;li&gt;Improved calculation of optimal double-hashing function count and underlying data structure size.&lt;/li&gt;
&lt;li&gt;Added a default false-positive rate (calculated based on capacity) for those that do not wish to pass one.&lt;/li&gt;
&lt;li&gt;Now catching when a provided capacity and error rate would result in an overflow.&lt;/li&gt;
&lt;li&gt;Added a readme to explain usage. &lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><author></author><pubDate>Fri, 10 Apr 2009 16:46:27 GMT</pubDate><guid isPermaLink="false">Released: 1.0 Production (Apr 09, 2009) 20090410044627P</guid></item><item><title>UPDATED RELEASE: 0.1 Alpha (Jun 24, 2007)</title><link>http://www.codeplex.com/bloomfilter/Release/ProjectReleases.aspx?ReleaseId=5178</link><description>Here's the initial release. Functional but there's room for improvement. 

* Employs generics to ensure that the objects are homogenous. 
* Requires that the callers supply one hash method other than GetHashCode().
* Works for input sets smaller than int.maxValue/2. When passing a capacity greater than that it miscalculates the best _k_ and _n_ values. </description><author></author><pubDate>Mon, 25 Jun 2007 00:53:02 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: 0.1 Alpha (Jun 24, 2007) 20070625125302A</guid></item><item><title>UPDATED RELEASE: 0.1 Alpha (Jun 24, 2007)</title><link>http://www.codeplex.com/bloomfilter/Release/ProjectReleases.aspx?ReleaseId=5178</link><description>Here's the initial release. See the unit tests for an example. 
* Employs generics to ensure that the objects are homogenous. 
* Requires that the callers supply one hash method other than GetHashCode().
* Works for input sets smaller than int.maxValue/2. When passing a capacity greater than that it miscalculates the best _k_ and _n_ values. </description><author></author><pubDate>Mon, 25 Jun 2007 00:50:01 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: 0.1 Alpha (Jun 24, 2007) 20070625125001A</guid></item><item><title>CREATED RELEASE: 0.1 Alpha (Jun 24, 2007)</title><link>http://www.codeplex.com/bloomfilter/Release/ProjectReleases.aspx?ReleaseId=5178</link><description>Here's the initial release, with unit tests (which also provide an example).
* Employs generics to ensure that the objects are homogenous. 
* Requires that the callers supply one hash method other than GetHashCode().
* Works for input sets smaller than int.maxValue/2. When passing a capacity greater than that it miscalculates the best _k_ and _n_ values. </description><author></author><pubDate>Mon, 25 Jun 2007 00:38:02 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: 0.1 Alpha (Jun 24, 2007) 20070625123802A</guid></item></channel></rss>