加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
isl_project_out_all_params_templ.c 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege
*/
#define xFN(TYPE,NAME) TYPE ## _ ## NAME
#define FN(TYPE,NAME) xFN(TYPE,NAME)
/* Project out all parameters from "obj" by existentially quantifying
* over them.
*/
__isl_give TYPE *FN(TYPE,project_out_all_params)(__isl_take TYPE *obj)
{
isl_size n;
n = FN(TYPE,dim)(obj, isl_dim_param);
if (n < 0)
return FN(TYPE,free)(obj);
return FN(TYPE,project_out)(obj, isl_dim_param, 0, n);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化