Hello,
I have some more multi-objective optimization questions using the exhaustive search method(brute-force method) that help would be much appreciated. An answer to all or one of the questions are all very very welcome.
I have 3 different multi-objective optimization problems with 3 discrete variables.
Optimization Problem 1) 2 objective functions
Optimization Problem 2) 2 objective functions + 1 constraint
Optimization Problem 3) 3 objective functions
The ranges for the variables are 15~286, 2~15, 2~6, respectively.
I have been told that the search space is small enough that exhaustive search space is my best bet and that it is easy to implement so I wanted to try it.
My questions are
1) Is it possible to apply the exhaustive search method to all three optimization problems?
2) How would I go about doing this using a computer software?
I was thinking that for
Optimization Problem 1 and 3
I would find all the function values first and then move on to finding and plotting the pareto fronts -> Is this the right approach?
Also, is there any example code I could follow(especially for optimization with three objectives)
For Optimization Problem 2 with a constraint
How would I incorporate this constraint?
Just make the program give me the function solution values that do not violate the constraint (meaning ignoring solutions that do) and than use them in plotting the pareto front?
Is there example codes/programs for doing this?
I would in particular find any Matlab and R codes helpful.
If there is a specific program/software or what not that does this, I would be very grateful as well.
Thank you to everyone in advance!