File: bug_report.md

package info (click to toggle)
neuron 8.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,768 kB
  • sloc: cpp: 149,571; python: 58,449; ansic: 50,329; sh: 3,510; xml: 213; pascal: 51; makefile: 35; sed: 5
file content (55 lines) | stat: -rw-r--r-- 1,332 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
name: NEURON Bug Report
about: Detailed report to describe NEURON and CMake build related bugs
title: ''
labels: 'bug'
assignees: ''

---

## Context

### Overview of the issue

[Provide more details regarding the issue]

### Expected result/behavior

[Describe what is the expected result and/or behavior]

### NEURON setup
 
 - Version: [e.g. master branch / 7.8.2]
 - Installation method [e.g. cmake build / pip / Windows Installer / macOS installer]
 - OS + Version: [e.g. Ubuntu 20.04]
 - Compiler + Version: [e.g. gcc-9]
 
## Minimal working example - MWE

MWE that can be used for reproducing the issue and testing. A couple of examples:

* python script:
```python
from neuron import h

def test_area():
    soma = h.Section(name="soma")
    soma.L = soma.diam = 10
    assert 314.159 < sum(seg.area() for seg in soma) < 314.16

test_area()
```

* CMake build commands:
```cmake
git clone git@github.com:neuronsimulator/nrn.git
mkdir build && cd build
cmake -DNRN_ENABLE_CORENEURON=ON -DCMAKE_C_COMPILER=icc -DCMAKE_CXX_COMPILER=icpc ..
cmake --build . --
```
## Logs

[If this a build issue `CMakeError.log`, `CMakeOutput.log` or the output of `make VERBOSE=1` would be very helpful.
 Please attach the full file and not its content!
 
 Otherwise provide the error printed to the terminal or a screenshot of the issue]