Package com.clarkparsia.pellet.rules

Examples of com.clarkparsia.pellet.rules.TrivialSatisfactionHelpers$BinaryBindingTester


    VariableBinding binding = new VariableBinding(kb.getABox());
    binding.set(x, mary);
    binding.set(y, robert);

    RuleAtom atom = new IndividualPropertyAtom(p, x, y);
    TrivialSatisfactionHelpers tester = new TrivialSatisfactionHelpers(kb.getABox());
    assertTrue(tester.isAtomTrue(atom, binding) != null);
  }
View Full Code Here

TOP

Related Classes of com.clarkparsia.pellet.rules.TrivialSatisfactionHelpers$BinaryBindingTester

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.