| 30 | #define LEMON_MODULE_NAME "JudgingThread" |
| 31 | |
| 32 | JudgingThread::JudgingThread(QObject *parent) : QThread(parent) { |
| 33 | moveToThread(this); |
| 34 | // checkRejudgeMode = false; |
| 35 | needRejudge = false; |
| 36 | stopJudging = false; |
| 37 | timeUsed = -1; |
| 38 | memoryUsed = -1; |
| 39 | judgedTimes = 0; |
| 40 | // QTime t = QTime::currentTime(); |
| 41 | // qsrand(static_cast<unsigned int>(t.msec() + t.second() * 1000)); |
| 42 | } |
| 43 | |
| 44 | /*void JudgingThread::setCheckRejudgeMode(bool check) |
| 45 | { |
nothing calls this directly
no outgoing calls
no test coverage detected