git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] diff --stat: use asymptotic scaling in graph
@ 2006-10-12 19:37 apodtele
  2006-10-12 20:16 ` Martin Waitz
  2006-10-12 21:53 ` Junio C Hamano
  0 siblings, 2 replies; 16+ messages in thread
From: apodtele @ 2006-10-12 19:37 UTC (permalink / raw)
  To: git

Instead of conditionally scaling the stat graph for large changes,
always scale it asymptotically: small changes shall appear without any
distortions.

Signed-off-by: Alexei Podtelezhnikov

--- diff.c	2006-10-12 14:45:13.000000000 -0400
+++ diff.c	2006-10-12 15:07:30.000000000 -0400
@@ -637,15 +637,9 @@

 const char mime_boundary_leader[] = "------------";

-static int scale_linear(int it, int width, int max_change)
+static int scale_nonlinear(int it, int width)
 {
-	/*
-	 * make sure that at least one '-' is printed if there were deletions,
-	 * and likewise for '+'.
-	 */
-	if (max_change < 2)
-		return it;
-	return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
+	return it * width / (it + width) + 1;
 }

 static void show_name(const char *prefix, const char *name, int len,
@@ -776,11 +770,9 @@
 		adds += add;
 		dels += del;

-		if (width <= max_change) {
-			add = scale_linear(add, width, max_change);
-			del = scale_linear(del, width, max_change);
-			total = add + del;
-		}
+		add = scale_nonlinear(add, width / 2);
+		del = scale_nonlinear(del, width / 2);
+		total = add + del;
 		show_name(prefix, name, len, reset, set);
 		printf("%5d ", added + deleted);
 		show_graph('+', add, add_c, reset);

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2006-10-14 19:06 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-12 19:37 [PATCH 1/2] diff --stat: use asymptotic scaling in graph apodtele
2006-10-12 20:16 ` Martin Waitz
2006-10-12 21:37   ` apodtele
2006-10-12 22:20     ` A Large Angry SCM
2006-10-12 22:27       ` Martin Waitz
2006-10-12 22:48         ` A Large Angry SCM
2006-10-12 22:52           ` Johannes Schindelin
2006-10-12 23:12             ` apodtele
2006-10-13  0:39           ` Nicolas Pitre
2006-10-13 13:25             ` apodtele
2006-10-13 13:31               ` Andy Whitcroft
2006-10-12 21:53 ` Junio C Hamano
2006-10-12 22:15   ` A Large Angry SCM
2006-10-12 22:24   ` Junio C Hamano
2006-10-13 13:56   ` apodtele
2006-10-14 19:06     ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).