mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
avoid const in ml
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6330bf7d25
commit
a65efb682b
|
@ -90,7 +90,7 @@ Type2JavaW = { VOID : 'void', VOID_PTR : 'jlong', INT : 'jint', UINT : 'jint', I
|
||||||
# Mapping to ML types
|
# Mapping to ML types
|
||||||
Type2ML = { VOID : 'unit', VOID_PTR : 'VOIDP', INT : 'int', UINT : 'int', INT64 : 'int', UINT64 : 'int', DOUBLE : 'float',
|
Type2ML = { VOID : 'unit', VOID_PTR : 'VOIDP', INT : 'int', UINT : 'int', INT64 : 'int', UINT64 : 'int', DOUBLE : 'float',
|
||||||
FLOAT : 'float', STRING : 'string', STRING_PTR : 'char**',
|
FLOAT : 'float', STRING : 'string', STRING_PTR : 'char**',
|
||||||
BOOL : 'bool', SYMBOL : 'z3_symbol', PRINT_MODE : 'int', ERROR_CODE : 'int', CHAR : 'char', CHAR_PTR : 'char const*' }
|
BOOL : 'bool', SYMBOL : 'z3_symbol', PRINT_MODE : 'int', ERROR_CODE : 'int', CHAR : 'char', CHAR_PTR : 'char*' }
|
||||||
|
|
||||||
next_type_id = FIRST_OBJ_ID
|
next_type_id = FIRST_OBJ_ID
|
||||||
|
|
||||||
|
|
|
@ -375,7 +375,10 @@ namespace recfun {
|
||||||
SASSERT(n_vars == d->get_arity());
|
SASSERT(n_vars == d->get_arity());
|
||||||
|
|
||||||
is_imm_pred is_i(*u);
|
is_imm_pred is_i(*u);
|
||||||
d->compute_cases(*u, r, is_i, n_vars, vars, rhs);
|
#if 0
|
||||||
|
expr_ref reduced_rhs = preprocess_ites(*u, r, n_vars, vars, rhs);
|
||||||
|
d->compute_cases(*u, r, is_i, n_vars, vars, reduced_rhs);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace decl {
|
namespace decl {
|
||||||
|
|
Loading…
Reference in a new issue