NEST main@caf0ae8
 
Loading...
Searching...
No Matches
Todo List
Member Dictionary::has_been_accessed (const std::string &key) const
Should be removed, see #3791
Member Dictionary::mark_as_accessed (const std::string &key) const
Should be removed, see #3791
File growth_curve.h
All BeginDocumentation blocks in this file need to be converted to BeginUserDocs blocks. That, however, either requires that the doc is modified to support multiple such blocks in a single file, or (and IMO better) to split this file into multiple files with one growth rule per file.
Struct nest::correlation_detector::State_
Is there a replacement for std::list that allows fast insertion inside, fast deletion at the beginning, and maintains sorting?
Struct nest::correlomatrix_detector::State_
Is there a replacement for std::list that allows fast insertion inside, fast deletion at the beginning, and maintains sorting?
Struct nest::correlospinmatrix_detector::State_
Is there a replacement for std::list that allows fast insertion inside, fast deletion at the beginning, and maintains sorting?
Member nest::Device::get_t_max_ () const
Should be protected, but is temporarily public to solve inheritance problems in AnalogSamplingDevice.
Member nest::Device::get_t_min_ () const
Should be protected, but is temporarily public to solve inheritance problems in AnalogSamplingDevice.
Member nest::DynamicRecordablesMap< HostNode >::get_list () const
This fct should return the recordables_ entry, but since filling recordables_ leads to seg fault on exit, we just build the list every time, even though that beats the goal of being more efficient ...
Member nest::EpropArchivingNodeRecurrent< hist_shift_required >::surrogate_gradient_funcs_
In the long run, this map should be handled by a manager with proper registration functions, so that external modules can add their own gradient functions.
Member nest::mip_generator::event_hook (DSSpikeEvent &) override
Should use binomial distribution
Member nest::ModelManager::get_connection_model (synindex syn_id, size_t thread_id)
: make the return type const, after the increment of num_connections and the min_ and max_delay setting in ConnectorBase was moved out to the ConnectionManager
Member nest::multimeter::Buffers_::Buffers_ ()
Ideally, one should be able to ask ConnectionManager.
Member nest::RecordablesMap< HostNode >::get_list () const
This fct should return the recordables_ entry, but since filling recordables_ leads to seg fault on exit, we just build the list every time, even though that beats the goal of being more efficient ...
Member nest::register_correlation_detector (const std::string &name)
The correlation detector could be made more efficient as follows (HEP 2008-07-01):
  • incoming_ is vector of two deques
  • let handle() push_back() entries in incoming_ and do nothing else
  • keep index to last "old spike" in each incoming_; cannot be iterator since that may change
  • update() deletes all entries before now-tau_max, sorts the new entries, then registers new entries in histogram
Member nest::register_correlomatrix_detector (const std::string &name)
The correlation detector could be made more efficient as follows (HEP 2008-07-01):
  • incoming_ is vector of two deques
  • let handle() push_back() entries in incoming_ and do nothing else
  • keep index to last "old spike" in each incoming_; cannot be iterator since that may change
  • update() deletes all entries before now-tau_max, sorts the new entries, then registers new entries in histogram
Class nest::StimulationDevice
The timing of analog devices is correct only if they are transmitted using Network::send_local(), but we cannot enforce this currently.
Member nest::ThirdBernoulliWithPoolBuilder::PoolType_
Could probably be BlockVector, but currently some problem with back_inserter when sampling pool.