island corrected
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@993 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
474d8f655b
commit
755672d19e
3 changed files with 3 additions and 3 deletions
|
|
@ -186,7 +186,7 @@ template< class TYPESELECT, class TYPEREPLACE> void peoAsyncIslandMig< TYPESELE
|
|||
template< class TYPESELECT , class TYPEREPLACE> void peoAsyncIslandMig< TYPESELECT , TYPEREPLACE > :: operator()()
|
||||
{
|
||||
|
||||
if (cont.check())
|
||||
if (! cont.check())
|
||||
{
|
||||
|
||||
emigrate();
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ template < class EOT> class eoContinuator : public continuator
|
|||
{}
|
||||
|
||||
//! @brief Virtual function of check
|
||||
//! @return true if the algorithm must continue
|
||||
//! @return false if the algorithm must continue
|
||||
virtual bool check()
|
||||
{
|
||||
return cont(pop);
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ template< class TYPESELECT, class TYPEREPLACE > void peoSyncIslandMig< TYPESELEC
|
|||
template< class TYPESELECT, class TYPEREPLACE > void peoSyncIslandMig< TYPESELECT , TYPEREPLACE > :: operator()()
|
||||
{
|
||||
|
||||
if ( cont.check() )
|
||||
if (! cont.check() )
|
||||
{
|
||||
explicitPassive = standbyMigration = false;
|
||||
topology.setNeighbors( this, in, out );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue