Re: g++272 libs, revisited.

1998-11-16 Thread E.L. Meijer \(Eric\)
As part of a homework assignment I've written a little program to do arithmetic with fractions and mixed numbers, and I wanted to benchmark the speed of various algorithms for finding 'gcd,' the greatest common divisor. Not knowing how to do the timing piece, I started playing with

Re: g++272 libs, revisited. (This is really a C question)

1998-11-14 Thread Chip Grandits
Bob Bernstein wrote: As part of a homework assignment I've written a little program to do arithmetic with fractions and mixed numbers, and I wanted to benchmark the speed of various algorithms for finding 'gcd,' the greatest common divisor. Not knowing how to do the timing piece, I started

g++272 libs, revisited.

1998-11-13 Thread Bob Bernstein
As part of a homework assignment I've written a little program to do arithmetic with fractions and mixed numbers, and I wanted to benchmark the speed of various algorithms for finding 'gcd,' the greatest common divisor. Not knowing how to do the timing piece, I started playing with gettimeofday.