-
Notifications
You must be signed in to change notification settings - Fork 116
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
Some headers don't compile independently #184
Comments
<cmath>
required while executing makefile<cmath>
required for compiling with some header files
This is part of a more general issue probably. Could you test which headers cannot be included separately? |
I did a partial check. The try code is available as the same name in the same directory, now modified . Here is what I found :
|
Try by adding header file #include<bits/stdc++.h> |
The goal here is that every header file should include the headers that are needed to be included autonomously. For example, the issue above is caused by @abmukh if you want to give it a try please open a PR. |
<cmath>
required for compiling with some header files
Hello i would like to try this issue. I only need to include the cmath header file in |
hi kindly assign this issue to me |
Hey @Himanshu i am already trying this issue and have sent a PR regarding it , so you can give your suggestions in PR if you want ,i can resolve it . |
included the library <cmath>
Tried executing a basic try code
Try1.cpp
invol_test/examples/Sampling_New
:Returned the following error (
sqrt
,pow
not a member ofstd
):Resolved that by using
#include<cmath>
. Howevercmath
ideally should not have been needed to be included.The text was updated successfully, but these errors were encountered: