|
@@ -63,6 +63,13 @@ int report(void)
|
|
|
fprintf(stdout, "%d%s%.15g\n", Values[i].cat, options.fs, Values[i].d1);
|
|
|
break;
|
|
|
|
|
|
+ case O_FD:
|
|
|
+ if (G_verbose() > G_verbose_min())
|
|
|
+ fprintf(stdout, "cat%sfd\n", options.fs);
|
|
|
+ for (i = 0; i < vstat.rcat; i++)
|
|
|
+ fprintf(stdout, "%d%s%.15g\n", Values[i].cat, options.fs, Values[i].d1);
|
|
|
+ break;
|
|
|
+
|
|
|
case O_PERIMETER:
|
|
|
if (G_verbose() > G_verbose_min())
|
|
|
fprintf(stdout, "cat%sperimeter\n", options.fs);
|