@@ -203,45 +203,45 @@ void KnockoutTournament::setTC(TournamentPlayer white, TournamentPlayer black, C
203203
204204 qWarning () << " ARUN: Holy:" << white.builder ()->resumescore ();
205205
206- if ((firstScore + secondScore) >= 128 )
206+ if ((firstScore + secondScore) >= 32 )
207207 {
208208 wTimeControl.setTimePerTc (60000 );
209209 wTimeControl.setTimeIncrement (1000 );
210210 bTimeControl.setTimePerTc (60000 );
211211 bTimeControl.setTimeIncrement (1000 );
212- qWarning () << " ARUNN: reducing TC: 64 " << white.timeControl ().timePerTc ();
212+ qWarning () << " ARUNN: reducing TC: 16 " << white.timeControl ().timePerTc ();
213213 }
214- else if ((firstScore + secondScore) >= 112 )
214+ else if ((firstScore + secondScore) >= 28 )
215215 {
216216 wTimeControl.setTimePerTc (120000 );
217217 wTimeControl.setTimeIncrement (1000 );
218218 bTimeControl.setTimePerTc (120000 );
219219 bTimeControl.setTimeIncrement (1000 );
220- qWarning () << " ARUNN: reducing TC: 56 " << white.timeControl ().timePerTc ();
220+ qWarning () << " ARUNN: reducing TC: 14 " << white.timeControl ().timePerTc ();
221221 }
222- else if ((firstScore + secondScore) >= 96 )
222+ else if ((firstScore + secondScore) >= 24 )
223223 {
224224 wTimeControl.setTimePerTc (240000 );
225225 wTimeControl.setTimeIncrement (2000 );
226226 bTimeControl.setTimePerTc (240000 );
227227 bTimeControl.setTimeIncrement (2000 );
228- qWarning () << " ARUNN: reducing TC: 48 " << white.timeControl ().timePerTc ();
228+ qWarning () << " ARUNN: reducing TC: 12 " << white.timeControl ().timePerTc ();
229229 }
230- else if ((firstScore + secondScore) >= 80 )
230+ else if ((firstScore + secondScore) >= 20 )
231231 {
232232 wTimeControl.setTimePerTc (480000 );
233233 wTimeControl.setTimeIncrement (3000 );
234234 bTimeControl.setTimePerTc (480000 );
235235 bTimeControl.setTimeIncrement (3000 );
236- qWarning () << " ARUNN: reducing TC: 40 " << white.timeControl ().timePerTc ();
236+ qWarning () << " ARUNN: reducing TC: 10 " << white.timeControl ().timePerTc ();
237237 }
238- else if ((firstScore + secondScore) >= 64 )
238+ else if ((firstScore + secondScore) >= 16 )
239239 {
240240 wTimeControl.setTimePerTc (960000 );
241241 bTimeControl.setTimePerTc (960000 );
242242 wTimeControl.setTimeIncrement (4000 );
243243 bTimeControl.setTimeIncrement (4000 );
244- qWarning () << " ARUNN: reducing TC: 32 " << white.timeControl ().timePerTc ();
244+ qWarning () << " ARUNN: reducing TC: 8 " << white.timeControl ().timePerTc ();
245245 }
246246 game->setTimeControl (wTimeControl, Chess::Side::White);
247247 game->setTimeControl (bTimeControl, Chess::Side::Black);
0 commit comments