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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*************************************************************************
* Copyright (C) 2018-2022 Blue Brain Project
*
* This file is part of NMODL distributed under the terms of the GNU
* Lesser General Public License. See top-level LICENSE file for details.
*************************************************************************/
#include <catch2/catch_test_macros.hpp>
#include "ast/program.hpp"
#include "parser/nmodl_driver.hpp"
#include "test/unit/utils/test_utils.hpp"
#include "visitors/checkparent_visitor.hpp"
#include "visitors/neuron_solve_visitor.hpp"
#include "visitors/nmodl_visitor.hpp"
#include "visitors/symtab_visitor.hpp"
using namespace nmodl;
using namespace visitor;
using namespace test;
using namespace test_utils;
using nmodl::parser::NmodlDriver;
//=============================================================================
// CnexpSolve visitor tests
//=============================================================================
std::string run_cnexp_solve_visitor(const std::string& text) {
NmodlDriver driver;
const auto& ast = driver.parse_string(text);
SymtabVisitor().visit_program(*ast);
NeuronSolveVisitor().visit_program(*ast);
std::stringstream stream;
NmodlPrintVisitor(stream).visit_program(*ast);
// check that, after visitor rearrangement, parents are still up-to-date
CheckParentVisitor().check_ast(*ast);
return stream.str();
}
SCENARIO("NeuronSolveVisitor visitor solves different ODE types") {
GIVEN("Derivative block with cnexp method in breakpoint block") {
std::string nmodl_text = R"(
BREAKPOINT {
SOLVE states METHOD cnexp
}
DERIVATIVE states {
m' = (mInf-m)/mTau[0]
h' = (hInf-h)/hTau
m = m + h
}
)";
std::string output_nmodl = R"(
BREAKPOINT {
SOLVE states METHOD cnexp
}
DERIVATIVE states {
m = m+(1.0-exp(dt*((((-1.0)))/mTau[0])))*(-(((mInf))/mTau[0])/((((-1.0)))/mTau[0])-m)
h = h+(1.0-exp(dt*((((-1.0)))/hTau)))*(-(((hInf))/hTau)/((((-1.0)))/hTau)-h)
m = m+h
}
)";
THEN("ODEs get replaced with solution") {
std::string input = reindent_text(nmodl_text);
auto expected_result = reindent_text(output_nmodl);
auto result = run_cnexp_solve_visitor(input);
REQUIRE(result == expected_result);
}
}
GIVEN("Derivative block without any solve method specification") {
std::string nmodl_text = R"(
DERIVATIVE states {
m' = (mInf-m)/mTau
h' = (hInf-h)/hTau
}
)";
std::string output_nmodl = R"(
DERIVATIVE states {
m' = (mInf-m)/mTau
h' = (hInf-h)/hTau
}
)";
THEN("ODEs don't get solved") {
std::string input = reindent_text(nmodl_text);
auto expected_result = reindent_text(output_nmodl);
auto result = run_cnexp_solve_visitor(input);
REQUIRE(result == expected_result);
}
}
GIVEN("Derivative block with non-cnexp method in breakpoint block") {
std::string nmodl_text = R"(
BREAKPOINT {
SOLVE states METHOD derivimplicit
}
DERIVATIVE states {
m' = (mInf-m)/mTau
h' = (hInf-h)/hTau
}
)";
std::string output_nmodl = R"(
BREAKPOINT {
SOLVE states METHOD derivimplicit
}
DERIVATIVE states {
Dm = (mInf-m)/mTau
Dh = (hInf-h)/hTau
}
)";
THEN("ODEs don't get solved but state variables get replaced with Dstate ") {
std::string input = reindent_text(nmodl_text);
auto expected_result = reindent_text(output_nmodl);
auto result = run_cnexp_solve_visitor(input);
REQUIRE(result == expected_result);
}
}
GIVEN("Derivative block with ODEs that needs non-cnexp method to solve") {
std::string nmodl_text = R"(
BREAKPOINT {
SOLVE states METHOD cnexp
}
DERIVATIVE states {
A_AMPA' = tau_r_AMPA/A_AMPA
}
)";
std::string output_nmodl = R"(
BREAKPOINT {
SOLVE states METHOD cnexp
}
DERIVATIVE states {
A_AMPA' = tau_r_AMPA/A_AMPA
}
)";
THEN("ODEs don't get replaced as cnexp is not possible") {
std::string input = reindent_text(nmodl_text);
auto expected_result = reindent_text(output_nmodl);
auto result = run_cnexp_solve_visitor(input);
REQUIRE(result == expected_result);
}
}
}
|