#ifndef GOOSE_VERIFY_H
#define GOOSE_VERIFY_H
#include <z3++.h>
#include "cir/cir.h"
#include "sema/sema.h"
namespace goose::verify
{
using namespace eir;
using namespace cir;
class Builder;
extern z3::context& GetZ3Context();
extern bool VerifyCompTimeExpr( const sema::Context& c, const Value& val );
}
#include "helpers.h"
#include "verifyviz.h"
#include "type.h"
#include "value.h"
#include "storage.h"
#include "remapper.h"
#include "valtracker.h"
#include "builder.h"
#include "propositions.h"
#include "func.h"
#include "ghostfunc.h"
#include "valtracker.inl"
#endif