| 91 | } |
| 92 | |
| 93 | void |
| 94 | MapBase::insert( raft::kernel *a, PortInfo &a_out, |
| 95 | raft::kernel *b, PortInfo &b_in, |
| 96 | raft::kernel *i) |
| 97 | { |
| 98 | PortInfo &i_in( i->input.getPortInfoFor( "0" ) ), |
| 99 | &i_out( i->output.getPortInfoFor( "0" ) ); |
| 100 | join( *a, a_out.my_name, a_out, |
| 101 | *i, i_in.my_name, i_in ); |
| 102 | join( *i, i_out.my_name, i_out, |
| 103 | *b, b_in.my_name, b_in ); |
| 104 | } |
| 105 | |
| 106 | void MapBase::portNotFound( const bool src, |
| 107 | const AmbiguousPortAssignmentException &ex, |
no test coverage detected