numtools

perform numerical operations on vectors and matrices in unix pipes
git clone git://src.adamsgaard.dk/numtools # fast
git clone https://src.adamsgaard.dk/numtools.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 19cc9e1694767e6534501210180a9e8882fb85ca
parent 3754eed5a3af82a84848f545bd45adc8193b17c3
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  9 May 2022 15:08:40 +0200

randcounts.c: remove unused variable

Diffstat:
Mrandcounts.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/randcounts.c b/randcounts.c @@ -21,7 +21,7 @@ usage(void) int main(int argc, char *argv[]) { - int i, ret, s = 0, N; + int i, s = 0, N; long j, seed, *counts = NULL, n = 1, r, repeats = 1; double val = 0.0, weightsum = 0.0, *weights = NULL; struct timeval t1;