Exemplo n.º 1
0
        public static int GetBondCount(IReactionSet set)
        {
            int count = 0;

            foreach (var iReaction in set)
            {
                count += ReactionManipulator.GetBondCount(iReaction);
            }
            return(count);
        }
Exemplo n.º 2
0
 public void TestGetBondCount_IReaction()
 {
     Assert.AreEqual(18, ReactionManipulator.GetBondCount(reaction));
 }