-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
68 lines (58 loc) · 1.53 KB
/
.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
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
# pycache
*.DS_Store
*__pycache__
**/__pycache__/*
__pycache__/
**/__pycache__/**
# .zip or .gz
*.zip
*.gz
# build
LKH-3.0.7.tgz
LKH-3.0.7/**
dist/**
ml4co_kit.egg-info/**
build/**
ml4co_kit/solver/cvrp/hgs/source/cvrp_hgs_solver
# C extensions
*.pyd
*.so
*.o
ml4co_kit/solver/tsp/pyconcorde/build/**
ml4co_kit/solver/mis/KaMIS/**
ml4co_kit/solver/tsp/pyconcorde/concorde/_concorde.c
ml4co_kit/solver/tsp/c_ga_eax_large/ga_eax_large_solver
ml4co_kit/solver/tsp/c_ga_eax_normal/ga_eax_normal_solver
ml4co_kit/solver/cvrp/c_hgs/cvrp_hgs_solver
# datasets
dataset/**
data/**
# tmp
tmp/**
tmp.py
repos/**
ml4co_kit/solver/cvrp/c_hgs/tmp/**
ml4co_kit/solver/tsp/c_ga_eax_large/tmp/**
ml4co_kit/solver/tsp/c_ga_eax_normal/tmp/**
# coverage
coverage.xml
.coverage
# tests (solver)
tests/data_for_tests/solver/mis/mis_example/instance/preprocessed/**
# tests (draw)
tests/data_for_tests/draw/tsp/tsp_draw_example_solution.png
tests/data_for_tests/draw/tsp/tsp_draw_example_problem.png
tests/data_for_tests/draw/mis/mis_draw_example/instance/preprocessed/**
tests/data_for_tests/draw/mis/mis_draw_example/solution/**
tests/data_for_tests/draw/mis/mis_draw_example_solution.png
tests/data_for_tests/draw/mis/mis_draw_example_problem.png
tests/data_for_tests/draw/cvrp/cvrp_draw_example_problem.png
tests/data_for_tests/draw/cvrp/cvrp_draw_example_solution.png
# special
ml4co_kit/algorithm/tsp/decoder/cython_tsp_greedy/source/cython_tsp_greedy.c
# docs
docs/_build/**
docs/api/_autosummary/**
docs/auto_examples/**
docs/sg_execution_times.rst
docs/auto_examples/**