├── Particle.py ├── README.md ├── __pycache__ ├── Particle.cpython-36.pyc ├── arguments.cpython-36.pyc ├── connection.cpython-36.pyc ├── connection.cpython-36.pyc.1616262567456 ├── convergence_graph.cpython-36.pyc ├── dataset.cpython-36.pyc ├── evaluation.cpython-36.pyc ├── fitness.cpython-36.pyc ├── haversine.cpython-36.pyc ├── initialize.cpython-36.pyc ├── pso_operator.cpython-36.pyc └── se_arguments.cpython-36.pyc ├── arguments.py ├── connection.py ├── convergence_graph.py ├── dataset.py ├── datasets ├── firenze.txt ├── italy.csv ├── japan.csv ├── nchu.txt ├── population_firenze.txt ├── population_nchu.txt ├── population_san_francisco.txt ├── population_tokyo.txt ├── san_francisco.txt ├── taiwan.csv ├── tokyo.txt └── usa.csv ├── edge-computing_PSO.py ├── evaluation.py ├── fitness.py ├── haversine.py ├── initialize.py ├── population_nchu.txt ├── pso_operator.py └── test └── src ├── connection.py └── dataset.py /Particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/Particle.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | py_edge-computing_PSO 2 | -------------------------------------------------------------------------------- /__pycache__/Particle.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/Particle.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/arguments.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/arguments.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/connection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/connection.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/connection.cpython-36.pyc.1616262567456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/connection.cpython-36.pyc.1616262567456 -------------------------------------------------------------------------------- /__pycache__/convergence_graph.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/convergence_graph.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/evaluation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/evaluation.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/fitness.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/fitness.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/haversine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/haversine.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/initialize.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/initialize.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/pso_operator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/pso_operator.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/se_arguments.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/__pycache__/se_arguments.cpython-36.pyc -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/arguments.py -------------------------------------------------------------------------------- /connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/connection.py -------------------------------------------------------------------------------- /convergence_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/convergence_graph.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/dataset.py -------------------------------------------------------------------------------- /datasets/firenze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/firenze.txt -------------------------------------------------------------------------------- /datasets/italy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/italy.csv -------------------------------------------------------------------------------- /datasets/japan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/japan.csv -------------------------------------------------------------------------------- /datasets/nchu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/nchu.txt -------------------------------------------------------------------------------- /datasets/population_firenze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/population_firenze.txt -------------------------------------------------------------------------------- /datasets/population_nchu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/population_nchu.txt -------------------------------------------------------------------------------- /datasets/population_san_francisco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/population_san_francisco.txt -------------------------------------------------------------------------------- /datasets/population_tokyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/population_tokyo.txt -------------------------------------------------------------------------------- /datasets/san_francisco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/san_francisco.txt -------------------------------------------------------------------------------- /datasets/taiwan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/taiwan.csv -------------------------------------------------------------------------------- /datasets/tokyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/tokyo.txt -------------------------------------------------------------------------------- /datasets/usa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/datasets/usa.csv -------------------------------------------------------------------------------- /edge-computing_PSO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/edge-computing_PSO.py -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/evaluation.py -------------------------------------------------------------------------------- /fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/fitness.py -------------------------------------------------------------------------------- /haversine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/haversine.py -------------------------------------------------------------------------------- /initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/initialize.py -------------------------------------------------------------------------------- /population_nchu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/population_nchu.txt -------------------------------------------------------------------------------- /pso_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/pso_operator.py -------------------------------------------------------------------------------- /test/src/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/test/src/connection.py -------------------------------------------------------------------------------- /test/src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex840906/py_edge-computing_PSO/HEAD/test/src/dataset.py --------------------------------------------------------------------------------