The ROSETTA C++ library is a collection of C++ classes and routines that enable discernibility-based empirical modelling and data mining. Comprises useful routines for machine learning in general and for rough set theory in particular.
The ROSETTA source code is best viewed by setting the tab width to 2. Any other tab width than 2 will make the code much more difficult to read, since the indentation will be screwed up. So how do you set the tab width? Here's how, for two popular editors: Microsoft Visual C++ IDE ------------------------ Under the Tools->Options menu, select the Tabs tab and the C/C++ file type. Set both the tab and indent size to the value 2. Emacs ----- To set the tab width for the current buffer, try this: M-x set-variable When prompted for a variable and a value, enter "tab-width" and "2" (without the quotes). To set the tab width to 2 for all buffers, create an empty buffer and enter the following Emacs Lisp fragment (including parentheses): (setq-default tab-width 2) Then evaluate this buffer by: M-x eval-buffer
Copyright © 2009 Geeknet, Inc. All rights reserved. Terms of Use
Thanks for your rating!
Would you also like to write a review?