Added rust solver to the repository

This commit is contained in:
Lukas Wölfer
2025-08-08 19:16:08 +02:00
parent a9ca38e812
commit 5fdf1602eb
91 changed files with 7047 additions and 0 deletions

46
solver-rs/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,46 @@
{
// 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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'board'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=board"
],
"filter": {
"name": "board",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'solver'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=solver"
],
"filter": {
"name": "solver",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}