├── .gitignore ├── README.md └── UIC18 ├── LODCO.m ├── eps_greedy_LODCO.m ├── figures ├── 10devices_battery.svg ├── 10devices_battery_eps03.svg ├── 10devices_battery_eps08.svg ├── 10devices_battery_int.svg ├── 10devices_cost.svg ├── 10devices_cost_eps03.svg ├── 10devices_cost_eps08.svg ├── 10devices_cost_int.svg ├── 10devices_ratio.svg ├── 10devices_ratio_eps03.svg ├── 10devices_ratio_eps08.svg ├── LODCO_battery.svg ├── LODCO_cost.svg └── LODCO_ratio.svg ├── genetic_LODCO.m ├── greedy_LODCO.m └── linprog_LODCO.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/README.md -------------------------------------------------------------------------------- /UIC18/LODCO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/LODCO.m -------------------------------------------------------------------------------- /UIC18/eps_greedy_LODCO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/eps_greedy_LODCO.m -------------------------------------------------------------------------------- /UIC18/figures/10devices_battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_battery.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_battery_eps03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_battery_eps03.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_battery_eps08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_battery_eps08.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_battery_int.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_battery_int.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_cost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_cost.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_cost_eps03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_cost_eps03.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_cost_eps08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_cost_eps08.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_cost_int.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_cost_int.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_ratio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_ratio.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_ratio_eps03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_ratio_eps03.svg -------------------------------------------------------------------------------- /UIC18/figures/10devices_ratio_eps08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/10devices_ratio_eps08.svg -------------------------------------------------------------------------------- /UIC18/figures/LODCO_battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/LODCO_battery.svg -------------------------------------------------------------------------------- /UIC18/figures/LODCO_cost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/LODCO_cost.svg -------------------------------------------------------------------------------- /UIC18/figures/LODCO_ratio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/figures/LODCO_ratio.svg -------------------------------------------------------------------------------- /UIC18/genetic_LODCO.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UIC18/greedy_LODCO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/greedy_LODCO.m -------------------------------------------------------------------------------- /UIC18/linprog_LODCO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hliangzhao/Edge-Computing-Codes/HEAD/UIC18/linprog_LODCO.m --------------------------------------------------------------------------------