Addresses inefficiency of the KVN parser on large files. The current method attempts to match the entire file with a single regex, potentially causing memory errors for large files. This update moves to an iterative parsing approach that only attempts to match one block at a time.
Addresses inefficiency of the KVN parser on large files. The current method attempts to match the entire file with a single regex, potentially causing memory errors for large files. This update moves to an iterative parsing approach that only attempts to match one block at a time.
Closes #35.