debug.def

来自「不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.」· DEF 代码 · 共 25 行

DEF
25
字号
/*
  file DEBUG.DEF
 
  This file defines the variable DEBUG, which causes the safer (and slower)
  version of the code to be compiled and executed.
  Warning : - if you use function 'main' as defined in file 'main.c', you MUST
            use the DEBUG compiling option ; otherwise you end up with very
            serious execution errors (in methods 'assemble' of classes Skyline
            and FloatArray) ;
            - if you use function 'main' as defined in file 'main2.c', you
            may, or may not, use option DEBUG.
*/

#ifndef DEBUG
#define DEBUG                     // activate or de-activate this line
#endif








⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?