?? check1.f
字號:
Subroutine check1( sy, ok )! -------------------------------------------------------------------! --- 'check1' checks whether the operations done in routine 'oper1'! have been performed correctly. Only the target variable 'sy'! has to be checked.! ------------------------------------------------------------------- Use numerics Implicit None Real(l_) :: sy Logical :: ok Real(l_) :: eps! ------------------------------------------------------------------- eps = 5.0_l_*Epsilon( 1.0_l_ ) If ( Abs( sy - 1.0_l_ ) > eps ) ok = .FALSE.! ------------------------------------------------------------------- End Subroutine check1
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -