File indexing completed on 2025-11-22 06:08:59 UTC
view on githubraw file Latest commit feb7fa5d on 2025-11-21 15:45:20 UTC
feb7fa5d1e dngo*0001 #ifndef ADFIXEDPOINT_LOADED
0002 #define ADFIXEDPOINT_LOADED 1
0003
0004 /** Returns true when adjoint fixed point must iterate once more
0005 * because reduction factor of variation "cumul" is still too large */
0006 extern int adFixedPoint_notReduced(double cumul, float reduction) ;
0007
0008 /** Returns true when adjoint fixed point must iterate once more
0009 * because the variation "cumul" is considered still too large */
0010 extern int adFixedPoint_tooLarge(double cumul, float minCumul) ;
0011
0012 #endif