-
Notifications
You must be signed in to change notification settings - Fork 323
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 performance of number parsing #11228
Comments
New NumberParser is in #11499 https://github.com/jdunkerley/scratch-code/blob/main/scratch-java/src/test/java/uk/co/jdunkerley/scratch/parser/DoublesTest.java |
Better integration of problems with the new Parser:
|
Exponential Notation: Merged version will be just enough to get it working again not deeply tested. |
Add a benchmark for parsing a single column and parsing 300 columns. |
ToDos:
|
Currently the
NumberParser
relies on a really complicated Regex that is not as efficient as we want.We want to modify it to use a custom solution that should be more efficient.
TODO:
The text was updated successfully, but these errors were encountered: