In one of the project have used the commons-math3-3.3.jar. This jar has concept of ValueServer. Have the code
private static ValueServer getValueServer(final File file, final int count)
throws ZeroException, NullArgumentException, IOException {
ValueServer vServer = new ValueServer();
vServer.setValuesFileURL(file.toURI().toURL());
vServer.setMode(ValueServer.DIGEST_MODE);
vServer.computeDistribution(count);
return vServer;
}
Here the arguments passed is a file path and a random number.
Cant find any documentation or explanation for it.
Can anyone help understand what this does.
Thanks