BayesNet/.vscode/launch.json

53 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",
"TAN",
"-p",
"../../data/",
"--tensors"
],
2023-07-25 23:39:01 +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",
"TAN",
"-p",
"/Users/rmontanana/Code/discretizbench/datasets",
2023-07-25 23:39:01 +00:00
"--discretize",
"--stratified",
2023-07-27 13:49:58 +00:00
"--title",
"Debug test",
"-d",
"ionosphere"
],
"cwd": "${workspaceFolder}/build/src/Platform",
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
}
]
}