• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C# Z3_fixedpoint类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Z3_fixedpoint的典型用法代码示例。如果您正苦于以下问题:C# Z3_fixedpoint类的具体用法?C# Z3_fixedpoint怎么用?C# Z3_fixedpoint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Z3_fixedpoint类属于命名空间,在下文中一共展示了Z3_fixedpoint类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例2: Z3_fixedpoint_dec_ref

 public extern static void Z3_fixedpoint_dec_ref(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例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);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例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)));
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:6,代码来源:Native.cs


示例7: Z3_fixedpoint_set_params

 public extern static void Z3_fixedpoint_set_params(Z3_context a0, Z3_fixedpoint a1, Z3_params a2);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例8: Z3_fixedpoint_get_help

 public extern static IntPtr Z3_fixedpoint_get_help(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例9: Z3_fixedpoint_get_rules

 public extern static Z3_ast_vector Z3_fixedpoint_get_rules(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例10: Z3_fixedpoint_get_assertions

 public extern static Z3_ast_vector Z3_fixedpoint_get_assertions(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例11: Z3_fixedpoint_register_relation

 public extern static void Z3_fixedpoint_register_relation(Z3_context a0, Z3_fixedpoint a1, Z3_func_decl a2);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例12: Z3_fixedpoint_get_statistics

 public extern static Z3_stats Z3_fixedpoint_get_statistics(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例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);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例16: Z3_fixedpoint_pop

 public extern static void Z3_fixedpoint_pop(Z3_context a0, Z3_fixedpoint a1);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例17: Z3_fixedpoint_query

 public static int Z3_fixedpoint_query(Z3_context a0, Z3_fixedpoint a1, Z3_ast a2) {
     int r = LIB.Z3_fixedpoint_query(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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例18: Z3_fixedpoint_query_relations

 public static int Z3_fixedpoint_query_relations(Z3_context a0, Z3_fixedpoint a1, uint a2, [In] Z3_func_decl[] a3) {
     int r = LIB.Z3_fixedpoint_query_relations(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;
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:7,代码来源:Native.cs


示例19: Z3_fixedpoint_add_rule

 public extern static void Z3_fixedpoint_add_rule(Z3_context a0, Z3_fixedpoint a1, Z3_ast a2, IntPtr a3);
开发者ID:killbug2004,项目名称:Snippets,代码行数:1,代码来源:Native.cs


示例20: Z3_fixedpoint_update_rule

 public static void Z3_fixedpoint_update_rule(Z3_context a0, Z3_fixedpoint a1, Z3_ast a2, IntPtr a3) {
     LIB.Z3_fixedpoint_update_rule(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)));
 }
开发者ID:killbug2004,项目名称:Snippets,代码行数:6,代码来源:Native.cs



注:本文中的Z3_fixedpoint类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Z3_func_decl类代码示例发布时间:2022-05-24
下一篇:
C# Z3_context类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap