Gsharp 3.3 Known Bugs and Restrictions

An up-to-date list of bugs and fixes can be found on our web site at http://www.avsuk.com/support/tm/

Summary

This is a list of known bugs and restrictions in Gsharp 3.3.

See also: Upgrade Information

Details

  • Gsharp will leak memory if you return from a GSL function whilst inside a for loop or a while loop. This can be avoided by using the break command. e.g. replace:
for i=1 to 10
  if (i=5)  return;
endfor

with:

errors = false; 
for i=1 to 10 
  if (i=5) then 
    errors = true; 
    break;             
  endif
endfor 
if (errors)  return;