1
0
forked from HQU-gxy/CVTH3PE

feat: Add CVXOPT solver infrastructure and VSCode settings

- Add CVXOPT dependency to pyproject.toml and uv.lock
- Create solver module with GLPK-based integer linear programming solver
- Add VSCode Python analysis settings
- Implement matrix and sparse matrix wrappers for CVXOPT
- Add GLPK solver wrapper with type-safe interfaces
This commit is contained in:
2025-03-03 17:27:42 +08:00
parent ed2b6685c0
commit 95c1196165
6 changed files with 702 additions and 0 deletions

4
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true
}