本文整理汇总了C++中OBMol::GetBondById方法的典型用法代码示例。如果您正苦于以下问题:C++ OBMol::GetBondById方法的具体用法?C++ OBMol::GetBondById怎么用?C++ OBMol::GetBondById使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OBMol
的用法示例。
在下文中一共展示了OBMol::GetBondById方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testIdsNewBond1
// OBMol::NewBond()
void testIdsNewBond1()
{
OBMol mol;
for (int i = 0; i < 10; ++i) {
OBBond *bond = mol.NewBond();
OB_REQUIRE(bond->GetId() == i);
}
OB_REQUIRE( mol.GetBondById(0) );
OB_REQUIRE( mol.GetBondById(4) );
OB_REQUIRE( mol.GetBondById(9) );
OB_REQUIRE( !mol.GetBondById(10) );
OB_REQUIRE( mol.GetBondById(0)->GetId() == 0 );
OB_REQUIRE( mol.GetBondById(4)->GetId() == 4 );
OB_REQUIRE( mol.GetBondById(9)->GetId() == 9 );
}
示例2: testIdsAddBond
void testIdsAddBond()
{
OBMol mol;
// add 5 bonds
for (int i = 0; i < 5; ++i)
mol.NewBond();
OBBond bond;
OBAtom *a = mol.NewAtom();
OBAtom *b = mol.NewAtom();
bond.SetBegin(a);
bond.SetEnd(b);
// add a sixth bond
mol.AddBond(bond);
OB_REQUIRE( mol.NumBonds() == 6 );
OB_REQUIRE( mol.GetBondById(5) );
OB_REQUIRE( mol.GetBondById(5)->GetId() == 5 );
}
示例3: testIdsNewBond2
// OBMol::NewBond(unsigned long id)
void testIdsNewBond2()
{
OBMol mol;
for (int i = 0; i < 10; ++i) {
OBBond *bond = mol.NewBond(i*2);
OB_REQUIRE(bond->GetId() == i*2);
}
OB_REQUIRE( mol.GetBondById(0) );
OB_REQUIRE( !mol.GetBondById(7) );
OB_REQUIRE( mol.GetBondById(8) );
OB_REQUIRE( !mol.GetBondById(9) );
OB_REQUIRE( mol.GetBondById(18) );
OB_REQUIRE( !mol.GetBondById(19) );
OB_REQUIRE( mol.GetBondById(0)->GetId() == 0 );
OB_REQUIRE( mol.GetBondById(8)->GetId() == 8 );
OB_REQUIRE( mol.GetBondById(18)->GetId() == 18 );
}
示例4: testIdsDeleteBond
void testIdsDeleteBond()
{
OBMol mol;
for (int i = 0; i < 10; ++i)
mol.NewBond();
OB_REQUIRE( mol.GetBondById(3) );
OB_REQUIRE( mol.GetBondById(4) );
OB_REQUIRE( mol.GetBondById(5) );
OBBond *bond4 = mol.GetBondById(4);
OBAtom *a = mol.NewAtom();
OBAtom *b = mol.NewAtom();
bond4->SetBegin(a);
bond4->SetEnd(b);
mol.DeleteBond(mol.GetBondById(4));
OB_REQUIRE( mol.GetBondById(3) );
OB_REQUIRE( mol.GetBondById(3)->GetId() == 3 );
OB_REQUIRE( !mol.GetBondById(4) );
OB_REQUIRE( mol.GetBondById(5) );
OB_REQUIRE( mol.GetBondById(5)->GetId() == 5 );
}