Hi there. I wrote a procedure which includes using COMT to solve optimization problems with multhithreads.
When I called this procedure, I got the following error message:
error G0505: 'DS': Invalid structure redefinition
error G0505: 'PV': Invalid structure redefinition
error G0505: 'comtControl': Invalid structure redefinition
What might cause this problem?
Thanks!
1 Answer
0
Most any time that get a redefinition error, you need to use the GAUSS new statement to clear out previous definitions. If you add:
new;
to the top of your program, that should prevent this problem
Your Answer
1 Answer
Most any time that get a redefinition error, you need to use the GAUSS new statement to clear out previous definitions. If you add:
new;
to the top of your program, that should prevent this problem