-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add Taylor Series #142
Add Taylor Series #142
Conversation
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## computgraph #142 +/- ##
===============================================
+ Coverage 64.19% 64.71% +0.52%
===============================================
Files 56 62 +6
Lines 3854 4328 +474
===============================================
+ Hits 2474 2801 +327
- Misses 1380 1527 +147
☔ View full report in Codecov by Sentry. |
src/TaylorSeries/constructors.jl
Outdated
""" | ||
mutable struct TaylorSeries{F,W,N} | ||
|
||
A representation of a computational graph, e.g., an expression tree, with type stable node data. |
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.
the doc string doesn't match with the code
Add the Taylor Series structure.