Skip to content
Snippets Groups Projects
  1. Sep 06, 2016
    • Benjamin Cumming's avatar
      Small optimization of mechanism initialization · a89f41bc
      Benjamin Cumming authored
      * move from index_view to const_index_view for mechaninism
        inintialization. This allows us to pass more generic container
        types to the constructor while avoiding redundant copies
      * NOTE: required update of
          * external/vector
          * external/modparser
      * fixed signed-vs-unsigned comparison warning in algorithims.hpp
      a89f41bc
    • Sam Yates's avatar
      Address PR#92 review comments. · cfe5f4bf
      Sam Yates authored
      Note: use of non-const reference in `mechanism_catalogue::make`
      is an interim solution.
      cfe5f4bf
  2. Sep 05, 2016
    • Sam Yates's avatar
      Finalize fvm_multicell · cea41d09
      Sam Yates authored
      * Fix bug in 'close' event delivery for multicell.
      * Fix displacement scaling bug in gather_all_with_partition.
      * Command line parameter io, reporting for new miniapp options.
      * Only master rank performs command line parameter writing.
      * Add test for mpi::gather_all and mpi::gather_all_with_partition.
      * Extend utility of `util::assign`, `util::append`.
      cea41d09
  3. Sep 03, 2016
    • Sam Yates's avatar
      Bugfixes; tie multicells to multi-cell cell group. · 4f49fe38
      Sam Yates authored
      * Include new option -g in miniapp to specify cell group size.
      * Miniapp -r option generates a ring network.
      * Modify EXPECTS() so that when assertions are disabled we
        avoid unused variable warnings.
      4f49fe38
  4. Sep 02, 2016
  5. Sep 01, 2016
  6. Aug 31, 2016
  7. Aug 30, 2016
  8. Aug 29, 2016
  9. Aug 25, 2016
  10. Aug 24, 2016
  11. Aug 23, 2016
    • Benjamin Cumming's avatar
      Support for multi-threaded sort · 4376306e
      Benjamin Cumming authored
      * `nest::mc::threading::sort` is analogous to `std::sort`
          * when using TBB the `tbb::parallel_sort` is used
          * otherwise `std::sort` is used
      * used to parallelise connection construction during setup
          * now all initialization and simulation is multi-threaded
      * added a unit test
      4376306e