reenable dimacs problem

This commit is contained in:
Laurent Perron
2018-09-25 08:10:36 +02:00
parent 2091e3ffce
commit bbbe8b1fd4
2 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
c This is a simple example file to demonstrate the DIMACS
c input file format for assignment problems.
c
c Problem line (resources+tasks) (resources*tasks)
p asn 10 25
c
c Node descriptor lines (indeces of assignable resources only)
n 1
n 2
n 3
n 4
n 5
c
c Arc descriptor lines (tasks over each resource and "score")
a 1 6 22
a 1 7 30
a 1 8 26
a 1 9 16
a 1 10 25
a 2 6 27
a 2 7 29
a 2 8 28
a 2 9 20
a 2 10 32
a 3 6 33
a 3 7 25
a 3 8 21
a 3 9 29
a 3 10 23
a 4 6 24
a 4 7 24
a 4 8 30
a 4 9 19
a 4 10 26
a 5 6 30
a 5 7 33
a 5 8 32
a 5 9 37
a 5 10 31
c
c End of file

View File

@@ -476,7 +476,7 @@ test_cc_examples: cc
$(MAKE) rcc_cvrptw_with_refueling
$(MAKE) rcc_cvrptw_with_resources
$(MAKE) rcc_cvrptw_with_stop_times_and_resources
# $(MAKE) rcc_dimacs_assignment # Miss data file.
$(MAKE) rcc_dimacs_assignment ARGS=examples/data/dimacs/assignment/small.asn
$(MAKE) rcc_dobble_ls
$(MAKE) rcc_flexible_jobshop
$(MAKE) rcc_flow_api