├── DNSGA_II_A.m ├── DNSGA_II_B.m ├── LICENSE ├── README.md ├── evaluate_objective.m ├── genetic_operator.m ├── genetic_operator_2.m ├── initialProblem.m ├── initialize_variables.m ├── mutate.m ├── non_domination_sort_mod.m ├── objective_description_function.m ├── population2pic.m ├── replace_chromosome.m ├── testmop.m └── tournament_selection.m /DNSGA_II_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/DNSGA_II_A.m -------------------------------------------------------------------------------- /DNSGA_II_B.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/DNSGA_II_B.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/README.md -------------------------------------------------------------------------------- /evaluate_objective.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/evaluate_objective.m -------------------------------------------------------------------------------- /genetic_operator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/genetic_operator.m -------------------------------------------------------------------------------- /genetic_operator_2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/genetic_operator_2.m -------------------------------------------------------------------------------- /initialProblem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/initialProblem.m -------------------------------------------------------------------------------- /initialize_variables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/initialize_variables.m -------------------------------------------------------------------------------- /mutate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/mutate.m -------------------------------------------------------------------------------- /non_domination_sort_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/non_domination_sort_mod.m -------------------------------------------------------------------------------- /objective_description_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/objective_description_function.m -------------------------------------------------------------------------------- /population2pic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/population2pic.m -------------------------------------------------------------------------------- /replace_chromosome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/replace_chromosome.m -------------------------------------------------------------------------------- /testmop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/testmop.m -------------------------------------------------------------------------------- /tournament_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/White-Chen/DNSGA-II/HEAD/tournament_selection.m --------------------------------------------------------------------------------