Ignore:
Timestamp:
05/13/20 23:15:06 (4 years ago)
Author:
ymipsl
Message:

Coupling Branch.
Implementing a coupler scheduler, to impose order for intercommunicator creation between several coupling context.
Two way coupling is now working.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/cxios.cpp

    r1765 r1878  
    5555  CServicesManager*   CXios::servicesManager_=nullptr ; 
    5656  CContextsManager*   CXios::contextsManager_=nullptr ; 
     57  CCouplerManager*    CXios::couplerManager_=nullptr ; 
    5758 
    5859  //! Parse configuration file and create some objects from it 
     
    221222  } 
    222223 
     224  void CXios::launchCouplerManager(bool isXiosServer) 
     225  { 
     226    couplerManager_ = new CCouplerManager(isXiosServer) ; 
     227  } 
     228 
    223229  void CXios::launchServicesManager(bool isXiosServer) 
    224230  { 
     
    240246  { 
    241247    delete ressourcesManager_; 
     248  } 
     249 
     250  void CXios::finalizeCouplerManager() 
     251  { 
     252    delete couplerManager_; 
    242253  } 
    243254 
Note: See TracChangeset for help on using the changeset viewer.