[Matlab] Fix Kinetics.isReversible

This commit is contained in:
Ray Speth 2024-06-04 15:11:47 -04:00 committed by Ray Speth
parent 76322252e0
commit 026c5c7075

View File

@ -429,7 +429,7 @@ classdef Kinetics < handle
% :return:
% True if reaction number i is reversible. false if irreversible.
n = boolean(ctFunc('kin_isReversible', kin.kinID, i - 1));
n = ctFunc('kin_isReversible', kin.kinID, i - 1) == 1;
end
function wdot = get.netProdRates(kin)