Optimize BoostAODE -> XBAODE #33

Merged
rmontanana merged 27 commits from WA2DE into main 2025-03-16 17:58:10 +00:00
36 changed files with 1401 additions and 70 deletions
Showing only changes of commit b1d317d8f4 - Show all commits

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"
},