├── .gitignore ├── README.md ├── fun ├── __init__.py ├── funModel.py └── funUserDefine.py ├── gj.R ├── mulObject.py ├── operation ├── __init__.py ├── change │ ├── __init__.py │ └── change_fun.py ├── choice │ ├── __init__.py │ ├── champion │ │ ├── __init__.py │ │ ├── champion_fun.py │ │ ├── champion_fun.py.bak │ │ └── mycmp.py │ ├── choice_fun.py │ └── createControlSet │ │ ├── __init__.py │ │ ├── control_layer_fun.py │ │ ├── control_relationship_fun.py │ │ ├── control_set_fun.py │ │ └── crowding_distance_fun.py └── cross │ ├── __init__.py │ └── cross_fun.py ├── x.py ├── x.txt └── 运行200代后运行结果图.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/README.md -------------------------------------------------------------------------------- /fun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fun/funModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/fun/funModel.py -------------------------------------------------------------------------------- /fun/funUserDefine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/fun/funUserDefine.py -------------------------------------------------------------------------------- /gj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/gj.R -------------------------------------------------------------------------------- /mulObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/mulObject.py -------------------------------------------------------------------------------- /operation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/change/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/change/change_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/change/change_fun.py -------------------------------------------------------------------------------- /operation/choice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/choice/champion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/choice/champion/champion_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/champion/champion_fun.py -------------------------------------------------------------------------------- /operation/choice/champion/champion_fun.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/champion/champion_fun.py.bak -------------------------------------------------------------------------------- /operation/choice/champion/mycmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/champion/mycmp.py -------------------------------------------------------------------------------- /operation/choice/choice_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/choice_fun.py -------------------------------------------------------------------------------- /operation/choice/createControlSet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/choice/createControlSet/control_layer_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/createControlSet/control_layer_fun.py -------------------------------------------------------------------------------- /operation/choice/createControlSet/control_relationship_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/createControlSet/control_relationship_fun.py -------------------------------------------------------------------------------- /operation/choice/createControlSet/control_set_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/createControlSet/control_set_fun.py -------------------------------------------------------------------------------- /operation/choice/createControlSet/crowding_distance_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/choice/createControlSet/crowding_distance_fun.py -------------------------------------------------------------------------------- /operation/cross/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operation/cross/cross_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/operation/cross/cross_fun.py -------------------------------------------------------------------------------- /x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/x.py -------------------------------------------------------------------------------- /x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/x.txt -------------------------------------------------------------------------------- /运行200代后运行结果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilmaycry812839668/NSGA2_Vector/HEAD/运行200代后运行结果图.png --------------------------------------------------------------------------------