Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Be explicit about floating point literals
Floating point literals that include a decimal without explicit precision, i.e. `1.`, are dangerous because we do not know what precision the literal will be interpreted as, and expressions like `1.+bpm`, where `bpm` has explicit precision `wp` caused Intel to throw errors when compiled with the `-r8` flag. Adding precision to the literals fixes this problem. That is, replacing `1.+bpm` with `1._wp+bpm`. Fixes #28.
- Loading branch information