Make fit build the network

This commit is contained in:
2023-06-30 02:46:06 +02:00
parent 31c22898de
commit 0a31aa2ff1
13 changed files with 580 additions and 82 deletions

16
.vscode/launch.json vendored
View File

@@ -1,7 +1,4 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
@@ -20,6 +17,19 @@
"program": "${workspaceFolder}/a.out",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"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"
}
]
}