├── AAMAS_GNN_MRC.ipynb ├── LICENSE ├── README.md ├── benchmark ├── JohnsonUltra.py └── edfutils.py ├── data ├── 00374_ddl.txt ├── 00374_dur.txt ├── 00374_loc.txt └── 00374_wait.txt ├── graph └── hetgat.py ├── gurobiv9 ├── 00374.log ├── 00374.mps ├── 00374.sol ├── 00374_0.txt ├── 00374_1.txt ├── 00374_2.txt ├── 00374_3.txt ├── 00374_4.txt └── 00374_w.txt ├── lr_scheduler_train.py └── utils.py /AAMAS_GNN_MRC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/AAMAS_GNN_MRC.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/JohnsonUltra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/benchmark/JohnsonUltra.py -------------------------------------------------------------------------------- /benchmark/edfutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/benchmark/edfutils.py -------------------------------------------------------------------------------- /data/00374_ddl.txt: -------------------------------------------------------------------------------- 1 | 2 24 2 | 15 26 3 | -------------------------------------------------------------------------------- /data/00374_dur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/data/00374_dur.txt -------------------------------------------------------------------------------- /data/00374_loc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/data/00374_loc.txt -------------------------------------------------------------------------------- /data/00374_wait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/data/00374_wait.txt -------------------------------------------------------------------------------- /graph/hetgat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/graph/hetgat.py -------------------------------------------------------------------------------- /gurobiv9/00374.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/gurobiv9/00374.log -------------------------------------------------------------------------------- /gurobiv9/00374.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/gurobiv9/00374.mps -------------------------------------------------------------------------------- /gurobiv9/00374.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/gurobiv9/00374.sol -------------------------------------------------------------------------------- /gurobiv9/00374_0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 16 3 | 6 4 | -------------------------------------------------------------------------------- /gurobiv9/00374_1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 15 3 | 3 4 | 2 5 | 17 6 | -------------------------------------------------------------------------------- /gurobiv9/00374_2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 8 3 | 14 4 | -------------------------------------------------------------------------------- /gurobiv9/00374_3.txt: -------------------------------------------------------------------------------- 1 | 9 2 | 11 3 | -------------------------------------------------------------------------------- /gurobiv9/00374_4.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 13 3 | 4 4 | 7 5 | -------------------------------------------------------------------------------- /gurobiv9/00374_w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/gurobiv9/00374_w.txt -------------------------------------------------------------------------------- /lr_scheduler_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/lr_scheduler_train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phejohnwang/MRCScheduling/HEAD/utils.py --------------------------------------------------------------------------------