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
Currently in ModuleBase the run() method is declared as const which means that the module can not have internal state when running. This should be changed.
virtual void run( DataManager& data ) const = 0;
The text was updated successfully, but these errors were encountered:
Currently in
ModuleBase
therun()
method is declared asconst
which means that the module can not have internal state when running. This should be changed.The text was updated successfully, but these errors were encountered: