-
Notifications
You must be signed in to change notification settings - Fork 37
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
BUG: Cannot parse "eop_finals.txt" file #29
Comments
Hi, Thanks for the issue report. Yes I need two things for the test:
Regards, |
I am soooo sorry, I completely forgot responding you. Yet I was checking Nuget for updates and bug fixes! I uploaded files... Thanks again for your help. |
This issue if fixed with the 2.6.0.23 version. |
I confirm that it is fixed. Thanks! |
Hi,
I think atoi and int.Parse functions are implemented differently in C and C#. C# doesn't like to parse empty strings, and doesn't stop when it sees space. Therefore, I am getting invalid number exception in load_dpsi_deps. I worked around with below (crude) changes:
double.Parse(s.Substring(99), ...
to
double.Parse(s.Substring(99, 8).Trim() == "" ? "0" : s.Substring(99, 8).Trim(), ....
Here are the full changes:
The text was updated successfully, but these errors were encountered: