- added parameters to main
- print and/or save
- added more data to the stats
- removed lower and upper bounds for simplier error
This commit is contained in:
2025-01-27 13:45:54 +01:00
parent 71dac2c6d1
commit a729dfb123
7 changed files with 294 additions and 54 deletions

36
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,36 @@
{
// 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"
},
]
}