-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix: more general ovf reading #513
Conversation
Currently, we take capitalisation of the data line in the ovf header into account, however that does not seem to be well-defined in the standard. (We use the same format that OOMMF writes but the documentation on the OOMMF website uses a different standard.) To make it more flexible, we can ignore the case. Closes ubermag/help#266
PR Analysis
PR Feedback
How to useInstructions
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #513 +/- ##
=======================================
Coverage 93.49% 93.49%
=======================================
Files 28 28
Lines 3027 3027
=======================================
Hits 2830 2830
Misses 197 197 ☔ View full report in Codecov by Sentry. |
@samjrholt and @swapneelap I would like to merge this as soon as possible and release a small bug-fix |
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.
Looks good to me 👍🏽
Currently, we take capitalisation of the data line in the ovf header into account, however that does not seem to be well-defined in the standard. (We use the same format that OOMMF writes but the documentation on the OOMMF website uses a different standard.)
To make it more flexible, we can ignore the case.
Here are the specifications: https://math.nist.gov/oommf/doc/userguide21a0/userguide/Data_block.html
Closes ubermag/help#266