diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..8d96b77 --- /dev/null +++ b/.clang-format @@ -0,0 +1,4 @@ +# .clang-format +BasedOnStyle: LLVM +IndentWidth: 4 +ColumnLimit: 120 diff --git a/.vscode/launch.json b/.vscode/launch.json index 69a60a0..eb4a76a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" },