mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Add NUVMAP Delta-DAG graph coloring example
This commit is contained in:
parent
91fed078f1
commit
6739070ad7
1 changed files with 47 additions and 0 deletions
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"problem_type": "graph_k_coloring",
|
||||
"n": 18,
|
||||
"k": 3,
|
||||
"projection_level": "frontier",
|
||||
"max_attempts": 100000,
|
||||
"edges": [
|
||||
[0, 3],
|
||||
[0, 4],
|
||||
[0, 7],
|
||||
[0, 9],
|
||||
[1, 4],
|
||||
[1, 5],
|
||||
[1, 8],
|
||||
[1, 10],
|
||||
[2, 5],
|
||||
[2, 6],
|
||||
[2, 9],
|
||||
[2, 11],
|
||||
[3, 6],
|
||||
[3, 10],
|
||||
[3, 12],
|
||||
[4, 7],
|
||||
[4, 11],
|
||||
[4, 13],
|
||||
[5, 8],
|
||||
[5, 12],
|
||||
[5, 14],
|
||||
[6, 9],
|
||||
[6, 13],
|
||||
[6, 15],
|
||||
[7, 10],
|
||||
[7, 14],
|
||||
[7, 16],
|
||||
[8, 11],
|
||||
[8, 15],
|
||||
[8, 17],
|
||||
[9, 12],
|
||||
[9, 16],
|
||||
[10, 13],
|
||||
[10, 17],
|
||||
[11, 14],
|
||||
[12, 15],
|
||||
[13, 16],
|
||||
[14, 17]
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue