-
Notifications
You must be signed in to change notification settings - Fork 32
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
linear combination and convex hull on sspz #2979
Conversation
Co-authored-by: Christian Schilling <[email protected]>
For the docs error you need to add the two methods here and add a new block for |
@lucaferranti can you pls add some tests for the new functionality? |
@@ -32,4 +32,25 @@ for N in [Float64, Float32, Rational{Int}] | |||
@test genmat(CPS) == [1 2 0 0;2 2 0 0;0 0 1 2;0 0 2 2.] | |||
@test expmat(CPS) == [1 4 0 0;1 2 0 0;0 0 1 4;0 0 1 2] | |||
|
|||
_c = N[2.0, 0.0] |
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.
It is okay now, but typically we do not use underscores for variables. Since we have the outer loops in the test files, there are usually no scoping problems.
No description provided.