settings: Avoid using a pointer and global data for algorithms.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2010 21:55:41 +0000 (14:55 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2010 21:57:56 +0000 (14:57 -0700)
Until now the difference between the current and global settings for
the algorithms in uses has been maintained as two values plus a pointer
to the setting actually in use.  Using global data like that makes it
harder to save and restore settings, so this commit adopt an alternate
method that avoids using global data or pointers.


No differences found