Ejemplo n.º 1
0
 class Bfact(Predicate):
     num1=IntegerField()
     str1=StringField()
Ejemplo n.º 2
0
        class Fact(Predicate):
            num1 = IntegerField()

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