All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.solver.check_logic.h Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2011 Microsoft Corporation

Module Name:

    check_logic.h

Abstract:

    Check whether a given assertion is in the correct logic or not

Author:

    Leonardo de Moura (leonardo) 2011-08-11.

Revision History:

--*/
#pragma once

#include "ast/ast.h"

class check_logic {
    struct imp;
    imp * m_imp;
public:
    check_logic();
    ~check_logic();
    void reset();
    void set_logic(ast_manager & m, symbol const & logic);
    bool operator()(expr * n);
    bool operator()(func_decl * f);
    char const * get_last_error() const;
};





© 2015 - 2024 Weber Informatics LLC | Privacy Policy