本文整理汇总了C#中Z3_fixedpoint类的典型用法代码示例。如果您正苦于以下问题:C# Z3_fixedpoint类的具体用法?C# Z3_fixedpoint怎么用?C# Z3_fixedpoint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Z3_fixedpoint类属于命名空间,在下文中一共展示了Z3_fixedpoint类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Z3_fixedpoint_add_cover
public extern static void Z3_fixedpoint_add_cover(Z3_context a0, Z3_fixedpoint a1, int a2, Z3_func_decl a3, Z3_ast a4);
示例2: Z3_fixedpoint_dec_ref
public extern static void Z3_fixedpoint_dec_ref(Z3_context a0, Z3_fixedpoint a1);
示例3: Z3_fixedpoint_add_fact
public extern static void Z3_fixedpoint_add_fact(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2, uint a3, [In] uint[] a4);
示例4: Z3_fixedpoint_get_param_descrs
public static Z3_param_descrs Z3_fixedpoint_get_param_descrs(Z3_context a0, Z3_fixedpoint a1) {
Z3_param_descrs r = LIB.Z3_fixedpoint_get_param_descrs(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;
}
示例5: Z3_fixedpoint_from_file
public static Z3_ast_vector Z3_fixedpoint_from_file(Z3_context a0, Z3_fixedpoint a1, string a2) {
Z3_ast_vector r = LIB.Z3_fixedpoint_from_file(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;
}
示例6: Z3_fixedpoint_set_predicate_representation
public static void Z3_fixedpoint_set_predicate_representation(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2, uint a3, [In] IntPtr[] a4) {
LIB.Z3_fixedpoint_set_predicate_representation(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)));
}
示例7: Z3_fixedpoint_set_params
public extern static void Z3_fixedpoint_set_params(Z3_context a0, Z3_fixedpoint a1, Z3_params a2);
示例8: Z3_fixedpoint_get_help
public extern static IntPtr Z3_fixedpoint_get_help(Z3_context a0, Z3_fixedpoint a1);
示例9: Z3_fixedpoint_get_rules
public extern static Z3_ast_vector Z3_fixedpoint_get_rules(Z3_context a0, Z3_fixedpoint a1);
示例10: Z3_fixedpoint_get_assertions
public extern static Z3_ast_vector Z3_fixedpoint_get_assertions(Z3_context a0, Z3_fixedpoint a1);
示例11: Z3_fixedpoint_register_relation
public extern static void Z3_fixedpoint_register_relation(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2);
示例12: Z3_fixedpoint_get_statistics
public extern static Z3_stats Z3_fixedpoint_get_statistics(Z3_context a0, Z3_fixedpoint a1);
示例13: 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;
}
示例14: 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;
}
示例15: Z3_fixedpoint_to_string
public extern static IntPtr Z3_fixedpoint_to_string(Z3_context a0, Z3_fixedpoint a1, uint a2, [In] Z3_ast[] a3);