MCPcopy Create free account
hub / github.com/Project-LemonLime/Project_LemonLime / JudgingThread

Method JudgingThread

src/core/judgingthread.cpp:32–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30#define LEMON_MODULE_NAME "JudgingThread"
31
32JudgingThread::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{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected