Package pl.net.fivedots.elo.kfactor

Examples of pl.net.fivedots.elo.kfactor.USCFKFactorFactory


    }

    @Test
    public void ucsfKFactor() {
        EloModel model = new EloModel();
        model.kFactorFactory = new USCFKFactorFactory();

        assertEquals(32, model.kFactor());

        model.currentRank = 2099;
        assertEquals(32, model.kFactor());
View Full Code Here

TOP

Related Classes of pl.net.fivedots.elo.kfactor.USCFKFactorFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.