| Author |
Comment/Response |
yehuda ben-shimol
|
09/29/09 09:25am
Hi,
you can change the default settings for the options of the function before using it with the function
SetOptions[]
TimeConstraint/.Options[Simplify]
returns 300
now
say that you want unlimited time, use
SetOptions[Simplify, TimeConstraint -> Infinity]
then
TimeConstraint /. Options[Simplify] // InputForm
returns
Infinity
of course you can set it to any other value such as 5000
The new value will be used for Simplify until you change it to some other value, or restart the kernel
yehuda
URL: , |
|