> However, it is not a matter of logic. ...
> the changes they made give you better results when you look at who ends up in the PHM group. Can't argue with that.
I understand what you're saying. Just for fun, I'd like to try arguing with that:
class forum_post {
function get_author_name() {
return 'Ray Morris';
}
function get_author_country() {
if(substr($this->get_author_name(), 1) == 'R') {
return 'US';
}
}
}
I tested that with against an earlier post in this thread and it gives reasonably accurate results at the moment. That must be the right way to do it. Can't argue with that.
The functions above are silly examples, of course, but I think they illustrate a valid point. The scoring algorithm might work okay (or not), but the argument that it happens to give reasonable-looking results at the moment isn't al that persuasive, to me.

