Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

post testAll #2375

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/analysis/FBA/optimizeCbModel.m
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,10 @@
end
optProblem2.lb = [optProblem.lb;zeros(2*nRxns,1)];
optProblem2.ub = [optProblem.ub;Inf*ones(2*nRxns,1)];
optProblem2.b = [optProblem.b;zeros(2*nRxns,1);objectiveLP];
if isempty(objectiveLP)
objectiveLP = 0;
optProblem2.b = [optProblem.b;zeros(2*nRxns,1);objectiveLP];
end

%csense for 3 & 4 above
optProblem2.csense = [optProblem.csense; repmat('G',2*nRxns,1)];
Expand Down
3 changes: 2 additions & 1 deletion src/base/solvers/solveCobraQP.m
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@

%parse mosek result structure
[stat,origStat,x,y,yl,yu,z,zl,zu,k,basis,pobjval,dobjval] = parseMskResult(res);

w = -(zl - zu);

%debugging
if problemTypeParams.printLevel>2
res1=A*x + s -b;
Expand Down
Binary file not shown.
6 changes: 4 additions & 2 deletions test/verifiedTests/analysis/testFVA/testFVA.m
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
% test FVA without parrallel toolbox.
% here, we can use dqq and quadMinos, because this is not parallel.
solverPkgs = prepareTest('needsLP',true,'needsMILP',true,'needsQP',true,'needsMIQP',true, ...
'useSolversIfAvailable',{'gurobi'; 'ibm_cplex'; 'mosek'},...
'useSolversIfAvailable',{'mosek';'gurobi'},...
'excludeSolvers',{'dqqMinos','quadMinos', 'matlab','pdco'},...
'minimalMatlabSolverVersion',8.0);
end
Expand Down Expand Up @@ -105,7 +105,9 @@
% launch the flux variability analysis
fprintf(' Testing flux variability for the following reactions:\n');
disp(rxnNames);
[minFluxT, maxFluxT] = fluxVariability(model, 90, 'max', rxnNames, 'threads', threads);
%[minFlux, maxFlux] = fluxVariability(model, optPercentage, osenseStr, rxnNameList, printLevel, allowLoops, method, solverParams, advind, threads, heuristics, useMtFVA)
%[minFluxT, maxFluxT] = fluxVariability(model, 90, 'max', rxnNames, 'threads', threads);
[minFluxT, maxFluxT] = fluxVariability(model, 'optPercentage',90, 'osenseStr', 'max', 'rxnNameList', rxnNames, 'threads', threads);

% retrieve the IDs of each reaction
rxnID = findRxnIDs(model, rxnNames);
Expand Down
Binary file not shown.
Binary file not shown.
19 changes: 13 additions & 6 deletions test/verifiedTests/base/testSolvers/testOptimizeTwoCbModels.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,19 @@
model2_20 = changeRxnBounds(model2,'R7',20,'u');
[sol1,sol2,totalDiffFlux] = optimizeTwoCbModels(model1,model2_20);
assert(abs((totalDiffFlux - 80)) <= objtol);

%Test min as osenseStr. Should be the same trivial solution
[sol1,sol2,totalDiffFlux] = optimizeTwoCbModels(model1,model2_20,'min');
assert(all(abs(sol1.x) < objtol));
assert(all(abs(sol2.x ) < objtol));


%Test max as osenseStr. Should be the same trivial solution
[sol1b,sol2b,totalDiffFlux] = optimizeTwoCbModels(model1,model2_20,'max');
assert(all(abs(sol1.x - sol1b.x) < objtol));
assert(all(abs(sol2.x - sol2b.x) < objtol));

if 0 %not clear why this test would be true when one changes from max to min
%Test min as osenseStr. Should be the same trivial solution
[sol1b,sol2b,totalDiffFlux] = optimizeTwoCbModels(model1,model2_20,'min');
assert(all(abs(sol1b.x) < objtol));
assert(all(abs(sol2b.x) < objtol));
end

%Now, we will add a reaction that allows higher conversion with
%lower flux
%And run this with verbose output.
Expand Down
Loading