Ejemplo n.º 1
0
def test_typ():
    s1 = "kansas:s"
    EXPECT_TRUE(Typ.check_equivalence(Typ.create(T_ENTITY), typ(s1)))

    s2 = [
        "lambda",
        "$0",
        "e",
        [
            "and",
            ["state:t", "$0"],
            [
                "exists",
                "$1",
                ["and", ["state:t", "$1"], ["loc:t", "mississippi_river:r", "$1"], ["next_to:t", "$0", "$1"]],
            ],
        ],
    ]
    EXPECT_TRUE(Typ.check_equivalence(Typ.create((T_ENTITY, T_TRUTH)), typ(s2)))

    s3 = ["argmin", "$0", ["city:t", "$0"], ["population:i", "$0"]]
    EXPECT_TRUE(Typ.check_equivalence(Typ.create(T_ENTITY), typ(s3)))

    s4 = "equals:t"
    EXPECT_TRUE(Typ.check_equivalence(Typ.create((T_ENTITY, T_ENTITY, T_TRUTH)), typ(s4)))
Ejemplo n.º 2
0
def exp_typ_in(exp, se, bindings=None):
    global __functs__
    if bindings == None:
        bindings = {}
    if atomp(exp):
        if se == exp:
            return Typ.create(T_ENTITY)  # TODO truth literal?
        else:
            return None
    elif lambdap(exp):
        # t = Typ.create_from_string(lambda_arg_typ(exp))
        t = lambda_arg_typ(exp)
        if isinstance(t, str):
            t = Typ.create(t)
        if se == lambda_arg_name(exp):
            return t
        elif se == exp:
            bindings[lambda_arg_name(exp)] = t
            # return Typ.product([t, exp_typ_in(lambda_body(exp), lambda_body(exp),
            # bindings)])
            r = exp_typ_in(lambda_body(exp), lambda_body(exp), bindings)
            return Typ.product([t, r])
        else:
            bindings[lambda_arg_name(exp)] = t
            return exp_typ_in(lambda_body(exp), se, bindings)
    elif quantifierp(exp):
        # t = __functs__[application_function(exp)][0]
        t = Typ.create(T_ENTITY)  # TODO doesn't need to be manual
        if se == quantifier_var(exp):
            return t
        elif se == exp:
            return Typ.return_typ(__functs__[application_function(exp)])
        else:
            bindings[quantifier_var(exp)] = t
            for i in range(2, 2 + len(quantifier_args(exp))):
                r = exp_typ_in(exp[i], se, bindings)
                if not (r == None):
                    return r
            return None
    elif applicationp(exp):
        if se == exp:
            if application_function(exp) in bindings:
                return Typ.return_typ(bindings[application_function(exp)])
            else:
                return Typ.return_typ(__functs__[application_function(exp)])
        else:
            for i in range(1, 1 + len(application_args(exp))):
                r = exp_typ_in(exp[i], se, bindings)
                if not (r == None):
                    return r
            # print "couldn't get %s from %s" % (se, exp)
            # assert False
            return None
Ejemplo n.º 3
0
def type_in(var, sexp):
    if lambdap(sexp):
        if var == lambda_arg_name(sexp):
            return lambda_arg_typ(sexp)
        else:
            return type_in(var, lambda_body(sexp))
    elif applicationp(sexp):
        if quantifierp(sexp) and var == quantifier_var(sexp):
            return Typ.create(T_ENTITY)
        else:
            for arg in application_args(sexp):
                t = type_in(var, arg)
                if t:
                    return t
    return False
Ejemplo n.º 4
0
F_ARGMIN = "argmin"
F_COUNT = "count"
F_SUM = "sum"
F_LT = "<"
F_GT = ">"
F_AND = "and"
F_OR = "or"
F_NOT = "not"
F_EXISTS = "exists"

T_TRUTH = "t"
T_INT = "i"
T_ENTITY = "e"

BASE_FUNCTS = {
    F_ARGMAX: Typ.create((T_ENTITY, T_TRUTH, T_INT, T_ENTITY)),
    F_ARGMIN: Typ.create((T_ENTITY, T_TRUTH, T_INT, T_ENTITY)),
    F_COUNT: Typ.create((T_ENTITY, T_TRUTH, T_INT)),
    F_SUM: Typ.create((T_ENTITY, T_TRUTH, T_INT, T_INT)),
    F_LT: Typ.create((T_INT, T_INT, T_TRUTH)),
    F_GT: Typ.create((T_INT, T_INT, T_TRUTH)),
    F_AND: Typ.create_ambiguous([(T_TRUTH, T_TRUTH, T_TRUTH), (T_TRUTH, T_TRUTH, T_TRUTH, T_TRUTH)]),
    F_OR: Typ.create_ambiguous([(T_TRUTH, T_TRUTH, T_TRUTH), (T_TRUTH, T_TRUTH, T_TRUTH, T_TRUTH)]),
    F_NOT: Typ.create((T_TRUTH, T_TRUTH, T_TRUTH)),
    # TODO this actually a macro, not a function
    F_EXISTS: Typ.create((T_ENTITY, T_TRUTH, T_TRUTH)),
}

BASE_TYPES = [T_TRUTH, T_INT, T_ENTITY]

QUANTIFIERS = [F_ARGMIN, F_ARGMAX, F_COUNT, F_SUM, F_EXISTS]