数学trick

1、正交化区间 :[ a,b] -> a + [0,1] * (b - a)
2、用运算替换分支: if a>0 then c = 2a else c = 0.5a -> c = max(2a,0) + min(0.5a,0)

你可能感兴趣的:(数学trick)