/* * Copyright 2019 Cerebras Systems * * Use of this software is governed by the MIT license * * Written by Sven Verdoolaege, * Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA */ #include <isl_multi_macro.h> /* Add "v" to the constant terms of all the base expressions of "multi". */ __isl_give MULTI(BASE) *FN(MULTI(BASE),add_constant_val)( __isl_take MULTI(BASE) *multi, __isl_take isl_val *v) { … } /* Add the elements of "mv" to the constant terms of * the corresponding base expressions of "multi". */ __isl_give MULTI(BASE) *FN(MULTI(BASE),add_constant_multi_val)( __isl_take MULTI(BASE) *multi, __isl_take isl_multi_val *mv) { … }