BayesNet/.vscode/launch.json

51 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2023-06-29 20:00:41 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
2023-07-25 23:39:01 +00:00
"name": "sample",
"program": "${workspaceFolder}/build/sample/BayesNetSample",
"args": [
2023-07-25 23:39:01 +00:00
"-d",
"iris",
"-m",
2023-08-03 18:22:33 +00:00
"KDB",
"-s",
"271",
2023-07-25 23:39:01 +00:00
"-p",
2023-07-30 17:00:02 +00:00
"/Users/rmontanana/Code/discretizbench/datasets/",
],
2023-07-30 17:00:02 +00:00
//"cwd": "${workspaceFolder}/build/sample/",
2023-06-29 20:00:41 +00:00
},
{
"type": "lldb",
"request": "launch",
"name": "experiment",
"program": "${workspaceFolder}/build/src/Platform/main",
"args": [
"-m",
2023-08-06 09:31:44 +00:00
"AODELd",
"-p",
"/Users/rmontanana/Code/discretizbench/datasets",
"--stratified",
"-d",
2023-07-31 17:53:55 +00:00
"iris"
],
2023-08-06 09:31:44 +00:00
"cwd": "/Users/rmontanana/Code/discretizbench",
2023-06-30 00:46:06 +00:00
},
{
"name": "Build & debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bayesnet",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "CMake: build"
2023-06-29 20:00:41 +00:00
}
]
}