代码拉取完成,页面将自动刷新
/*
* Copyright 2018 Sven Verdoolaege
*
* 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)
/* Return the minimum of the integer piecewise affine
* expression "f" over its definition domain.
*
* Return negative infinity if the optimal value is unbounded and
* NaN if the domain of the expression is empty.
*/
__isl_give isl_val *FN(TYPE,min_val)(__isl_take TYPE *f)
{
return FN(TYPE,opt_val)(f, 0);
}
/* Return the maximum of the integer piecewise affine
* expression "f" over its definition domain.
*
* Return infinity if the optimal value is unbounded and
* NaN if the domain of the expression is empty.
*/
__isl_give isl_val *FN(TYPE,max_val)(__isl_take TYPE *f)
{
return FN(TYPE,opt_val)(f, 1);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。