-
Notifications
You must be signed in to change notification settings - Fork 0
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
Type tao #40
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## dev #40 +/- ##
===========================================
+ Coverage 51.03% 62.48% +11.45%
===========================================
Files 10 9 -1
Lines 1354 1141 -213
===========================================
+ Hits 691 713 +22
+ Misses 663 428 -235
|
@@ -186,39 +244,48 @@ function chebdiff(n, x, f, invmat) | |||
return sum(intw .* f) | |||
end | |||
|
|||
struct BaryCheb1D{N} | |||
struct BaryCheb1D{N,T} |
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.
Shall we add a restriction like T<:AbstractFloat to aviod wrong inputs like Int?
@@ -401,7 +401,7 @@ the grid has 2 segments, 2*(M+1)*N+1 points. | |||
seg = 2 | |||
size = (M+1)*N*seg+1 | |||
bounds = @SVector[0.0,β] | |||
return UniLogs{Float64,size,seg}(bounds,minterval,M,N) |
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.
Why is this file changed? Perhaps this file should be removed.
Make Cheb grid available for arbitrary type of Float.