Example usage for org.apache.mahout.cf.taste.impl.common FastIDSet rehash

List of usage examples for org.apache.mahout.cf.taste.impl.common FastIDSet rehash

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.impl.common FastIDSet rehash.

Prototype

public void rehash() 

Source Link

Usage

From source file:net.myrrix.common.collection.FastIDSetTest.java

License:Apache License

@Test
public void testRehash() {
    FastIDSet set = buildTestFastSet();
    set.remove(1);
    set.rehash();
    assertFalse(set.contains(1));
}