Mercurial > hg > octave-nkf
view scripts/optimization/glpktest1 @ 20296:23fb65b45d8c
do not call custom editor at startup and when debugging (bug #44701)
* file-editor.cc (call_custom_editor): return with true but without opening
a file;
(empty_script): do not open an empty script in the cutom editor
at startup
author | Torsten <ttl@justmail.de> |
---|---|
date | Fri, 17 Apr 2015 19:55:24 +0200 |
parents | 652e8aa49fa7 |
children |
line wrap: on
line source
clear; disp('1st problem'); s=-1; c=[10,6,4]'; a=[1,1,1;... 10,4,5;... 2,2,6]; b=[100,600,300]'; ctype=['U','U','U']'; lb=[0,0,0]'; ub=[]'; vartype=['C','C','C']'; param.msglev=3; param.lpsolver=1; param.save=1; [xmin,fmin,status,extra]=glpk(c,a,b,lb,ub,ctype,vartype,s,param) lpsolver = param.lpsolver; save_pb = param.save; [xmin,fmin,status,extra]=glpkmex(s,c,a,b,ctype,lb,ub,vartype,param,lpsolver,save_pb)