Use these buttons to manually trigger a normally scheduled event. The buttons will run the functions in a new tab. The page will appear to be loading until the function is complete, at which time the page will appear as fully loaded. Nothing is displayed on these pages and they will appear blank. To Update Rankings: click buttons 2 through 4, in order, making sure the previous function has completed.
{{ Form::open(array('url' => '/admin/utility/checkColley',
'method' => 'GET')) }}
{{ Form::submit('Check Colley', array('class' => 'button', 'style' => 'font-size: 10pt;')) }}
{{ Form::label('season', 'Season', array('style' => 'font-weight: bold; width: 75px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('season', $options, Helpers::getCurrentSeason(), array('style' => 'width: 100px; font-size: 10pt;')) }}
Checks the Colley calculation for the selected season and inspects Colley rankable contest records.
{{ Form::close() }}
{{ Form::open(array('url' => '/admin/utility/colleyMath',
'method' => 'GET',
'target' => '_blank')) }}
{{ Form::submit('Colley Example', array('class' => 'button', 'style' => 'font-size: 10pt;')) }}
{{ Form::label('year', 'Year', array('style' => 'font-weight: bold; width: 75px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('year', $options, Helpers::getCurrentYear(), array('style' => 'width: 80px; font-size: 10pt;')) }}
{{ Form::label('activity', 'Sport', array('style' => 'font-weight: bold; width: 75px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('activity', $options, 'FBL', array('style' => 'width: 150px; font-size: 10pt;')) }}
{{ Form::label('division', 'Division', array('style' => 'font-weight: bold; width: 75px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('division', $options, '6A', array('style' => 'width: 105px; font-size: 10pt;')) }}
View the Colley matrix and calculations for the specified year/activity/division.
{{ Form::close() }}
{{ Form::open(array('url' => '/admin/utility/checkLeagueContests',
'method' => 'GET',
'target' => '_blank')) }}
{{ Form::submit('Check League Contests', array('class' => 'button', 'style' => 'font-size: 10pt;')) }}
{{ Form::label('season', 'Season', array('style' => 'font-weight: bold; width: 75px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('season', $options, Helpers::getCurrentSeason(), array('style' => 'width: 100px; font-size: 10pt;')) }}
Run a check on the league contests to ensure they are correctly indicated.
{{ Form::close() }}
Run Simulation
{{ Form::open(array('url' => '/simulations/run',
'target' => '_blank',
'method' => 'GET')) }}
{{ Form::label('season', 'Season', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('season', $options, Helpers::getCurrentSeason(), array('style' => 'width: 100px; font-size: 10pt;')) }}
{{ Form::label('rpi', 'RPI Weights', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::text('rpi', '35-65', array('style' => 'font-size: 10pt; width: 75px;')) }}
{{ Form::label('combo', 'RPI:Colley', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::text('combo', '50-50', array('style' => 'font-size: 10pt; width: 75px;')) }}
{{ Form::label('tie', 'Tie Breaker', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::text('tie', 'colley', array('style' => 'font-size: 10pt; width: 75px;')) }}
{{ Form::submit('Run Simulation', array('class' => 'button', 'style' => 'font-size: 10pt;')) }}
{{ Form::label('variant', 'Variant', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::select('variant', $options, '', array('style' => 'font-size: 10pt;')) }}
{{ Form::label('no-truncate', 'Do not truncate', array('style' => 'font-weight: bold; font-size: 10pt; display: inline-block;')) }}
{{ Form::checkbox('no-truncate', 1, false, array('style' => 'vertical-align: middle;')) }}
{{ Form::label('debug', 'Debug', array('style' => 'font-weight: bold; font-size: 10pt; display: inline-block;')) }}
{{ Form::checkbox('debug', 1, false, array('style' => 'vertical-align: middle;')) }}
{{ Form::label('limit', 'Limit', array('style' => 'font-weight: bold; width: 100px; font-size: 10pt; display: inline-block;')) }}
{{ Form::text('limit', null, array('style' => 'font-size: 10pt; width: 75px;')) }}
*If including OOWP, input Limit (i.e. 50) and run once. When the limit is reached, check Do not truncate and keep Limit as is, then run repeatedly until a ZIP file is created.
{{ Form::close() }}
PRI Weights set how much a team's WWP and OWP count towards the RPI. Separate numbers by a hyphen (-) and make sure the numbers add up to 100. Add a third number (35-40-25) for including OOWP*. RPI:Colley is the ratio of RPI rankings to Colley rankings for determining OSAA ranking. 50-50 is a straight average, can be other numbers that total to 100, separate with hyphen. (i.e. 0-100 will calculate rankings based only on Colley ratings.) Tie Breaker can be any column in the team rankings table that will be used to break ties (use "rpi" or "colley".)
Variant offers specific ways in which to calculate rankings differently for a simulation. Default is to have no variant. Select an option to affect how that simulation is calculated.
Select your options for running a rankings simulation. A new window will open and when finished, a ZIP file will begin downloading. The ZIP file will contain rankings simulations for the sports in the specified season and a correlation summary of the simulation's accuracy.