Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: Minor documentation change in test of EquationSystem #1309

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions tests/numerics/ad/test_equation_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
current iterate, previous iterate and previous time step.
* test_variable_creation: Test that variable creation from an EquationSystem works.
* test_variable_tags: Tagging of variables, used for filtering in an EquationSystem.
* test_set_get_methods: Get and set methods for variables.
* test_set_get_methods: Get and set methods for variables, including methods for
shifting between time steps and iterates.
* test_projection_matrix: Projection from a global vector to one defined on a subset
of variables.
* test_set_remove_equations: Set and remove equations from an EquationSystem.
* test_parse_variable_like, test_parse_single_equation, test_parse_equations:
Parsing of equations, and the methods used to do so. Thorough testing here means
other tests can get away with fewer parameter checks.
Expand All @@ -18,12 +20,6 @@
* test_extract_subsystem: Extract a new EquationSystem for a subset of equations.
* test_schur_complement: Assemble a subsystem, using a Schur complement reduction.

To be tested:
Get and set methods for variables
IdentifyDof
...


"""
import numpy as np
import pytest
Expand Down
Loading