Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdc-counting
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Radek Hušek
cdc-counting
Commits
f3e92488
Commit
f3e92488
authored
3 years ago
by
Radek Hušek
Browse files
Options
Downloads
Patches
Plain Diff
voltage graphs: fix negative values
parent
0a393087
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
graph_tools/voltage_graphs.py
+1
-1
1 addition, 1 deletion
graph_tools/voltage_graphs.py
with
1 addition
and
1 deletion
graph_tools/voltage_graphs.py
+
1
−
1
View file @
f3e92488
...
...
@@ -97,7 +97,7 @@ def _init_():
else
:
for
i
in
range
(
-
a
):
gadget
.
out
(
v
if
i
==
0
else
free_edges
[
i
-
1
])
gadget
.
out
(
free_edges
[
i
]
if
i
<
a
-
1
else
u
)
gadget
.
out
(
free_edges
[
i
]
if
i
<
a
bs
(
a
)
-
1
else
u
)
gadget
=
gadget
.
finish
()
...
...
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