You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A progress handler is responsible for displaying progress information to the user. Different scenarios require different progress displays. For instance, an application with a graphical user interface will display progress differently than a command line application.
💡 Steps for implementing the feature
Create an IProgress interface class that can be inherited from. IProgress must include a method to update progress. This method should include the following information.
running state
percent complete
context
error message, if error occurred
status message, if available
A progress handler parameter needs to be added to simulate() and _simulate() in methods on the Additive object and to run_simulations() on the ParametricStudy object.
🔗 Useful links and references
No response
The text was updated successfully, but these errors were encountered:
📝 Description of the feature
A progress handler is responsible for displaying progress information to the user. Different scenarios require different progress displays. For instance, an application with a graphical user interface will display progress differently than a command line application.
💡 Steps for implementing the feature
Create an IProgress interface class that can be inherited from. IProgress must include a method to update progress. This method should include the following information.
A progress handler parameter needs to be added to
simulate()
and_simulate()
in methods on theAdditive
object and torun_simulations()
on theParametricStudy
object.🔗 Useful links and references
No response
The text was updated successfully, but these errors were encountered: