NetLogo / NW-Extension

This is the NetLogo Network Extension. For general information about NetLogo, see:
http://ccl.northwestern.edu/netlogo/
Other
62 stars 25 forks source link

`save-matrix` should omit space at the end of output line #196

Closed nicolaspayette closed 4 years ago

nicolaspayette commented 4 years ago

The current code outputs something like:

0.00_1.00_0.00_
0.00_0.00_0.00_
0.00_0.00_1.00_

where _ stands for a space. The trailing space at the end of each line is unnecessary and can trip delimited-file reading functions.

The offending line is:

https://github.com/NetLogo/NW-Extension/blob/hexy/src/main/org/nlogo/extensions/nw/jung/io/Matrix.scala#L34

It's an easy fix and I'd be happy to provide a PR if welcome.

LaCuneta commented 4 years ago

If you have time to provide a fix, I'm happy to review + merge