Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

README.txt

You have to be logged in to leave a comment. Sign In
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
  1. MWIS-VR-Instances
  2. This repository contains instances of maximum weight independent set problems
  3. described in the paper vrInstances.pdf located in the repository.
  4. There are 38 instances, each one corresponding to a directory archived as a
  5. gzipped tar file.
  6. For an undirected, node-weighted graph G = (V,E,w) with N nodes, M edges
  7. and integral node IDs from [1, N], the directory contains the following files:
  8. • instance name.txt – Name of the instance.
  9. • conflict graph.txt – Edges of G. The file has a total of M + 1 lines.
  10. The first line gives the numbers of nodes and edges: “N M”.
  11. Each of the lines 2, . . . , M + 1 describes an edge e = (u, v) ∈ E as “u v”.
  12. • node weights.txt – Node weights. The file has a total of N lines, each
  13. describing the weight of node v ∈ V as “v w(v)”. The weights are integers.
  14. • solution.txt – Initial solution for warm start.
  15. It contains one line per node in the initial solution, giving its node
  16. index: if a node v in the solution, the file contains a line with “v” in it.
  17. • cliques.txt – Set of cliques in G.
  18. For each clique C = {c1,c2,...,ck}, the file contains one line as
  19. “c1 c2 . . . ck”.
  20. • lploads.txt – Solution for the relaxed LP problem for the MWIS problem
  21. on the clique graph, where each node v ∈ V has a relaxed LP value
  22. l(v) ∈ [0,1].
  23. The file has N lines, each with the LP value of a node v ∈ V as “v l(v)”, where l(v) is a floating point number.
  24. The files of MWIS instances making up this repository are:
  25. MT-D-01.tar.gz
  26. MT-D-200.tar.gz
  27. MT-D-FN.tar.gz
  28. MT-W-01.tar.gz
  29. MT-W-200.tar.gz
  30. MT-W-FN.tar.gz
  31. MR-D-01.tar.gz
  32. MR-D-03.tar.gz
  33. MR-D-05.tar.gz
  34. MR-D-FN.tar.gz
  35. MR-W-FN.tar.gz
  36. MW-D-01.tar.gz
  37. MW-D-20.tar.gz
  38. MW-D-40.tar.gz
  39. MW-D-FN.tar.gz
  40. MW-W-01.tar.gz
  41. MW-W-05.tar.gz
  42. MW-W-10.tar.gz
  43. MW-W-FN.tar.gz
  44. CW-T-C-1.tar.gz
  45. CW-T-C-2.tar.gz
  46. CW-T-D-4.tar.gz
  47. CW-T-D-6.tar.gz
  48. CR-T-C-1.tar.gz
  49. CR-T-C-2.tar.gz
  50. CR-T-D-4.tar.gz
  51. CR-T-D-6.tar.gz
  52. CR-T-D-7.tar.gz
  53. CW-S-L-1.tar.gz
  54. CW-S-L-2.tar.gz
  55. CW-S-L-4.tar.gz
  56. CW-S-L-6.tar.gz
  57. CW-S-L-7.tar.gz
  58. CR-S-L-1.tar.gz
  59. CR-S-L-2.tar.gz
  60. CR-S-L-4.tar.gz
  61. CR-S-L-6.tar.gz
  62. CR-S-L-7.tar.gz
  63. Download each file. Then to create a directory named DIR from the file
  64. DIR.tar.gz with the instances description, run
  65. gunzip DIR.tar.gz
  66. tar xvf DIR.tar
  67. For questions, contact
  68. Mauricio G.C. Resende: mgcr@berkeley.edu
  69. Andrew V. Goldberg: avg@alum.mit.edu
  70. Quico Spaen: qspaen@berkeley.edu
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...