Пример #1
0
 class Bfact(Predicate):
     num1=IntegerField()
     str1=StringField()
Пример #2
0
        class Fact(Predicate):
            num1 = IntegerField()

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