Files
upo-valpre/.vscode/launch.json
Berack96 b7b95fad7b Added Save and Load Net
- added kryo
- added save/load Net
- added examples in resources
- Main require a file.net
2025-01-29 16:53:40 +01:00

29 lines
944 B
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 Simple",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-net example1.net -runs 1000 -p -seed 0"
},
{
"type": "java",
"name": "Run1k Complex",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-net example2.net -runs 1000 -p -seed 0"
},
{
"type": "java",
"name": "Run10",
"request": "launch",
"mainClass": "net.berack.upo.valpre.Main",
"args": "-net example1.net -runs 10"
},
]
}