Skip to content

Commit

Permalink
rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
smm-ncl committed Jul 11, 2024
1 parent 2380996 commit 51e26a3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/lava/proc/s4d/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ def compare_s4d_model_to_original_equations(self,
def test_s4d_real_model_single_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=True, d_states=1)

def test_s4d_complex_model_multiple_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=False, d_states=5)

def test_s4d_real_model_single_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=True, d_states=1)

def test_s4d_real_model_multiple_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=True, d_states=5)

def test_s4d_complex_model_single_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=False, d_states=1)

def test_s4d_complex_model_multiple_hidden_state(self) -> None:
self.compare_s4d_model_to_original_equations(is_real=False, d_states=5)


class TestSigmaS4DDeltaModels(unittest.TestCase):
"""Tests for SigmaS4Delta neuron"""
Expand Down

0 comments on commit 51e26a3

Please sign in to comment.