trimal icon indicating copy to clipboard operation
trimal copied to clipboard

Redundant asignation on Sequences Matrix = operator

Open Vicfero opened this issue 7 years ago • 1 comments

https://github.com/scapella/trimal/blob/b240b070f0c9651761361bb3d55bd0e3c328558a/source/sequencesMatrix.cpp#L92

should be

matrix[i][j] = matrix[j][i];

Vicfero avatar Oct 16 '18 07:10 Vicfero

Obviously it seems like a bug but ... shouldn't it be?

matrix[i][j] = old.matrix[i][j];

scapella avatar Oct 16 '18 20:10 scapella