├── .gitignore ├── README.md ├── cmfunc.py ├── img ├── obj.gif └── pareto.gif ├── main.py ├── nsga2.py ├── nsga2ori.py └── objfunc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/README.md -------------------------------------------------------------------------------- /cmfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/cmfunc.py -------------------------------------------------------------------------------- /img/obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/img/obj.gif -------------------------------------------------------------------------------- /img/pareto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/img/pareto.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/main.py -------------------------------------------------------------------------------- /nsga2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/nsga2.py -------------------------------------------------------------------------------- /nsga2ori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/nsga2ori.py -------------------------------------------------------------------------------- /objfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaone/NSGA-II/HEAD/objfunc.py --------------------------------------------------------------------------------