Description
the default implementation is basically never useful:
result.setDescription("Unimpl Payload Function Explain");
result.setValue(1);
Instead we should just do this:
result.setDescription(getClass().getSimpleName() + ".docScore()");
result.setValue(docScore(docId, field, numPayloadsSeen, payloadScore));
And remove all the overriden impls in our Min/Max/Avg that just
duplicate their scoring function.