Currently, declaring parameters like
scale sc_val 0.001
results in a global parameter called sc_val.
If I wanted a local parameter, I'd have to
local sc_val 0.001 min 1e-11
scale = sc_val;
Is there a way to shortcut the local declaration, and retain the default parameter limits? Maybe something like
scale local sc_val 0.001
Matthew