Home
last modified time | relevance | path

Searched refs:IS_IN_RING (Results 1 – 6 of 6) sorted by relevance

/dports/science/cdk/cdk-cdk-2.3/base/isomorphism/src/main/java/org/openscience/cdk/isomorphism/matchers/
H A DExpr.java244 case IS_IN_RING: in matches()
395 case IS_IN_RING: in matches()
536 case IS_IN_RING: in negate()
540 type = Type.IS_IN_RING; in negate()
804 IS_IN_RING, enumConstant
954 case IS_IN_RING: in hasValue()
H A DQueryAtomContainer.java1779 if (optset.contains(IS_IN_RING) ||
1781 expr.and(new Expr(atom.isInRing() ? IS_IN_RING : IS_IN_CHAIN));
1837 if (optset.contains(IS_IN_RING) && bond.isInRing())
1838 expr.and(new Expr(IS_IN_RING));
/dports/science/cdk/cdk-cdk-2.3/tool/smarts/src/test/java/org/openscience/cdk/smarts/
H A DSmartsExprWriteTest.java52 import static org.openscience.cdk.isomorphism.matchers.Expr.Type.IS_IN_RING;
124 assertThat(Smarts.generateAtom(expr(IS_IN_RING)), is("[R]")); in ringMembership()
229 expr(IS_IN_RING)), in usrRecrOr()
242 Expr expr = new Expr(IS_IN_RING) in singleOrDoubleInRing()
249 Expr expr = new Expr(IS_IN_RING) in singleOrDoubleInRing2()
H A DSmartsExprReadTest.java283 Expr expected = expr(IS_IN_RING); in ringMembership()
290 Expr expected = expr(IS_IN_RING); in ringMembership2()
367 Expr expected = expr(IS_IN_RING); in ringCountDefault()
402 Expr expected = expr(IS_IN_RING); in ringSmallestDefault()
453 Expr expected = expr(IS_IN_RING); in ringSizeDefault()
583 Expr expected = expr(IS_IN_RING); in ringBondCountDefault()
793 Expr expected = and(expr(IS_IN_RING), in operatorPrecedence()
/dports/science/cdk/cdk-cdk-2.3/tool/smarts/src/main/java/org/openscience/cdk/smarts/
H A DSmarts.java801 expr = new Expr(Expr.Type.IS_IN_RING);
977 expr = new Expr(IS_IN_RING);
1061 expr = new Expr(Expr.Type.IS_IN_RING);
1129 expr = new Expr(Expr.Type.IS_IN_RING);
1400 expr = new Expr(Expr.Type.IS_IN_RING);
2107 case IS_IN_RING:
2655 case IS_IN_RING:
/dports/science/cdk/cdk-cdk-2.3/base/isomorphism/src/test/java/org/openscience/cdk/isomorphism/
H A DExprTest.java70 import static org.openscience.cdk.isomorphism.matchers.Expr.Type.IS_IN_RING;
293 Expr expr = new Expr(IS_IN_RING); in testIsInRing()
1295 Expr expr = new Expr(IS_IN_RING); in testBondIsRingT()
1303 Expr expr = new Expr(IS_IN_RING); in testBondIsRingF()
1410 assertThat(new Expr(IS_IN_RING).negate(), is(new Expr(IS_IN_CHAIN))); in testNegationOptimizations()
1411 assertThat(new Expr(IS_IN_CHAIN).negate(), is(new Expr(IS_IN_RING))); in testNegationOptimizations()