Z3
 
Loading...
Searching...
No Matches
Public Member Functions | Friends
constructors Class Reference

#include <z3++.h>

Public Member Functions

 constructors (context &ctx)
 
 ~constructors ()
 
void add (symbol const &name, symbol const &rec, unsigned n, symbol const *names, sort const *fields)
 
Z3_constructor operator[] (unsigned i) const
 
unsigned size () const
 
void query (unsigned i, func_decl &constructor, func_decl &test, func_decl_vector &accs)
 

Friends

class constructor_list
 

Detailed Description

Definition at line 3670 of file z3++.h.

Constructor & Destructor Documentation

◆ constructors()

constructors ( context ctx)
inline

Definition at line 3676 of file z3++.h.

3676: ctx(ctx) {}

Referenced by Datatype::__deepcopy__(), Datatype::__repr__(), and Datatype::declare_core().

◆ ~constructors()

~constructors ( )
inline

Definition at line 3678 of file z3++.h.

3678 {
3679 for (auto con : cons)
3680 Z3_del_constructor(ctx, con);
3681 }
void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr)
Reclaim memory allocated to constructor.

Member Function Documentation

◆ add()

void add ( symbol const name,
symbol const rec,
unsigned  n,
symbol const names,
sort const fields 
)
inline

Definition at line 3683 of file z3++.h.

3683 {
3684 array<unsigned> sort_refs(n);
3685 array<Z3_sort> sorts(n);
3686 array<Z3_symbol> _names(n);
3687 for (unsigned i = 0; i < n; ++i) sorts[i] = fields[i], _names[i] = names[i];
3688 cons.push_back(Z3_mk_constructor(ctx, name, rec, n, _names.ptr(), sorts.ptr(), sort_refs.ptr()));
3689 num_fields.push_back(n);
3690 }
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.

Referenced by Solver::__iadd__().

◆ operator[]()

Z3_constructor operator[] ( unsigned  i) const
inline

Definition at line 3692 of file z3++.h.

3692{ return cons[i]; }

◆ query()

void query ( unsigned  i,
func_decl constructor,
func_decl test,
func_decl_vector accs 
)
inline

Definition at line 3696 of file z3++.h.

3696 {
3697 Z3_func_decl _constructor;
3698 Z3_func_decl _test;
3699 array<Z3_func_decl> accessors(num_fields[i]);
3700 accs.resize(0);
3702 cons[i],
3703 num_fields[i],
3704 &_constructor,
3705 &_test,
3706 accessors.ptr());
3707 constructor = func_decl(ctx, _constructor);
3708
3709 test = func_decl(ctx, _test);
3710 for (unsigned j = 0; j < num_fields[i]; ++j)
3711 accs.push_back(func_decl(ctx, accessors[j]));
3712 }
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.
System.IntPtr Z3_func_decl

◆ size()

unsigned size ( ) const
inline

Definition at line 3694 of file z3++.h.

3694{ return (unsigned)cons.size(); }

Referenced by ParamDescrsRef::__len__(), Goal::__len__(), BitVecNumRef::as_signed_long(), and BitVecSortRef::subsort().

Friends And Related Symbol Documentation

◆ constructor_list

Definition at line 3671 of file z3++.h.