examples/sample.clq
changeset 1 c445c931472f
equal deleted inserted replaced
-1:000000000000 0:ea37ce4a3afa
       
     1 c sample.clq
       
     2 c
       
     3 c This is an example of the Maximum Weight Clique
       
     4 c Problem in DIMACS clique/coloring format.
       
     5 c
       
     6 p edge 8 16
       
     7 n 1 3
       
     8 n 2 4
       
     9 n 3 8
       
    10 n 5 5
       
    11 n 6 2
       
    12 n 8 3
       
    13 e 1 4
       
    14 e 1 5
       
    15 e 1 6
       
    16 e 1 8
       
    17 e 2 3
       
    18 e 2 6
       
    19 e 2 7
       
    20 e 2 8
       
    21 e 3 4
       
    22 e 3 6
       
    23 e 3 7
       
    24 e 4 5
       
    25 e 4 8
       
    26 e 5 7
       
    27 e 5 8
       
    28 e 6 7
       
    29 c
       
    30 c eof