필터 지우기
필터 지우기

problem based approach- script running but does not gives a solution

조회 수: 3 (최근 30일)
Azime Beyza Ari
Azime Beyza Ari 2022년 4월 10일
댓글: Matt J 2022년 4월 10일
hello everyone i am working on a problem where i choosed problem based approach to solve it. I am very new to MATLAB so i do not know what i am doing wrong but here is my question:
the script is running but it does not gives me any solution it just says 'Solving problem using ga' (i want to solve with ga). I dont think it iterates. I have set stopping criterias that is not the problem. I have been looking to find answers to my problem but could not find any. Anyhow, if you have any ideas why i am facing this situation and suggestions to solve it i would be appreaciated.
Thank you in advance!
  댓글 수: 10
Azime Beyza Ari
Azime Beyza Ari 2022년 4월 10일
Thank you for your time and interest! I will look into it with that point of view.
Thank you!
Matt J
Matt J 2022년 4월 10일
Be mindfull of the (-1) in your function,
z= (-1)*sum(x.*rij.*ai,'all');
Because you have set ObjectiveSense="maximize", the (-1) makes it so that you are effectively minimizing z= sum(x.*rij.*ai,'all').

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2022년 4월 10일
There is only one objective, and two constraints so far and they all are linear. When i write my objective function it forces me to use ga. Did not understand why.
It forces you to use ga() because you have specified your objective function using fcn2optimexpr(). When you specify it as below, the solver can tell right away that it is an integer linear program, and solves it very quickly with initlinprog,
load Problem
x=problem.Variables.x;
y=problem.Variables.y;
problem.Objective=sum((x.*rij)*ai);
sol=solve(problem);
Solving problem using intlinprog. LP: Optimal objective value is -1402.268722. Cut Generation: Applied 1 implication cut, and 1 strong CG cut. Lower bound is -1402.000000. Heuristics: Found 1 solution using total rounding, and 1 solution using ZI round. Upper bound is -1089.000000. Relative gap is 28.72%. Heuristics: Found 1 solution using ZI round. Upper bound is -1304.000000. Relative gap is 7.51%. Heuristics: Found 1 solution using 2-opt. Upper bound is -1315.000000. Relative gap is 6.61%. Cut Generation: Applied 11 Gomory cuts, 18 implication cuts, and 3 strong CG cuts. Lower bound is -1383.000000. Relative gap is 5.17%. Branch and Bound: nodes total num int integer relative explored time (s) solution fval gap (%) 10000 1.87 4 -1.315000e+03 1.595745e+00 17766 3.11 4 -1.315000e+03 0.000000e+00 Optimal solution found. Intlinprog stopped because the objective value is within a gap tolerance of the optimal value, options.AbsoluteGapTolerance = 0 (the default value). The intcon variables are integer within tolerance, options.IntegerTolerance = 1e-05 (the default value).
sol.x=round(sol.x);
sol.y=round(sol.y);

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by