Skip to content

Commit

Permalink
Auto-format code using Clang-Format (#240)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
github-actions[bot] and actions-user authored Nov 5, 2024
1 parent e4c9786 commit 3f1718e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/test/test_analytical.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def test_simulation(self):
TestSingleGridCell(self, solver, 200.0, 5)



class TestAnalyticalStandardBackwardEuler(unittest.TestCase):
def test_simulation(self):
solver = musica.create_solver(
Expand Down Expand Up @@ -355,7 +354,8 @@ def test_simulation(self):
"configs/analytical",
musica.micmsolver.rosenbrock,
4)
TestVectorMultipleGridCell(self, solver, 4, 200.0, 5) # The number of grid cells must equal the MICM matrix vector dimension
# The number of grid cells must equal the MICM matrix vector dimension
TestVectorMultipleGridCell(self, solver, 4, 200.0, 5)


class TestAnalyticalStandardRosenbrockMultipleGridCells(unittest.TestCase):
Expand All @@ -373,7 +373,8 @@ def test_simulation(self):
"configs/analytical",
musica.micmsolver.backward_euler,
4)
TestVectorMultipleGridCell(self, solver, 4, 10.0, places=2) # The number of grid cells must equal the MICM matrix vector dimension
# The number of grid cells must equal the MICM matrix vector dimension
TestVectorMultipleGridCell(self, solver, 4, 10.0, places=2)


class TestAnalyticalStandardBackwardEulerMultipleGridCells(unittest.TestCase):
Expand Down

0 comments on commit 3f1718e

Please sign in to comment.