Removed unused member variable ReactionData.rxn_number

This commit is contained in:
Ray Speth 2013-01-11 22:56:30 +00:00
parent 183af676d5
commit 33653e7f43
2 changed files with 0 additions and 3 deletions

View file

@ -21,7 +21,6 @@ public:
reactionType = ELEMENTARY_RXN;
validate = false;
number = 0;
rxn_number = 0;
reversible = true;
rateCoeffType = ARRHENIUS_REACTION_RATECOEFF_TYPE;
falloffType = NONE;
@ -44,7 +43,6 @@ public:
bool validate;
int number;
int rxn_number;
std::vector<size_t> reactants;
std::vector<size_t> products;
vector_fp rorder;

View file

@ -852,7 +852,6 @@ bool rxninfo::installReaction(int iRxn, const XML_Node& r, Kinetics& kin,
rdata.equation = eqn;
rdata.number = iRxn;
rdata.rxn_number = iRxn;
// Read the rate coefficient data from the XML file. Trigger an
// exception for negative A unless specifically authorized.