Open k-eks opened 9 years ago
Oh, sorry, I missed when the bug appeared.
In principle at the moment I move the lower bracket of the RefinableVariables
block. Like this:
RefinableVariables [
p1=0.5;
p2=0;
]
to something like
RefinableVariables [
p1=0.5;
]
p2=0;
By the way, I now can compile Yell again, so I can make any version of turning the variables on or off. I just do not know how to do this in the best way. Suggestions are welcome.
Oh, I thought I read somewhere that variable declaration has to be before the refinable variables... I just thought it would be nice to have a simple switch to turn them on and off, so that you could do a first run like
p2=2;
RefinableVariables [
p1;
#p2;
]
and for the second run simply uncomment p2.
This is pure lazyness, it would come down to a few keystrokes more or less...
Ok, I see the point. Since there is no pressing need for this to work right now, I would schedule the change on some (possibly distant) future when I will make some serious improvements in Yell speed.
Is it possible to declare some previously declared variables as "refineable"? For instance: