Example usage for org.apache.mahout.math Varint readSignedVarInt

List of usage examples for org.apache.mahout.math Varint readSignedVarInt

Introduction

In this page you can find the example usage for org.apache.mahout.math Varint readSignedVarInt.

Prototype

public static int readSignedVarInt(DataInput in) throws IOException 

Source Link

Usage

From source file:nl.gridline.zieook.inx.movielens.items.RecommendationElement.java

License:Apache License

@Override
public void readFields(DataInput in) throws IOException {
    _itemIndex = Varint.readSignedVarInt(in);
    _similarityValue = in.readDouble();
}

From source file:nl.gridline.zieook.inx.movielens.WeightedOccurrence.java

License:Apache License

@Override
public void readFields(DataInput in) throws IOException {
    row = Varint.readSignedVarInt(in);
    value = in.readDouble();
    weight = in.readDouble();
}