You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following model thinks that S1 depends on c, which depends on S1, but this isn't the case--S1 is being set using an idiom that means 'use initial amount'.
// Created by libAntimony v2.8.0
model *case01223()
// Compartments and Species:
compartment c;
substanceOnly species $S1 in c;
// Rate Rules:
S1' = 1;
c := S1+1
// Species initializations:
S1 = 1.2/c;
// Other declarations:
var c;
end
Reported by: luciansmith
The text was updated successfully, but these errors were encountered:
The following model thinks that S1 depends on c, which depends on S1, but this isn't the case--S1 is being set using an idiom that means 'use initial amount'.
// Created by libAntimony v2.8.0
model *case01223()
// Compartments and Species:
compartment c;
substanceOnly species $S1 in c;
// Rate Rules:
S1' = 1;
c := S1+1
// Species initializations:
S1 = 1.2/c;
// Other declarations:
var c;
end
Reported by: luciansmith
The text was updated successfully, but these errors were encountered: