When calling the spike_distance() function I'm getting a ton of unnecessary prints to stdout as can be seen in the following:
I traced back part of the issue to line 157, 169, and 171 of PieceWiseLinFunc.py where we can see the print statements
I manually commented these lines out and all unnecessary prints disappeared.
I have a feeling these prints were there for debug and were forgotten, as I can't see a reason to have them.
When calling the
spike_distance()
function I'm getting a ton of unnecessary prints tostdout
as can be seen in the following:I traced back part of the issue to line 157, 169, and 171 of
PieceWiseLinFunc.py
where we can see theprint
statements I manually commented these lines out and all unnecessary prints disappeared.I have a feeling these prints were there for debug and were forgotten, as I can't see a reason to have them.