vkostyukov / la4j

Linear Algebra for Java
http://la4j.org
Apache License 2.0
373 stars 109 forks source link

Make fields final #215

Closed sylvia43 closed 9 years ago

sylvia43 commented 9 years ago

Most classes are immutable. We can explicitly make the data storage fields immutable right?

vkostyukov commented 9 years ago

We can definitely try to do it. I don't remember exactly whether or not we changed the underlying arrays. We 100% do it for sparse entries, since they can grow up in-place.

sylvia43 commented 9 years ago

I'll get on this.