Diff
Not logged in

Differences From Artifact [ef5cfcc2ac51c863]:

To Artifact [045b845268918546]:


42 42 private: 43 43 string log; 44 44 long[] score_log; 45 45 bool flushed; 46 46 47 47 void flush() 48 48 { 49 + if(flushed) 50 + return; 51 + 49 52 Tuple!(long, int) cand; 50 53 cand[0] = long.min; 51 54 52 55 for(int i=0; i<score_log.length; ++i) 53 56 if(cand[0] < score_log[i]) 54 57 cand = tuple(score_log[i],i); 55 58