guilgautier / DPPy

Python toolbox for sampling Determinantal Point Processes
https://dppy.readthedocs.io
MIT License
219 stars 52 forks source link

Remove printing statements in tests #46

Closed guillep closed 4 years ago

guillep commented 4 years ago

I see in several tests printing statements like

print(freq)
print(marg_theo)

Are they needed?

guillep commented 4 years ago

See for example test_correlation_functions.py

guilgautier commented 4 years ago

I see in several tests printing statements like

print(freq)
print(marg_theo)

Are they needed?

I was printing the 2 objects to be compared for debugging purposes to get a hint: why is the (random) testing procedure failing. Is it a bad practice?