3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +00:00

additional array handling routines

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2012-11-26 14:18:20 -08:00
parent 008fc648c1
commit 521d975c84
5 changed files with 121 additions and 44 deletions

37
src/smt/smt_value_sort.h Normal file
View file

@ -0,0 +1,37 @@
/*++
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