- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试在 Z3 中创建一个枚举数据类型,其中项目的数量仅在运行时才知道。我让它与 Python API 一起工作,但我正在尝试同时使用 C 和 C++ API 来做同样的事情。以下是程序。
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<stdarg.h>
#include<memory.h>
#include<z3++.h>
using namespace std;
using namespace z3;
expr get_expr(context &c,Z3_func_decl constant)//get expression from constant
{
func_decl temp=to_func_decl(c, constant);
return(to_expr(c, Z3_mk_app(c, temp, 0, 0)));
}
sort create_enum(context &c,char const *dtypename,int count,char const *prefix,Z3_func_decl consts[])
{
int i;
char itemname[10];
Z3_symbol *names=new Z3_symbol[count];
Z3_func_decl *testers=new Z3_func_decl[count];
for(i=0;i<count;i++)
{
sprintf(itemname,"%s%d",prefix,i);
names[i]=Z3_mk_string_symbol(c,itemname);
}
Z3_symbol enum_nm = Z3_mk_string_symbol(c,dtypename);
sort s = to_sort(c, Z3_mk_enumeration_sort(c, enum_nm, 3, names, consts, testers));
return(s);
}
int main()
{
context c;
int count=3,i;
char itemname[10],prefix[]={"p"},dtypename[]={"phynodetype"};
Z3_func_decl *phynodeconsts=new Z3_func_decl[count];
sort phynodetype=create_enum(c,"phynodetype",count,"p",phynodeconsts);
func_decl g = function("g", phynodetype, phynodetype);
solver s(c);
expr tst1= get_expr(c,phynodeconsts[0])==g(get_expr(c,phynodeconsts[1]));
expr tst2= get_expr(c,phynodeconsts[1])==g(get_expr(c,phynodeconsts[0]));
cout<<tst1<<endl<<tst2<<endl;
s.add(tst1);
s.add(tst2);
s.add(implies(a,b>=5));
s.add(b<5);
cout<<s.check();
cout<<s.get_model();
}
我正在做的是,创建函数“create_enum”,它将采用我希望创建的新数据类型、项目数和前缀(例如,如果项目数是 3,前缀是“p”,项目将被命名为 p0、p1、p2)。该程序不断提高 SIGSEGV,并且在极少数情况下它没有提高,我得到了一些非常奇怪的结果。我使用了以下帖子中的大量代码:
How to use enumerated constants after calling of some tactic in Z3?
谁能告诉我哪里出了问题?一些相关查询:有没有办法使用 C++ API 创建枚举数据类型?似乎 expr、func_decl 等没有默认构造函数,我需要创建一个 expr 数组。使用 malloc() 是出路吗?
最佳答案
问题似乎是调用者没有对Z3_mk_enumeration_sort 返回的声明。我稍微修改了你的代码使用 z3++.h 中的一些实用程序。特别是,我将“常量”存储到 func_decl 对象的 C++ vector 中。这些都是正确的引用计数,所以它们仍然存在稍后使用时。
我意识到我们可以而且真的应该将它们添加为实用程序到 C++ API,让每个人的生活更简单。感谢您报告此问题。
#include<stdarg.h>
#include<memory.h>
#include"z3++.h"
using namespace std;
using namespace z3;
expr get_expr(context &c,Z3_func_decl constant)//get expression from constant
{
func_decl temp=to_func_decl(c, constant);
return(to_expr(c, Z3_mk_app(c, temp, 0, 0)));
}
sort create_enum(context &c,char const *dtypename,int count,char const *prefix, func_decl_vector& consts)
{
int i;
char itemname[10];
array<Z3_symbol> names(count);
array<Z3_func_decl> _testers(count);
array<Z3_func_decl> _consts(count);
for(i=0;i<count;i++)
{
sprintf(itemname,"%s%d",prefix,i);
names[i] = Z3_mk_string_symbol(c,itemname);
}
Z3_symbol enum_nm = Z3_mk_string_symbol(c,dtypename);
Z3_sort _s = Z3_mk_enumeration_sort(c, enum_nm, count, names.ptr(), _consts.ptr(), _testers.ptr());
for (i = 0; i < count; ++i) {
consts.push_back(to_func_decl(c, _consts[i]));
}
sort s = to_sort(c, _s);
return(s);
}
int main()
{
context c;
int count=3,i;
char itemname[10],prefix[]={"p"},dtypename[]={"phynodetype"};
func_decl_vector phynodeconsts(c);
sort phynodetype=create_enum(c,"phynodetype",count,"p",phynodeconsts);
func_decl g = function("g", phynodetype, phynodetype);
solver s(c);
expr tst1= get_expr(c,phynodeconsts[0])==g(get_expr(c,phynodeconsts[1]));
expr tst2= get_expr(c,phynodeconsts[1])==g(get_expr(c,phynodeconsts[0]));
cout<<tst1<<endl<<tst2<<endl;
s.add(tst1);
s.add(tst2);
//s.add(implies(a,b>=5));
//s.add(b<5);
cout<<s.check() << endl;
cout<<s.get_model() << endl;
}
关于c++ - Z3:创建具有动态已知项数的枚举类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20940314/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!