Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /** \file choices.h switches that control debugging in source code.
  2.  *  Uncomment the defines below to allow a specific type of compilation
  3.  */
  4.  
  5. #ifndef __choices_h__
  6. #define __choices_h__
  7.  
  8. /** Turn on YACAS_DEBUG if you want to see run-time statistics
  9.  * after typing Exit()
  10.  */
  11. //#define YACAS_DEBUG
  12.  
  13. /** Turn on USE_ASSERT to find programming errors through the asserts
  14.  *  placed in various places of the application.
  15.  */
  16. //#define USE_ASSERT
  17.  
  18. /** Turn on NO_EXCEPTIONS if you want to disable run-time checking
  19.  *  while executing commands.
  20.  */
  21. //#define NO_EXCEPTIONS
  22.  
  23. /** Enable long reference counts. This makes EVERY object 2 bytes
  24.  larger, so use only if needed.
  25.  */
  26. //#define USE_LONG_REF_COUNTS
  27.  
  28. #endif
  29.