alvarado: @FIX: Bug reading huge matrices was caused by the method std::istream::get(char* buffer,int n,char t). If the next char in the stream is t, then the fail flag of the stream is set. This caused that nothing else worked hereafter. As workaround, the getNextLine method check first with std::istream::peek if the next symbol is the terminal one and removes it if necessary.