├── .idea ├── misc.xml ├── modules.xml ├── other.xml ├── pure_mfea.iml └── workspace.xml ├── BENCHMARK ├── Tasks │ ├── CI_H.mat │ ├── CI_L.mat │ ├── CI_M.mat │ ├── NI_H.mat │ ├── NI_L.mat │ ├── NI_M.mat │ ├── PI_H.mat │ ├── PI_L.mat │ └── PI_M.mat ├── __init__.py ├── basic.py ├── benchmark.py └── task.py ├── MFEA ├── __init__.py ├── fnceval.py ├── individual.py ├── mfea.py ├── operators.py └── test.py ├── README.md └── SAMPLE ├── __init__.py ├── sample.py └── toyfnc.py /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/pure_mfea.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/.idea/pure_mfea.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /BENCHMARK/Tasks/CI_H.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/CI_H.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/CI_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/CI_L.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/CI_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/CI_M.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/NI_H.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/NI_H.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/NI_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/NI_L.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/NI_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/NI_M.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/PI_H.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/PI_H.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/PI_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/PI_L.mat -------------------------------------------------------------------------------- /BENCHMARK/Tasks/PI_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/Tasks/PI_M.mat -------------------------------------------------------------------------------- /BENCHMARK/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BENCHMARK/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/basic.py -------------------------------------------------------------------------------- /BENCHMARK/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/benchmark.py -------------------------------------------------------------------------------- /BENCHMARK/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/BENCHMARK/task.py -------------------------------------------------------------------------------- /MFEA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MFEA/fnceval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/MFEA/fnceval.py -------------------------------------------------------------------------------- /MFEA/individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/MFEA/individual.py -------------------------------------------------------------------------------- /MFEA/mfea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/MFEA/mfea.py -------------------------------------------------------------------------------- /MFEA/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/MFEA/operators.py -------------------------------------------------------------------------------- /MFEA/test.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | 4 | print(np.random.uniform(low=0, high=2)) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SAMPLE/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/SAMPLE/sample.py -------------------------------------------------------------------------------- /SAMPLE/toyfnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowshower/MFEA/HEAD/SAMPLE/toyfnc.py --------------------------------------------------------------------------------