Skip to content
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

Potential memory error #2

Open
pblischak opened this issue Aug 11, 2018 · 0 comments
Open

Potential memory error #2

pblischak opened this issue Aug 11, 2018 · 0 comments
Assignees
Labels

Comments

@pblischak
Copy link
Owner

The way that I am storing the input data (total and alt reads) is to push them linearly into an integer vector. A user has noted that large data sets will not be read in properly due to a presumed memory error (I haven't verified this yet), so the program will not run. I am planning to try to fix it by making the input data two-dimensional vectors to see if that will fix the issue.

# Current implementation
std::vector<int> input;

# New implementation
# with 2D vector
std::vector< std::vector<int> > input;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant