From 1e9233141c9d9c0468676a9113f544222c6cc8a1 Mon Sep 17 00:00:00 2001 From: Nicolas Robidoux Date: Mon, 16 Mar 2009 09:33:10 +0000 Subject: [PATCH] fixed comment some more --- libsrc/resample/nohalo.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libsrc/resample/nohalo.cpp b/libsrc/resample/nohalo.cpp index 3c54b2db..73d390de 100644 --- a/libsrc/resample/nohalo.cpp +++ b/libsrc/resample/nohalo.cpp @@ -237,11 +237,10 @@ /* * FAST_MINMOD is an implementation of the minmod function which only - * needs two conditional moves. (Most implementations need at least - * three branches.) The product of the two arguments and a useful - * difference involving them are also precomputed to keep them out of - * branching way. (Nicolas: I think that this may be the first two - * branch minmod.) + * needs two conditional moves. (Nicolas: I think that this may be + * the very first two branch minmod.) The product of the two arguments + * and a useful difference involving them are also precomputed to keep + * them out of branching way. */ #define FAST_MINMOD(a,b,ab,abminusaa) \ ( (ab)>=0. ? ( (abminusaa)>=0. ? (a) : (b) ) : 0. )