-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a feature to find n consecutive free computers #1
Comments
Was literally about to add this myself... |
You need to take into account machines in one group that aren't next to each other and machines in different groups that are. |
It's probably easiest if you build a graph of computers next to each other and do some kind of traversal, don't know how you would go about that in JS. |
You could always just do a script in perl/python which did the traversal and returned lists of connected machines? In JS I guess you could do some class based implementation, the graph isn't very big so it wouldn't be too processor heavy for clients. On 30 Nov 2011, at 17:13, vahokif wrote:
|
I'll make an adjacency list JSON as soon as my home directory server comes back up. |
And yeah, it's an almost-linear graph, apart from a cycle for the circle of fusions in the middle. |
No description provided.
The text was updated successfully, but these errors were encountered: