Skip to content
Snippets Groups Projects
Commit a05e4ae7 authored by Wouter Klijn's avatar Wouter Klijn
Browse files

Remove spurious spaces in includes and a final include not in correct order

parent 54f986d0
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <map> #include <map>
#include <string> #include <string>
#include <vector> #include <vector>
#include <Vector.hpp>
#include "algorithms.hpp" #include "algorithms.hpp"
#include "cell.hpp" #include "cell.hpp"
...@@ -16,8 +17,6 @@ ...@@ -16,8 +17,6 @@
#include "stimulus.hpp" #include "stimulus.hpp"
#include "util.hpp" #include "util.hpp"
#include <Vector.hpp>
namespace nest { namespace nest {
namespace mc { namespace mc {
namespace fvm { namespace fvm {
......
#pragma once #pragma once
#pragma once
#include <memory> #include <memory>
#include <string> #include <string>
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
#include "../src/algorithms.hpp" #include "../src/algorithms.hpp"
TEST(algorithms, sum) TEST(algorithms, sum)
{ {
// sum of 10 times 2 is 20 // sum of 10 times 2 is 20
......
...@@ -3,9 +3,8 @@ ...@@ -3,9 +3,8 @@
#include "gtest.h" #include "gtest.h"
#include "../src/matrix.hpp"
#include "../src/math.hpp" #include "../src/math.hpp"
#include "../src/matrix.hpp"
TEST(matrix, construct_from_parent_only) TEST(matrix, construct_from_parent_only)
{ {
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#include "../src/segment.hpp" #include "../src/segment.hpp"
TEST(segments, soma) TEST(segments, soma)
{ {
using namespace nest::mc; using namespace nest::mc;
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
#include "../src/cell_tree.hpp" #include "../src/cell_tree.hpp"
using json = nlohmann::json; using json = nlohmann::json;
using range = memory::Range; using range = memory::Range;
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#include "gtest.h" #include "gtest.h"
#include "util.hpp" #include "util.hpp"
#include "../src/cell.hpp" #include "../src/cell.hpp"
#include "../src/fvm.hpp" #include "../src/fvm.hpp"
......
#include <fstream> #include <fstream>
#include <json.hpp> #include <json.hpp>
#include "gtest.h" #include "gtest.h"
#include "util.hpp" #include "util.hpp"
#include "../src/cell.hpp" #include "../src/cell.hpp"
#include "../src/fvm.hpp" #include "../src/fvm.hpp"
// compares results with those generated by nrn/soma.py // compares results with those generated by nrn/soma.py
// single compartment model with HH channels // single compartment model with HH channels
TEST(soma, neuron_baseline) TEST(soma, neuron_baseline)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment