I have a doubt on your code that relaxes alpha on a FL and beta on a FH.
You have the code:
Code: Select all
//delta *= 2;
//delta += delta / 2;
delta += delta / 3 + 4;Is this line really correct and what you really intended to do?
Code: Select all
delta += delta / 3 + 4;Or did you really want to increase delta by 3/4 of itself like this?:
Code: Select all
delta += delta * 3 / 4;thanks,
Alvaro
