Definition at line 3720 of file z3++.h.
Definition at line 3728 of file z3++.h.
3729 for (
auto con : cons)
void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr)
Reclaim memory allocated to constructor.
Definition at line 3733 of file z3++.h.
3734 array<unsigned> sort_refs(n);
3735 array<Z3_sort> sorts(n);
3736 array<Z3_symbol> _names(n);
3737 for (
unsigned i = 0; i < n; ++i) sorts[i] = fields[i], _names[i] = names[i];
3738 cons.push_back(
Z3_mk_constructor(ctx, name, rec, n, _names.ptr(), sorts.ptr(), sort_refs.ptr()));
3739 num_fields.push_back(n);
Z3_constructor Z3_API Z3_mk_constructor(Z3_context c, Z3_symbol name, Z3_symbol recognizer, unsigned num_fields, Z3_symbol const field_names[], Z3_sort const sorts[], unsigned sort_refs[])
Create a constructor.
| Z3_constructor operator[] |
( |
unsigned |
i | ) |
const |
|
inline |
Definition at line 3746 of file z3++.h.
3747 Z3_func_decl _constructor;
3749 array<Z3_func_decl> accessors(num_fields[i]);
3757 constructor = func_decl(ctx, _constructor);
3759 test = func_decl(ctx, _test);
3760 for (
unsigned j = 0; j < num_fields[i]; ++j)
3761 accs.push_back(func_decl(ctx, accessors[j]));
void Z3_API Z3_query_constructor(Z3_context c, Z3_constructor constr, unsigned num_fields, Z3_func_decl *constructor, Z3_func_decl *tester, Z3_func_decl accessors[])
Query constructor for declared functions.