Пример #1
0
port
Node::handles_test_event( DSCurrentEvent&, rport )
{
  throw IllegalConnection(
    "Possible cause: only static synapse types may be used to connect "
    "devices." );
}
Пример #2
0
port
Node::handles_test_event( DataLoggingRequest&, rport )
{
  throw IllegalConnection(
    "Possible cause: only static synapse types may be used to connect devices." );
}
Пример #3
0
port
Node::handles_test_event( CurrentEvent&, rport )
{
  throw IllegalConnection();
}
Пример #4
0
/**
 * Default implementation of unregister_stdp_connection() just
 * throws IllegalConnection
 */
void Node::unregister_stdp_connection( double_t )
{
  throw IllegalConnection();
}
Пример #5
0
void
Node::sends_secondary_event( GapJunctionEvent& )
{
  throw IllegalConnection();
}
Пример #6
0
port
Node::handles_test_event( GapJunctionEvent&, rport )
{
  throw IllegalConnection();
  return invalid_port_;
}
Пример #7
0
void
Node::sends_secondary_event( DelayedRateConnectionEvent& )
{
  throw IllegalConnection();
}
 port Node::connect_sender(ConductanceEvent&, port)
 {
   throw IllegalConnection();
   return invalid_port_;
 }
Пример #9
0
void
Node::sends_secondary_event( InstantaneousRateConnectionEvent& )
{
  throw IllegalConnection();
}
Пример #10
0
port
Node::handles_test_event( DelayedRateConnectionEvent&, rport )
{
  throw IllegalConnection();
  return invalid_port_;
}
Пример #11
0
port
Node::handles_test_event( InstantaneousRateConnectionEvent&, rport )
{
  throw IllegalConnection();
  return invalid_port_;
}
Пример #12
0
port
Node::handles_test_event( WeightRecorderEvent&, rport )
{
  throw IllegalConnection();
}
Пример #13
0
 port Node::connect_sender(DoubleDataEvent&, port)
 {
   throw IllegalConnection();
   return invalid_port_;
 }
Пример #14
0
port
Node::handles_test_event( ConductanceEvent&, rport )
{
  throw IllegalConnection();
}
Пример #15
0
void
Node::sends_secondary_event( DiffusionConnectionEvent& )
{
  throw IllegalConnection();
}
Пример #16
0
port
Node::handles_test_event( DoubleDataEvent&, rport )
{
  throw IllegalConnection();
}
Пример #17
0
 port Node::connect_sender(DataLoggingRequest&, port)
 {
   throw IllegalConnection();
   return invalid_port_;
 }