The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"Is there any way to break a loop?"
Hey,
Is there any way to break a loop?
Loop
Synopsis
Performs its inner operators k times.
As far as I can tell, there is no way to stop the loop early, so not executing the full k times?
Best regards,
Wessel
Is there any way to break a loop?
Loop
Synopsis
Performs its inner operators k times.
As far as I can tell, there is no way to stop the loop early, so not executing the full k times?
Best regards,
Wessel
Tagged:
0
Answers
no that's not possible. The next version will feature a Stop operator, which will however stop the complete process.
What you could do is to use a Branch operator which checks a macro, which you can set in the inner process of Branch to a "stop" value. If the condition of Branch does not longer match, it will execute it's right inner process, which will be pretty fast if you leave it empty.
Best, Marius