|
| 1 | +function __init__() |
| 2 | + # MIPLIB 2017 |
| 3 | + register( |
| 4 | + DataDep( |
| 5 | + "miplib2017-collection", |
| 6 | + """ |
| 7 | + All instances in the MIPLIB 2017 collection set (size: 3.5 GB). |
| 8 | + Source: https://miplib.zib.de/index.html.""", |
| 9 | + "https://miplib.zib.de/downloads/collection.zip", |
| 10 | + post_fetch_method = unpack, |
| 11 | + ), |
| 12 | + ) |
| 13 | + register( |
| 14 | + DataDep( |
| 15 | + "miplib2017-benchmark", |
| 16 | + """ |
| 17 | + All instances in the MIPLIB 2017 benchmark set (size: 317 MB). |
| 18 | + Source: https://miplib.zib.de/index.html.""", |
| 19 | + "https://miplib.zib.de/downloads/benchmark.zip", |
| 20 | + post_fetch_method = unpack, |
| 21 | + "c756eefd544d83b31809306b45d3549a1a5b9378e6aa78b68738b1a3b6a418fa" |
| 22 | + ), |
| 23 | + ) |
| 24 | + register( |
| 25 | + DataDep( |
| 26 | + "miplib2017-collection-list", |
| 27 | + """ |
| 28 | + List of instances in the MIPLIB 2017 collection. |
| 29 | + Source: https://miplib.zib.de/index.html.""", |
| 30 | + "https://miplib.zib.de/downloads/collection-v1.test", |
| 31 | + "c416f857083e2b7ec6edad87acc80437e2ea4be65debdbe7c4f3072881981c3f" |
| 32 | + ), |
| 33 | + ) |
| 34 | + register( |
| 35 | + DataDep( |
| 36 | + "miplib2017-benchmark-list", |
| 37 | + """ |
| 38 | + List of instances in the MIPLIB 2017 benchmark. |
| 39 | + Source: https://miplib.zib.de/index.html.""", |
| 40 | + "https://miplib.zib.de/downloads/benchmark-v2.test", |
| 41 | + "0ee9758dba64bb1689cc121c794ee547992a046bcabe1cce9ea79158375dabd5" |
| 42 | + ), |
| 43 | + ) |
| 44 | + # Mittelmann |
| 45 | + for (folder, names) in pairs(MITTELMANN_LP_INSTANCES) |
| 46 | + for name in names |
| 47 | + @info "$folder / $name" |
| 48 | + datadep_name = "mittelmann-lp-$name" |
| 49 | + # TODO: some paths are just .bz2, following no visible pattern |
| 50 | + if isnothing(folder) |
| 51 | + datadep_msg = """ |
| 52 | + Instance $name from the Mittelmann LP benchmark set. |
| 53 | + Source: https://plato.asu.edu/ftp/lptestset/.""" |
| 54 | + datadep_url = "https://plato.asu.edu/ftp/lptestset/$name.mps.bz2" |
| 55 | + else |
| 56 | + datadep_msg = """ |
| 57 | + Instance $name from the Mittelmann LP benchmark set (folder $folder). |
| 58 | + Source: https://plato.asu.edu/ftp/lptestset/.""" |
| 59 | + datadep_url = "https://plato.asu.edu/ftp/lptestset/$folder/$name.mps.bz2" |
| 60 | + end |
| 61 | + register( |
| 62 | + DataDep(datadep_name, datadep_msg, datadep_url) |
| 63 | + ) |
| 64 | + end |
| 65 | + end |
| 66 | + return nothing |
| 67 | +end |
0 commit comments