Example #1
0
void
nest::Node::get_history( double_t,
  double_t,
  std::deque< histentry >::iterator*,
  std::deque< histentry >::iterator* )
{
  throw UnexpectedEvent();
}
Example #2
0
void
Node::handle( DoubleDataEvent& )
{
  throw UnexpectedEvent();
}
Example #3
0
void
Node::handle( ConductanceEvent& )
{
  throw UnexpectedEvent();
}
Example #4
0
void
Node::handle( DataLoggingReply& )
{
  throw UnexpectedEvent();
}
Example #5
0
void
Node::handle( CurrentEvent& )
{
  throw UnexpectedEvent();
}
Example #6
0
/**
 * Default implementation of wfr_update just
 * throws UnexpectedEvent
 */
bool
Node::wfr_update( Time const&, const long, const long )
{
  throw UnexpectedEvent();
}
Example #7
0
void
Node::set_has_proxies( const bool )
{
  throw UnexpectedEvent();
}
Example #8
0
void
Node::get_K_values( double_t, double_t&, double_t& )
{
  throw UnexpectedEvent();
}
Example #9
0
void
Node::handle( GapJunctionEvent& )
{
  throw UnexpectedEvent();
}
Example #10
0
/**
 * Default implementation of prelim_update just
 * throws UnexpectedEvent
 */
bool
Node::prelim_update( Time const&, const long_t, const long_t )
{
  throw UnexpectedEvent();
}
Example #11
0
void
Node::handle( DelayedRateConnectionEvent& )
{
  throw UnexpectedEvent();
}
Example #12
0
void
Node::handle( DiffusionConnectionEvent& )
{
  throw UnexpectedEvent();
}
Example #13
0
void
Node::handle( InstantaneousRateConnectionEvent& )
{
  throw UnexpectedEvent();
}
Example #14
0
void
Node::handle( WeightRecorderEvent& )
{
  throw UnexpectedEvent();
}
Example #15
0
double_t Node::get_K_value( double_t )
{
  throw UnexpectedEvent();
}
Example #16
0
double_t Node::get_tau_minus() const{
  throw UnexpectedEvent();
}
Example #17
0
/**
 * Default implementation of check_connection just throws UnexpectedEvent
 */
port
Node::send_test_event( Node&, rport, synindex, bool )
{
  throw UnexpectedEvent();
}
Example #18
0
/**
 * Default implementation of event handlers just throws
 * an UnexpectedEvent exception.
 * @see class UnexpectedEvent
 * @throws UnexpectedEvent  This is the default event to throw.
 */
void
Node::handle( SpikeEvent& )
{
  throw UnexpectedEvent();
}
Example #19
0
void
Node::handle( RateEvent& )
{
  throw UnexpectedEvent();
}
Example #20
0
void
Node::set_local_receiver( const bool )
{
  throw UnexpectedEvent();
}
 /**
  * Default implementation of just throws UnexpectedEvent
  */
 port Node::check_connection(Connection&, port)
 {
   throw UnexpectedEvent();
   return invalid_port_;
 }