Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usadelndsoc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JYU Condensed Matter Theory
usadelndsoc
Commits
8b24ee4c
Commit
8b24ee4c
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
tests: test terminal solutions too
parent
2b8c4f54
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_basic.py
+9
-3
9 additions, 3 deletions
tests/test_basic.py
with
9 additions
and
3 deletions
tests/test_basic.py
+
9
−
3
View file @
8b24ee4c
...
...
@@ -38,10 +38,16 @@ def test_solve_dos():
@pytest.mark.parametrize
(
"
omega,h
"
,
[(
w
,
h
)
for
w
in
(
0.5
+
0.8j
,
-
0.5
+
0.8j
)
for
h
in
(
0
,
-
0.5
,
0.5
)]
"
omega,h,terminals
"
,
[
(
w
,
h
,
terminals
)
for
w
in
(
0.5
+
0.8j
,
-
0.5
+
0.8j
)
for
h
in
(
0
,
-
0.5
,
0.5
)
for
terminals
in
(
True
,
False
)
],
)
def
test_result_S_J0
(
omega
,
h
):
s
=
basic_setup
(
h
=
h
)
def
test_result_S_J0
(
omega
,
h
,
terminals
):
s
=
basic_setup
(
h
=
h
,
terminals
=
terminals
)
res
=
s
.
solve_many
(
omega
=
omega
)
S
=
res
.
S
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment