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
conserved is by default false. That is, it is treated as a heritable parameter, and any daughter cells inherit the same value. (unlike a conserved quantity, which is split between daughter cells.)
When parsing XML, if the XML attribute isn't found, pugi::xml_node.attribute(string).as_bool() returns false, so a false would be overwritten with a false (no problem).
If the attribute is found, then false is overwritten by false or true, and both of these are no problem.
https://github.com/MathCancer/PhysiCell/blob/master/core/PhysiCell_cell.cpp#L3039
The text was updated successfully, but these errors were encountered: