-
Notifications
You must be signed in to change notification settings - Fork 22
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
Peng Algorithm #180
Peng Algorithm #180
Conversation
Apparently, autopep8 converts some of the lambda functions into proper functions. I hope that is fine? |
Tests won't pass for this commit since I have many linting issues which we can ignore for now. |
This is another improvement. Thanks. For the commit, ff04043, is is a similar operation that we have encountered in the previous PR? If you want to update the git history, we should use |
@FanwangM yeah, so the issue was that I had the commits added to the branch before test-psdp was added and somehow in the end I ended messing up while rebasing when i encountered a few merge conflicts. |
I think the code is ready to be reviewed btw. Once we merge this commit, I will proceed with updating the tests to include testing for this algorithm as well. |
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.
Thank you for the codes.
I have some minor comments here.
Codecov Report
@@ Coverage Diff @@
## master #180 +/- ##
==========================================
- Coverage 84.42% 82.19% -2.23%
==========================================
Files 13 13
Lines 751 775 +24
==========================================
+ Hits 634 637 +3
- Misses 117 138 +21
|
I noticed that you have two git merge operations. Can you try to use git rebase to avoid them. This can help us get a clean history.? You can either do (1) close this PR and open a new one; or (2) use more complicated git history editing operations to avoid these two. I would prefer the first one. Thanks. @banrovegrie |
Yeah, I will close this PR and open a new one. |
Closing this and pivoting to #187. |
This is the PR involving the addition of the second algorithm to the PSDP module. Here, I have included a rough sketch of the algorithm.
The issues that remain have been described in discussion #179.