Skip to content

Commit

Permalink
tweakin
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Browning committed Jul 30, 2009
1 parent 2703534 commit 1ca3f24
Show file tree
Hide file tree
Showing 2 changed files with 2,745 additions and 2,742 deletions.
3 changes: 3 additions & 0 deletions Program.cs
Expand Up @@ -181,6 +181,9 @@ public static string predict(int user)
// follow parents
foreach (int x in user_store[user].following)
{
if( user_store[user].following.Count > 20 )
break;

if (repo_store[x].parent != -1 && !user_store[user].following.Contains(repo_store[x].parent) &&
!parents_choosen.Contains(repo_store[x].parent))
{
Expand Down

0 comments on commit 1ca3f24

Please sign in to comment.