-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
85 lines (74 loc) · 1.02 KB
/
.gitignore
File metadata and controls
85 lines (74 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Build artifacts
build/
lib/
*.o
*.a
*.so
*.so.*
*.dylib
*.dll
*.exe
# CUDA compiled files
*.cubin
*.fatbin
*.ptx
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
.eggs/
*.egg
.pytest_cache/
.venv/
venv/
ENV/
env/
# Python bindings build
bindings/python/build/
bindings/python/dist/
bindings/python/hprlp.egg-info/
bindings/python/hprlp/*.so
bindings/python/src/build/
# Julia
bindings/julia/package/Manifest.toml
bindings/julia/package/.CondaPkg/
bindings/julia/package/deps/
# MATLAB
bindings/matlab/+hprlp/private/*.mexa64
bindings/matlab/+hprlp/private/*.mexmaci64
bindings/matlab/+hprlp/private/*.mexw64
*.asv
*.mex
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
install_manifest.txt
*.cmake
!CMakeLists.txt
!cmake/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Executables
examples/c/example_direct_lp
examples/c/example_mps_file
examples/cpp/example_direct_lp
examples/cpp/example_mps_file
# Results and logs
*.log
*.out
*.json
*.csv
# Personal scripts
my_scripts/
# OS-specific
.DS_Store
Thumbs.db
*.tmp