Skip to content

pranavcode/insilico

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

insilico

GNU GPLv3 License insilico Trello

insilico is a Computational Neuroscience simulation library written in C++.

insilico encourages ready-to-start approach for quick setup of simulation environment, without hindering programmers time and focus from intended experiment.

Library homepage: http://insilico-lib.github.io/insilico/

Download insilico's Source

We currently have insilico C++ source available in beta versions. These can be downloaded from insilico's Releases page.

Install insilico

Please refer to INSTALL file for more details on installation.

Support and Contact info

Example

#include "insilico/core.hpp"
#include <boost/numeric/odeint.hpp>

using namespace insilico;

int main(int argc, char **argv) {
  configuration::initialize(argc, argv);
  configuration::observe("v");

  engine::generate_neuron<HH_Neuron>();

  state_type variables = engine::get_variables();
  integrate_const(boost::numeric::odeint::runge_kutta4<state_type>(),
                  engine::driver(), variables,
                  0.0, 100.0, 0.05, configuration::observer());

  configuration::finalize();
}

Documentation

Complete documentation can be found here (Coming soon).

Quick Links:

Contribute

Contributions are more than welcome! Please refer to this document to learn more.

Licence

This simulator library is licensed under GNU GPLv3 which can be found in LICENSE file under home directory of this project.

Packages

 
 
 

Languages

  • C++ 93.9%
  • Makefile 5.7%
  • Shell 0.4%