-
Notifications
You must be signed in to change notification settings - Fork 2
More DFGv1 cleanups and checks and Blobstore updates #1159
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
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #1159 +/- ##
===========================================
- Coverage 72.52% 72.39% -0.14%
===========================================
Files 29 29
Lines 2428 2427 -1
===========================================
- Hits 1761 1757 -4
- Misses 667 670 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -1074,7 +1042,7 @@ function copyGraph!( | |||
@showprogress desc = "copy variables" enabled = showprogress for variable in | |||
sourceVariables | |||
variableCopy = deepcopyNodes ? deepcopy(variable) : variable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
variableCopy = deepcopyNodes ? deepcopy(variable) : variable | |
variableCopy = deepcopyNodes ? deepcopy(variable) : variable |
@@ -792,26 +784,10 @@ function VSDTestBlock!(fg, v1) | |||
@test mergeVariableState!(fg, :a, vnd) == 1 | |||
|
|||
# Bulk copy update x0 | |||
@test updateVariableSolverData!(fg, [v1], :default) == nothing | |||
@test DFG.copytoVariableState!(fg, v1.label, :default, getVariableState(fg, v1.label, :default)) == 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
@test DFG.copytoVariableState!(fg, v1.label, :default, getVariableState(fg, v1.label, :default)) == 1 | |
@test DFG.copytoVariableState!( | |
fg, | |
v1.label, | |
:default, | |
getVariableState(fg, v1.label, :default), | |
) == 1 |
No description provided.