diff --git a/.vscode/launch.json b/.vscode/launch.json index 5d227e0..8fcc03d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: unimore_bda_6", + "name": "Test run", "type": "python", "request": "launch", "module": "unimore_bda_6", @@ -14,6 +14,20 @@ "NLTK_DATA": "./data/nltk", }, "cwd": "${workspaceFolder}", + }, + { + "name": "Full run", + "type": "python", + "request": "launch", + "module": "unimore_bda_6", + "justMyCode": false, + "env": { + "NLTK_DATA": "./data/nltk", + "WORKING_SET_SIZE": "30000000", + "TARGET_RUNS": "10", + "MAXIMUM_RUNS": "100", + }, + "cwd": "${workspaceFolder}", } ] }