From mboxrd@z Thu Jan 1 00:00:00 1970 From: bjg@sourceware.cygnus.com To: gsl-cvs@sourceware.cygnus.com Subject: gsl/rng gsl_rng.h Date: Mon, 01 Mar 1999 14:02:00 -0000 Message-id: <19990301220200.11545.qmail@egcs.cygnus.com> X-SW-Source: 1999/msg00067.html List-Id: CVSROOT: /cvs/gsl Module name: gsl Changes by: bjg@egcs.cygnus.com 99/03/01 14:02:00 Modified files: rng : gsl_rng.h Log message: moved static class information (max, min, etc) out of the instance data. Originally I avoided this because of the overhead of the extra indirection (r->type->get vs r->get) for every get function call, but that turns out to be only about 10% at worst so it's worth the slight speed cost to make the code safer.