Skip to content

Commit 81e42de

Browse files
committed
up
1 parent f4a5f6a commit 81e42de

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Oscar = "1.1.1"
4141
PolynomialRoots = "1.0.0"
4242
ReactionNetworkImporters = "0.15.1"
4343
SBMLToolkit = "0.1.29"
44-
Satisfiability = "0.1.1"
44+
Satisfiability = "0.2"
4545
SparseArrays = "1"
4646
SymbolicUtils = "3.7.2"
4747
julia = "1.10"

src/higherdeficiencyalgorithm.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
1111
For a large subset of networks with deficiency greater than 1, this algorithm constructs
1212
an inequality system that can be used to decide whether the system has the capacity to
13-
admit multiple steady states.
13+
admit multiple steady states. Returns `true` if the capability of having multiple steady states
14+
is detected, and `false` if not.
1415
"""
1516
function higherdeficiencyalgorithm(rn::ReactionSystem)
1617
# Choose an orientation.
@@ -50,7 +51,7 @@ function higherdeficiencyalgorithm(rn::ReactionSystem)
5051
addirrevconstraints(model, submat, W_irrev)
5152
addrevconstraints(model, submat, prodmat, W_rev)
5253

53-
# Generate forestal basis
54+
# Generate forestal basis - basis of the space ker L_O ∩ Γ_W
5455
B2 = findforestalbasis(rn)
5556

5657
# Generate sign patterns

0 commit comments

Comments
 (0)