-
Notifications
You must be signed in to change notification settings - Fork 123
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
Improve DiffRequest and DynamicGraph printing. #1183
Conversation
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.
clang-tidy made some suggestions
/// Print the nodes and edges in the graph. | ||
void print() { | ||
void print(llvm::raw_ostream& Out) const { |
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.
warning: use of undeclared identifier 'llvm' [clang-diagnostic-error]
void print(llvm::raw_ostream& Out) const {
^
5293c39
to
8cf35b3
Compare
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.
clang-tidy made some suggestions
#include "clang/AST/RecursiveASTVisitor.h" | ||
|
||
#include "llvm/ADT/SmallSet.h" | ||
#include <llvm/Support/raw_ostream.h> |
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.
warning: included header SmallSet.h is not used directly [misc-include-cleaner]
#include <llvm/Support/raw_ostream.h> | |
#include <llvm/Support/raw_ostream.h> |
bb87743
to
b1934fe
Compare
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.
clang-tidy made some suggestions
f9b28cf
to
c5f787b
Compare
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.
clang-tidy made some suggestions
#include "FunctionTraits.h" | ||
#include "Matrix.h" | ||
#include "NumericalDiff.h" | ||
#include "Tape.h" | ||
|
||
#include <array> | ||
#include <assert.h> |
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.
warning: included header array is not used directly [misc-include-cleaner]
#include <assert.h> | |
#include <assert.h> |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1183 +/- ##
==========================================
+ Coverage 94.56% 94.85% +0.28%
==========================================
Files 51 51
Lines 8960 8972 +12
==========================================
+ Hits 8473 8510 +37
+ Misses 487 462 -25
... and 1 file with indirect coverage changes
|
c5f787b
to
d21d69a
Compare
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.
clang-tidy made some suggestions
d21d69a
to
0fd17d9
Compare
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.
clang-tidy made some suggestions
0fd17d9
to
1a55b91
Compare
No description provided.