Hi!
Is it possible with SObjectizer to use default agent state (which is returned with so_default_state) as a parent state for another state? I am trying to do something like this:
state_t NotStarted{initial_substate_of(so_default_state()), "NotStarted"};
Unfortunately initial_substate_of takes a non-const reference but so_default_state returns const reference, so it doesn't compile.
Is there any workaround (except introducing own "default" state and making it as a parent for another events)? Is it a limitation by design?
Thank you.