|
@@ -10,6 +10,8 @@ Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
import os, sys
|
|
import os, sys
|
|
import matplotlib.pyplot as plt
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
+plt.rcParams.update({'figure.max_open_warning': 0})
|
|
|
|
+
|
|
class Collatz(object):
|
|
class Collatz(object):
|
|
def __init__(self):
|
|
def __init__(self):
|
|
self.m=False
|
|
self.m=False
|
|
@@ -39,6 +41,7 @@ class Collatz(object):
|
|
ax = fig.add_subplot(111, facecolor='black')
|
|
ax = fig.add_subplot(111, facecolor='black')
|
|
for t in self.tree:
|
|
for t in self.tree:
|
|
ax.scatter(self.tree.index(t)+1, t, color="red", s=2)
|
|
ax.scatter(self.tree.index(t)+1, t, color="red", s=2)
|
|
|
|
+ plt.clf() # removing matplot future warning
|
|
header = '"Tree" for number '+str(self.root)+' to becomes 1'
|
|
header = '"Tree" for number '+str(self.root)+' to becomes 1'
|
|
plt.title(header)
|
|
plt.title(header)
|
|
plt.ylabel('Number(s)')
|
|
plt.ylabel('Number(s)')
|