Files
upo-valpre/.vscode/launch.json
Berack96 a729dfb123 Param
- added parameters to main
- print and/or save
- added more data to the stats
- removed lower and upper bounds for simplier error
2025-01-27 13:45:54 +01:00

36 lines
1.1 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Run1k Rand",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-runs 1000 -p -seed 0"
},
{
"type": "java",
"name": "Run1k save",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-runs 1000 -p -csv result.csv"
},
{
"type": "java",
"name": "Run1k",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-runs 1000 -p"
},
{
"type": "java",
"name": "Run10",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-runs 10"
},
]
}