From b1d317d8f4c6bcd4394f37d76534c10f1a4ee35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Wed, 12 Mar 2025 16:29:29 +0100 Subject: [PATCH] Add format and launch config --- .clang-format | 4 ++++ .vscode/launch.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .clang-format 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" },