Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/SongXueZhi/RegMiner into main
Browse files Browse the repository at this point in the history
  • Loading branch information
SongXueZhi committed May 19, 2021
2 parents fa7eb76 + 0c7156d commit 41d2fd0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions miner/src/main/java/start/MinerEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static void main(String[] args) throws Exception {

public static void mutilThreadHandle() {
int cpuSize = ThreadPoolUtil.cpuIntesivePoolSize();
for (int i = 0; i <= 1; i++) {
for (int i = 0; i <= cpuSize; i++) {
new SycTaskHandle().start();
}
}
Expand Down Expand Up @@ -106,7 +106,6 @@ public void run() {
}

public void threadCoreTask() {
;
RelatedTestCaseParser rTCParser = new RelatedTestCaseParser(repo);
TestCaseDeterminer tm = new TestCaseDeterminer(repo);
BICFinder finder = new BICFinder();
Expand Down Expand Up @@ -143,4 +142,4 @@ public void threadCoreTask() {
}
}
}
}
}

0 comments on commit 41d2fd0

Please sign in to comment.