-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
37 lines (31 loc) · 825 Bytes
/
Copy path.gitignore
File metadata and controls
37 lines (31 loc) · 825 Bytes
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
# macOS
.DS_Store
# Downloaded ns-2 source trees (created by scripts/fetch-ns2-allinone-*.sh)
ns2/
# Reproduction output: simulation traces and sweep results (generated by
# running the scenarios)
output/
# Simulation output traces and plots (generated by running examples)
examples/*/output/
examples/**/*.tr
examples/**/*.log
examples/**/*.png
examples/**/*.eps
# example-1's `start` wrapper creates .p files and per-scheduler subdirs;
# example-2 ships .p files as committed source so scope .p to example-1.
examples/example-1/*.p
examples/example-1/PQ/
examples/example-1/SCFQ/
examples/example-1/SFQ/
examples/example-1/WFQ/
examples/example-1/WF2Qp/
examples/example-1/LLQ/
# Python bytecode caches (created when the plotting/manifest scripts run)
__pycache__/
*.pyc
# Editor files
*.swp
*.swo
*~
.idea/
.vscode/