We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c3ed4 commit e7ed430Copy full SHA for e7ed430
src/test/java/it/unipr/analysis/cron/EVMBytecodeGroundTruth.java
@@ -24,10 +24,9 @@ public void testGroundTruth() throws Exception {
24
Path SMARTCONTRACTS_FULLPATH = Paths.get("benchmark", "50-ground-truth.txt");
25
26
boolean changed = false;
27
- EVMLiSA.setStackLimit(32);
28
- EVMLiSA.setStackSetSize(8);
29
EVMLiSA.setWorkingDirectory(WORKING_DIRECTORY_PATH);
30
- EVMLiSA.setCores(6);
+ EVMLiSA.setCores(
+ Runtime.getRuntime().availableProcessors() / 4 * 3);
31
EVMLiSA.setTestMode();
32
EVMLiSA.analyzeSetOfContracts(SMARTCONTRACTS_FULLPATH);
33
0 commit comments