Example #1
0
 class Bfact(Predicate):
     num1=IntegerField()
     str1=StringField()
Example #2
0
        class Fact(Predicate):
            num1 = IntegerField()

            class Meta:
                name = "f"
Example #3
0
 class F(Predicate):
     num1 = IntegerField()
Example #4
0
class PT(Predicate):
    a = IntegerField
    b = IntegerField(index=True)
Example #5
0
 class Afact(Predicate):
     num1 = IntegerField()
Example #6
0
class Apredicate(Predicate):
    anum = IntegerField(index=True)
    acmplx = Acomplex.Field
    atuple = (IntegerField, ConstantField(index=True))
Example #7
0
 class Cfact(ComplexTerm):
     aint = IntegerField()
     astr = StringField()
Example #8
0
 class Afact(Predicate):
     aint = IntegerField()
     afun = Fun.Field()
Example #9
0
 class Tup(ComplexTerm):
     aint = IntegerField()
     astr = StringField()
     class Meta: is_tuple = True
Example #10
0
 class Fun(ComplexTerm):
     aint = IntegerField()
     astr = StringField()