Files
solver/.gitignore
forbes-0023 5d1988b513
Some checks failed
CI / lint (push) Successful in 38s
CI / type-check (push) Successful in 1m47s
CI / test (push) Failing after 3m2s
Merge remote-tracking branch 'public/main'
# Conflicts:
#	.gitignore
#	README.md
2026-02-03 10:53:48 -06:00

84 lines
809 B
Plaintext

# C++ compiled objects
*.d
*.slo
*.lo
*.o
*.obj
*.gch
*.pch
# C++ libraries
*.so
*.dylib
*.dll
*.lai
*.la
*.a
*.lib
# C++ executables
*.exe
*.out
*.app
# C++ build
build/
cmake-build-debug/
.vs/
x64/
temp/
# OndselSolver test artifacts
*.bak
assembly.asmt
/testapp/draggingBackhoe.log
/testapp/runPreDragBackhoe.asmt
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
*.egg
# Virtual environments
.venv/
venv/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# mypy / ruff / pytest
.mypy_cache/
.ruff_cache/
.pytest_cache/
# Data (large files tracked separately)
data/synthetic/*.pt
data/fusion360/*.json
data/fusion360/*.step
data/processed/*.pt
!data/**/.gitkeep
# Model checkpoints
*.ckpt
*.pth
*.onnx
*.torchscript
# Experiment tracking
wandb/
runs/
# OS
.DS_Store
Thumbs.db
# Environment
.env