当前位置: 首页>>代码示例>>Python>>正文


Python GroupAtom.isSpecificCaseOf方法代码示例

本文整理汇总了Python中rmgpy.molecule.group.GroupAtom.isSpecificCaseOf方法的典型用法代码示例。如果您正苦于以下问题:Python GroupAtom.isSpecificCaseOf方法的具体用法?Python GroupAtom.isSpecificCaseOf怎么用?Python GroupAtom.isSpecificCaseOf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在rmgpy.molecule.group.GroupAtom的用法示例。


在下文中一共展示了GroupAtom.isSpecificCaseOf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testIsSpecificCaseOf

# 需要导入模块: from rmgpy.molecule.group import GroupAtom [as 别名]
# 或者: from rmgpy.molecule.group.GroupAtom import isSpecificCaseOf [as 别名]
 def testIsSpecificCaseOf(self):
     """
     Test the GroupAtom.isSpecificCaseOf() method.
     """
     for label1, atomType1 in atomTypes.iteritems():
         for label2, atomType2 in atomTypes.iteritems():
             atom1 = GroupAtom(atomType=[atomType1], radicalElectrons=[1], charge=[0], label="*1")
             atom2 = GroupAtom(atomType=[atomType2], radicalElectrons=[1], charge=[0], label="*1")
             # And make more generic types of these two atoms
             atom1gen = GroupAtom(atomType=[atomType1], radicalElectrons=[0, 1], charge=[0, 1], label="*1")
             atom2gen = GroupAtom(atomType=[atomType2], radicalElectrons=[0, 1], charge=[0, 1], label="*1")
             if label1 == label2 or atomType2 in atomType1.generic:
                 self.assertTrue(
                     atom1.isSpecificCaseOf(atom2), "{0!s} is not a specific case of {1!s}".format(atom1, atom2)
                 )
                 self.assertTrue(
                     atom1.isSpecificCaseOf(atom2gen),
                     "{0!s} is not a specific case of {1!s}".format(atom1, atom2gen),
                 )
                 self.assertFalse(
                     atom1gen.isSpecificCaseOf(atom2), "{0!s} is a specific case of {1!s}".format(atom1gen, atom2)
                 )
             else:
                 self.assertFalse(
                     atom1.isSpecificCaseOf(atom2), "{0!s} is a specific case of {1!s}".format(atom1, atom2)
                 )
                 self.assertFalse(
                     atom1.isSpecificCaseOf(atom2gen), "{0!s} is a specific case of {1!s}".format(atom1, atom2gen)
                 )
                 self.assertFalse(
                     atom1gen.isSpecificCaseOf(atom2), "{0!s} is a specific case of {1!s}".format(atom1gen, atom2)
                 )
开发者ID:ReactionMechanismGenerator,项目名称:RMG-Py,代码行数:34,代码来源:groupTest.py


注:本文中的rmgpy.molecule.group.GroupAtom.isSpecificCaseOf方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。