Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
print statements commented
  • Loading branch information
kbudhath committed Sep 19, 2017
1 parent d54f9b9 commit cb11e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crisp.py
Expand Up @@ -118,9 +118,9 @@ def cisc_grp(X, Y):


def crisp(X, Y):
print 'regressing from x to y'
# print 'regressing from x to y'
sxtoy = regress(X, Y)
print 'regressing from y to x'
# print 'regressing from y to x'
sytox = regress(Y, X)
return (sxtoy, sytox)

Expand Down

0 comments on commit cb11e68

Please sign in to comment.