From: rahuel Date: Tue, 30 Aug 2005 07:58:36 +0000 (+0000) Subject: PAL8521 X-Git-Tag: V_3_0_2~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=f0808140a04c48920484ebb1864ca058d701d44f;p=modules%2Fsuperv.git PAL8521 --- diff --git a/src/Supervision/StreamGraph_Impl.cxx b/src/Supervision/StreamGraph_Impl.cxx index 6602d2c..76b19d4 100644 --- a/src/Supervision/StreamGraph_Impl.cxx +++ b/src/Supervision/StreamGraph_Impl.cxx @@ -265,8 +265,10 @@ SUPERV::ListOfStreamLinks * StreamGraph_Impl::StreamLinks( GraphBase::ComputingN << anOutPort->PortName() << ") --> " << aNode->Name() << "(" << anInPort->PortName() << ")" ) ; if ( theNode == NULL || - ( theNode != NULL && !theNode->IsEndSwitchNode() && - !strcmp( theNode->Name() , aNode->Name() ) ) ) { +//PAL8521 +//JR 14.02.2005 : Debug : we must see also that links ! +// ( theNode != NULL && !theNode->IsEndSwitchNode() && + !strcmp( theNode->Name() , aNode->Name() ) ) { if ( anInPort->IsLoop() || anOutPort->IsLoop() || ( aNode->IsEndLoopNode() && !strcmp( aNode->CoupledNode()->Name() , anOutPort->NodeName() ) ) ) { @@ -332,7 +334,9 @@ SUPERV::ListOfStreamLinks * StreamGraph_Impl::StreamLinks( GraphBase::ComputingN if ( theNode == NULL || !strcmp( theNode->Name() , aNode->Name() ) ) { if ( anInPort->IsDataStream() ) { - if ( theNode || ( toNode->IsEndSwitchNode() && !aNode->IsSwitchNode() ) ) { +//PAL8521 +//JR 14.02.2005 : Debug : we must see also that links ! +// if ( theNode || ( toNode->IsEndSwitchNode() && !aNode->IsSwitchNode() ) ) { if ( anInputParam == NULL || !strcmp( anInPort->PortName() , anInputParam ) ) { MESSAGE( "StreamLink " << anOutPort->NodeName() << "(" @@ -391,7 +395,7 @@ SUPERV::ListOfStreamLinks * StreamGraph_Impl::StreamLinks( GraphBase::ComputingN << anOutPort->PortName() << ") --> " << toNode->Name() << "(" << anInPort->PortName() << ")" << " skipped" ) ; } - } +// } } } }