3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-11 19:53:34 +00:00
z3/src/smt/smt_value_sort.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

38 lines
444 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
smt_value_sort.h
Abstract:
Determine if elements of a given sort can be values.
Author:
Nikolaj Bjorner (nbjorner) 2012-11-25
Revision History:
--*/
#ifndef SMT_VALUE_SORT_H_
#define SMT_VALUE_SORT_H_
#include "ast.h"
namespace smt {
bool is_value_sort(ast_manager& m, sort* s);
bool is_value_sort(ast_manager& m, expr* e);
};
#endif