From f0d659498018dff68c16d3abdc36880885c41f12 Mon Sep 17 00:00:00 2001 From: bcumming <bcumming@cscs.ch> Date: Fri, 10 Jun 2016 11:34:34 +0200 Subject: [PATCH] rename fvm.hhp -> fvm_cell.hpp --- src/{fvm.hpp => fvm_cell.hpp} | 0 tests/test_fvm.cpp | 4 ++-- tests/test_synapses.cpp | 2 +- tests/validate_ball_and_stick.cpp | 4 ++-- tests/validate_soma.cpp | 4 ++-- tests/validate_synapses.cpp | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) rename src/{fvm.hpp => fvm_cell.hpp} (100%) diff --git a/src/fvm.hpp b/src/fvm_cell.hpp similarity index 100% rename from src/fvm.hpp rename to src/fvm_cell.hpp diff --git a/tests/test_fvm.cpp b/tests/test_fvm.cpp index 85a25f35..bc7374cb 100644 --- a/tests/test_fvm.cpp +++ b/tests/test_fvm.cpp @@ -3,8 +3,8 @@ #include "gtest.h" #include "util.hpp" -#include "../src/cell.hpp" -#include "../src/fvm.hpp" +#include <cell.hpp> +#include <fvm_cell.hpp> TEST(fvm, cable) { diff --git a/tests/test_synapses.cpp b/tests/test_synapses.cpp index 5a8f2ffa..87ac3aec 100644 --- a/tests/test_synapses.cpp +++ b/tests/test_synapses.cpp @@ -2,7 +2,7 @@ #include "util.hpp" #include <cell.hpp> -#include <fvm.hpp> +#include <fvm_cell.hpp> // compares results with those generated by nrn/ball_and_stick.py TEST(synapses, add_to_cell) diff --git a/tests/validate_ball_and_stick.cpp b/tests/validate_ball_and_stick.cpp index 1a9bddb7..5b509525 100644 --- a/tests/validate_ball_and_stick.cpp +++ b/tests/validate_ball_and_stick.cpp @@ -4,8 +4,8 @@ #include "gtest.h" #include "util.hpp" -#include "../src/cell.hpp" -#include "../src/fvm.hpp" +#include <cell.hpp> +#include <fvm_cell.hpp> // compares results with those generated by nrn/ball_and_stick.py TEST(ball_and_stick, neuron_baseline) diff --git a/tests/validate_soma.cpp b/tests/validate_soma.cpp index 44d8235a..2353cb48 100644 --- a/tests/validate_soma.cpp +++ b/tests/validate_soma.cpp @@ -4,8 +4,8 @@ #include "gtest.h" #include "util.hpp" -#include "../src/cell.hpp" -#include "../src/fvm.hpp" +#include <cell.hpp> +#include <fvm_cell.hpp> // compares results with those generated by nrn/soma.py // single compartment model with HH channels diff --git a/tests/validate_synapses.cpp b/tests/validate_synapses.cpp index 7b882a68..2ccde863 100644 --- a/tests/validate_synapses.cpp +++ b/tests/validate_synapses.cpp @@ -4,7 +4,7 @@ #include "util.hpp" #include <cell.hpp> -#include <fvm.hpp> +#include <fvm_cell.hpp> #include <json/src/json.hpp> -- GitLab