Exemple #1
0
from rulu.engine import RuleEngine

engine = RuleEngine()
# Load the data model and rules
engine.load_module('family')

# Add input facts
engine.assert_('IsFatherOf', father='Adam', son='Seth')
engine.assert_('IsFatherOf', father='Seth', son='Enos')
engine.assert_('IsFatherOf', father='Enos', son='Kenan')
engine.assert_('IsFatherOf', father='Kenan', son='Mahalalel')

# This is where the magic happens
engine.run()

# Print output facts
for fact in engine.get_facts('IsGrandfatherOf'):
    print '{} is the {}grandfather of {}.'.format(fact.grandfather,
                                                  'great-' * fact.greatness,
                                                  fact.grandson)
Exemple #2
0
from rulu.engine import RuleEngine

engine = RuleEngine()
# Load the data model and rules
engine.load_module('family')

# Add input facts
from family import IsFatherOf
engine.assert_(IsFatherOf, father='Adam', son='Seth')
engine.assert_(IsFatherOf, father='Seth', son='Enos')
engine.assert_(IsFatherOf, father='Enos', son='Kenan')
engine.assert_(IsFatherOf, father='Kenan', son='Mahalalel')

engine.run()

# Print output facts
for fact in engine.get_facts():
    if fact._name == 'IsGrandfatherOf':
        print '{} is the {}grandfather of {}.'.format(
                fact.grandfather, 'great-'*fact.greatness, fact.grandson)
Exemple #3
0
from rulu.engine import RuleEngine
from utils import print_rst_table
engine = RuleEngine()
engine.load_module('greeting')
engine.assert_('Entity', name='World')
print_rst_table(engine, 'Entity', 'greeting-in.txt')
engine.run()
print_rst_table(engine, 'Greeting', 'greeting-out.txt')
Exemple #4
0
from rulu.engine import RuleEngine

engine = RuleEngine()
# Load the data model and rules
engine.load_module("family")

# Add input facts
engine.assert_("IsFatherOf", father="Adam", son="Seth")
engine.assert_("IsFatherOf", father="Seth", son="Enos")
engine.assert_("IsFatherOf", father="Enos", son="Kenan")
engine.assert_("IsFatherOf", father="Kenan", son="Mahalalel")

# This is where the magic happens
engine.run()

# Print output facts
for fact in engine.get_facts("IsGrandfatherOf"):
    print "{} is the {}grandfather of {}.".format(fact.grandfather, "great-" * fact.greatness, fact.grandson)