本文整理汇总了C#中Z3_func_decl类的典型用法代码示例。如果您正苦于以下问题:C# Z3_func_decl类的具体用法?C# Z3_func_decl怎么用?C# Z3_func_decl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Z3_func_decl类属于命名空间,在下文中一共展示了Z3_func_decl类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Z3_get_range
public static Z3_sort Z3_get_range(Z3_context a0, Z3_func_decl a1) {
Z3_sort r = LIB.Z3_get_range(a0, a1);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
return r;
}
示例2: Z3_model_has_interp
public extern static int Z3_model_has_interp(Z3_context a0, Z3_model a1, Z3_func_decl a2);
示例3: Z3_func_decl_to_string
public extern static IntPtr Z3_func_decl_to_string(Z3_context a0, Z3_func_decl a1);
示例4: Z3_get_decl_parameter_kind
public extern static uint Z3_get_decl_parameter_kind(Z3_context a0, Z3_func_decl a1, uint a2);
示例5: Z3_get_decl_func_decl_parameter
public extern static Z3_func_decl Z3_get_decl_func_decl_parameter(Z3_context a0, Z3_func_decl a1, uint a2);
示例6: Z3_get_arity
public extern static uint Z3_get_arity(Z3_context a0, Z3_func_decl a1);
示例7: Z3_fixedpoint_get_cover_delta
public static Z3_ast Z3_fixedpoint_get_cover_delta(Z3_context a0, Z3_fixedpoint a1, int a2, Z3_func_decl a3) {
Z3_ast r = LIB.Z3_fixedpoint_get_cover_delta(a0, a1, a2, a3);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
return r;
}
示例8: Z3_fixedpoint_add_cover
public static void Z3_fixedpoint_add_cover(Z3_context a0, Z3_fixedpoint a1, int a2, Z3_func_decl a3, Z3_ast a4) {
LIB.Z3_fixedpoint_add_cover(a0, a1, a2, a3, a4);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
}
示例9: Z3_mk_map
public extern static Z3_ast Z3_mk_map(Z3_context a0, Z3_func_decl a1, uint a2, [In] Z3_ast[] a3);
示例10: Z3_fixedpoint_get_num_levels
public static uint Z3_fixedpoint_get_num_levels(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2) {
uint r = LIB.Z3_fixedpoint_get_num_levels(a0, a1, a2);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
return r;
}
示例11: Z3_model_get_func_interp
public static Z3_func_interp Z3_model_get_func_interp(Z3_context a0, Z3_model a1, Z3_func_decl a2) {
Z3_func_interp r = LIB.Z3_model_get_func_interp(a0, a1, a2);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
return r;
}
示例12: Z3_get_decl_ast_parameter
public static Z3_ast Z3_get_decl_ast_parameter(Z3_context a0, Z3_func_decl a1, uint a2) {
Z3_ast r = LIB.Z3_get_decl_ast_parameter(a0, a1, a2);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
return r;
}
示例13: Z3_get_decl_kind
public extern static uint Z3_get_decl_kind(Z3_context a0, Z3_func_decl a1);
示例14: Z3_fixedpoint_register_relation
public static void Z3_fixedpoint_register_relation(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2) {
LIB.Z3_fixedpoint_register_relation(a0, a1, a2);
Z3_error_code err = (Z3_error_code)LIB.Z3_get_error_code(a0);
if (err != Z3_error_code.Z3_OK)
throw new Z3Exception(Marshal.PtrToStringAnsi(LIB.Z3_get_error_msg_ex(a0, (uint)err)));
}
示例15: Z3_get_domain_size
public extern static uint Z3_get_domain_size(Z3_context a0, Z3_func_decl a1);