示例#1
0
 /// <summary> Returns an array of double with the stoichiometric coefficients
 /// of the products.
 ///
 /// </summary>
 /// <returns> An array of double's containing the coefficients of the products
 /// </returns>
 /// <seealso cref="setProductCoefficients">
 /// </seealso>
 public virtual double[] getProductCoefficients()
 {
     return(products.getMultipliers());
 }
示例#2
0
 /// <summary> Returns an array of double with the stoichiometric coefficients
 /// of the reactants.
 ///
 /// </summary>
 /// <returns> An array of double's containing the coefficients of the reactants
 /// </returns>
 /// <seealso cref="setReactantCoefficients">
 /// </seealso>
 public virtual double[] getReactantCoefficients()
 {
     return(reactants.getMultipliers());
 }