Skip to content
Snippets Groups Projects
Select Git revision
  • e2f6ecdb2cb2b582581bc00ea736fd35645edc17
  • master default protected
  • image_build
  • update-arbor-0.10.0
  • experimental_rel
  • spack_v0.22.1
  • ebrains-24-04
  • update-readme
  • create-module-file
  • add-nestml-tests
  • feat_add_py-norse
  • update-libneuroml
  • update-bluebrain-packages
  • feat_arbor_install_all_binaries
  • ebrains-23.09-jsc-site-config
  • spack-v0.20.0
  • ebrains-23-09-spack-v0.19.2
  • ebrains-23-09
  • nestml-source-distribution
  • ebrains-23-06
  • ebrains-23-02
21 results

load_sim_tools.sh

Blame
  • test_stabilization.py 455 B
    from multiarea_model import MultiAreaModel
    import pytest
    
    
    def test_meanfield():
        """
        Test stabilization procedure. Since this algorithm is not
        implemented yet, we here test if this properly raises a
        NotImplementedError.
        """
    
        network_params = {'connection_params': {'K_stable': True}}
        theory_params = {}
        with pytest.raises(NotImplementedError):
            MultiAreaModel(network_params, theory=True, theory_spec=theory_params)