├── FixingStrategy_SCIP.py ├── GCN.py ├── LICENSE ├── PredictAndSearch_GRB.py ├── PredictAndSearch_SCIP.py ├── README.md ├── dataset └── dataset.md ├── gurobi.py ├── helper.py ├── instance ├── test │ └── asd └── train │ └── tst ├── mina.txt ├── models ├── CA.pth ├── IP.pth ├── IS.pth └── LB.pth ├── py38.yaml └── trainPredictModel.py /FixingStrategy_SCIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/FixingStrategy_SCIP.py -------------------------------------------------------------------------------- /GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/GCN.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/LICENSE -------------------------------------------------------------------------------- /PredictAndSearch_GRB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/PredictAndSearch_GRB.py -------------------------------------------------------------------------------- /PredictAndSearch_SCIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/PredictAndSearch_SCIP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/README.md -------------------------------------------------------------------------------- /dataset/dataset.md: -------------------------------------------------------------------------------- 1 | This folder contains datasets in sub-direction DATASET_NAME. 2 | -------------------------------------------------------------------------------- /gurobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/gurobi.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/helper.py -------------------------------------------------------------------------------- /instance/test/asd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /instance/train/tst: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mina.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /models/CA.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/models/CA.pth -------------------------------------------------------------------------------- /models/IP.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/models/IP.pth -------------------------------------------------------------------------------- /models/IS.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/models/IS.pth -------------------------------------------------------------------------------- /models/LB.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/models/LB.pth -------------------------------------------------------------------------------- /py38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/py38.yaml -------------------------------------------------------------------------------- /trainPredictModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sribdcn/Predict-and-Search_MILP_method/HEAD/trainPredictModel.py --------------------------------------------------------------------------------