|
SOLUTIONS
|
MATHEMATICA 組込みシンボル
RuntimeOptions
RuntimeOptions
Compileのオプションで,Compileがコンパイルする関数のランタイム設定を指定する.
詳細詳細
- RuntimeOptionsはコンパイルされた関数が実行される際に適用される.
- RuntimeOptionsの可能な全体的設定値:
-
"Quality" 最終結果の質に最適化 "Speed" 結果を得るスピードに最適化 - RuntimeOptionsは次のネスト構造を許容する.
-
"CatchMachineOverflow" False 実数のオーバーフローを発生と同時にキャッチするかどうか "CatchMachineUnderflow" False 実数のアンダーフローを発生と同時にキャッチするかどうか "CatchMachineIntegerOverflow" True 
"CompareWithTolerance" True 比較がSameQと同じように作用すべきかどうか "EvaluateSymbolically" True 記号引数で評価するかどうか "RuntimeErrorHandler" Evaluate 関数の実行に際して致命的なランタイムエラーが発生した場合に適用する関数 "WarningMessages" True 警告メッセージを出すべきかどうか - RuntimeOptions->"Speed"は以下のネスト設定に等しい.
-
"CatchMachineOverflow" False "CatchMachineUnderflow" False "CatchMachineIntegerOverflow" False "CompareWithTolerance" False "EvaluateSymbolically" True "RuntimeErrorHandler" Evaluate "WarningMessages" True - RuntimeOptions->"Quality"は以下のネスト設定に等しい.
-
"CatchMachineOverflow" True "CatchMachineUnderflow" True "CatchMachineIntegerOverflow" True "CompareWithTolerance" True "EvaluateSymbolically" True "RuntimeErrorHandler" Evaluate "WarningMessages" True
バージョン 8 の新機能
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »

