Add format and launch config

This commit is contained in:
2025-03-12 16:29:29 +01:00
parent 7876d1a370
commit b1d317d8f4
2 changed files with 6 additions and 2 deletions

4
.clang-format Normal file
View File

@@ -0,0 +1,4 @@
# .clang-format
BasedOnStyle: LLVM
IndentWidth: 4
ColumnLimit: 120

4
.vscode/launch.json vendored
View File

@@ -5,7 +5,7 @@
"type": "lldb",
"request": "launch",
"name": "sample",
"program": "${workspaceFolder}/build_release/sample/bayesnet_sample",
"program": "${workspaceFolder}/sample/build/bayesnet_sample",
"args": [
"${workspaceFolder}/tests/data/glass.arff"
]
@@ -16,7 +16,7 @@
"name": "test",
"program": "${workspaceFolder}/build_Debug/tests/TestBayesNet",
"args": [
"[Models]"
"[XBAODE]"
],
"cwd": "${workspaceFolder}/build_Debug/tests"
},