Set default MAX_DEGREE to 2

This commit is contained in:
Thomas Wade 2018-09-27 17:02:08 +09:30
parent babc4156b5
commit 16a9c5c638

View File

@ -12,7 +12,7 @@ CHROMEDRIVER_PATH = '/usr/bin/chromedriver'
# ^0 ^1 ^2 # ^0 ^1 ^2
# User is zero hops away from itself, so it's degree is zero. # User is zero hops away from itself, so it's degree is zero.
# Follower is one hop away from User, so it's degree is one, and so on. # Follower is one hop away from User, so it's degree is one, and so on.
MAX_DEGREE = 0 MAX_DEGREE = 2
# The list of starting users. Can be as many or as few as you would like. # The list of starting users. Can be as many or as few as you would like.
# Bear in mind that each additional user will greatly increase run time, depending # Bear in mind that each additional user will greatly increase run time, depending