-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitignore
29 lines (24 loc) · 915 Bytes
/
.gitignore
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
#
# .gitignore
# =============================================================================
# Nonlinear Optimization Algorithms Multilang. Version 0.1.1
# =============================================================================
# Nonlinear programming algorithms as the (un-)constrained minimization
# problems with the focus on their numerical expression using various
# programming languages.
#
# This is the configuration of the project Git ignorables,
# i.e. objects that should not be put into the repository.
#
# === Object files ============================================================
*.o
# === Intermediates ===========================================================
*.d
*.mod
*.pyc
# === Libraries ===============================================================
lib/
target/
# === Executables =============================================================
bin/
# vim:set nu et ts=4 sw=4: