{ "version": "0.2.0", "configurations": [ { "type": "lldb", "request": "launch", "name": "sample", "program": "${workspaceFolder}/build/sample/BayesNetSample", "args": [ "-d", "iris", "-m", "TAN", "-p", "../../data/", "--tensors" ], "cwd": "${workspaceFolder}/build/sample/", }, { "type": "lldb", "request": "launch", "name": "experiment", "program": "${workspaceFolder}/build/src/Platform/main", "args": [ "-m", "TAN", "-p", "/Users/rmontanana/Code/discretizbench/datasets", "--discretize", "--stratified", "--title", "Debug test", "-d", "ionosphere" ], "cwd": "${workspaceFolder}/build/src/Platform", }, { "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" } ] }