execute() { mainProxy.execute(); }
//! \brief Charm++ chare execute //! \details By the time this object is constructed, the Charm++ runtime system //! has finished migrating all global-scoped read-only objects which happens //! after the main chare constructor has finished. //! \author J. Bakosi struct execute : CBase_execute { execute() { mainProxy.execute(); } };
public: execute() { mainProxy.execute(); }