Z3
Data Structures | Public Member Functions | Properties
ParamDescrs Class Reference

A ParamDescrs describes a set of parameters. More...

+ Inheritance diagram for ParamDescrs:

Data Structures

class  DecRefQueue
 

Public Member Functions

void Validate (Params p)
 validate a set of parameters. More...
 
Z3_param_kind GetKind (Symbol name)
 Retrieve kind of parameter. More...
 
string GetDocumentation (Symbol name)
 Retrieve documentation of parameter. More...
 
override string ToString ()
 Retrieves a string representation of the ParamDescrs. More...
 
- Public Member Functions inherited from Z3Object
void Dispose ()
 Disposes of the underlying native Z3 object. More...
 

Properties

Symbol [] Names [get]
 Retrieve all names of parameters. More...
 
uint Size [get]
 The size of the ParamDescrs. More...
 

Detailed Description

A ParamDescrs describes a set of parameters.

Definition at line 29 of file ParamDescrs.cs.

Member Function Documentation

§ GetDocumentation()

string GetDocumentation ( Symbol  name)
inline

Retrieve documentation of parameter.

Definition at line 52 of file ParamDescrs.cs.

53  {
54  Contract.Requires(name != null);
55  return Native.Z3_param_descrs_get_documentation(Context.nCtx, NativeObject, name.NativeObject);
56  }

§ GetKind()

Z3_param_kind GetKind ( Symbol  name)
inline

Retrieve kind of parameter.

Definition at line 43 of file ParamDescrs.cs.

44  {
45  Contract.Requires(name != null);
46  return (Z3_param_kind)Native.Z3_param_descrs_get_kind(Context.nCtx, NativeObject, name.NativeObject);
47  }
Z3_param_kind
The different kinds of parameters that can be associated with parameter sets. (see Z3_mk_params)...
Definition: z3_api.h:1243

§ ToString()

override string ToString ( )
inline

Retrieves a string representation of the ParamDescrs.

Definition at line 85 of file ParamDescrs.cs.

86  {
87  return Native.Z3_param_descrs_to_string(Context.nCtx, NativeObject);
88  }

§ Validate()

void Validate ( Params  p)
inline

validate a set of parameters.

Definition at line 34 of file ParamDescrs.cs.

35  {
36  Contract.Requires(p != null);
37  Native.Z3_params_validate(Context.nCtx, p.NativeObject, NativeObject);
38  }

Property Documentation

§ Names

Symbol [] Names
get

Retrieve all names of parameters.

Definition at line 62 of file ParamDescrs.cs.

§ Size

uint Size
get

The size of the ParamDescrs.

Definition at line 78 of file ParamDescrs.cs.