mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
38 lines
448 B
C++
38 lines
448 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/ast.h"
|
|
|
|
|
|
namespace smt {
|
|
|
|
bool is_value_sort(ast_manager& m, sort* s);
|
|
|
|
bool is_value_sort(ast_manager& m, expr* e);
|
|
|
|
};
|
|
|
|
|
|
#endif
|